:root {
      --bg: #090615;
      --ink: #f7f3ff;
      --muted: #a9a1bd;
      --line: rgba(180, 116, 255, 0.22);
      --soft: rgba(255, 255, 255, 0.06);
      --dark: #05030d;
      --white: #fff;
      --accent: #b45cff;
      --accent-2: #25d8ff;
      --panel: rgba(18, 13, 34, 0.72);
      --glow: rgba(180, 92, 255, 0.34);
      --max: 1180px;
    }

    * { box-sizing: border-box; }

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

    body {
      margin: 0;
      color: var(--ink);
      background: #090615;
      font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
      letter-spacing: 0;
    }

    body.menu-open { overflow: hidden; }

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

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      padding: 14px clamp(18px, 3vw, 42px);
      color: #fff;
      background: linear-gradient(90deg, rgba(5, 6, 24, 0.28), rgba(31, 9, 73, 0.2), rgba(5, 6, 24, 0.28));
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(8px);
      transition: background 260ms ease, padding 260ms ease, border-color 260ms ease;
    }

    .nav.is-scrolled {
      padding-block: 11px;
      background: linear-gradient(90deg, rgba(5, 6, 24, 0.5), rgba(25, 8, 62, 0.42), rgba(5, 6, 24, 0.5));
      border-bottom-color: rgba(180, 116, 255, 0.2);
    }

    .nav-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: center;
      gap: clamp(28px, 4vw, 72px);
      margin: 0 auto;
      max-width: 1760px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-self: start;
      min-width: max-content;
    }

    .brand img {
      display: block;
      width: clamp(118px, 10vw, 178px);
      height: auto;
      max-height: 48px;
      object-fit: contain;
    }

    .nav-toggle {
      display: none;
    }

    .nav-group {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(16px, 2.2vw, 38px);
      min-width: 0;
      color: #fff;
      font-size: clamp(13px, 0.95vw, 16px);
      font-weight: 850;
      white-space: nowrap;
    }

    .nav-item {
      position: relative;
      padding: 15px 0;
    }

    .nav-item > a {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 0;
      padding: 0;
      color: #fff;
      background: transparent;
      font: inherit;
      cursor: pointer;
      text-decoration: none;
      transition: color 180ms ease, opacity 180ms ease, text-shadow 180ms ease;
    }

    .nav-item > a::after {
      content: none;
    }

    .nav-item:hover > a,
    .nav-item:focus-within > a,
    .nav-item.is-active > a,
    .nav-item > a[aria-current="page"] {
      color: #d56bff;
      opacity: 1;
      text-shadow: 0 0 18px rgba(213, 107, 255, 0.72), 0 0 30px rgba(180, 92, 255, 0.38);
    }

    .nav-item:hover > a::after,
    .nav-item:focus-within > a::after {
      content: none;
    }

    .nav-submenu {
      position: absolute;
      top: calc(100% - 3px);
      left: 50%;
      z-index: 30;
      width: max-content;
      min-width: 286px;
      max-width: min(440px, 88vw);
      padding: 12px;
      background: linear-gradient(180deg, rgba(13, 10, 32, 0.96), rgba(7, 5, 20, 0.94));
      border: 1px solid rgba(180, 116, 255, 0.22);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 44px rgba(180, 92, 255, 0.14);
      backdrop-filter: blur(22px);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 12px);
      transition: opacity 220ms ease, transform 220ms ease;
    }

    .nav-submenu-right {
      left: auto;
      right: 0;
      transform: translate(0, 12px);
    }

    .nav-item:hover .nav-submenu,
    .nav-item:focus-within .nav-submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .nav-item:hover .nav-submenu-right,
    .nav-item:focus-within .nav-submenu-right {
      transform: translate(0, 0);
    }

    .nav-submenu a {
      position: relative;
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 10px;
      align-items: start;
      padding: 10px 12px;
      color: rgba(247, 243, 255, 0.76);
      font-size: 13px;
      font-weight: 760;
      line-height: 1.35;
      white-space: normal;
      text-decoration: none;
      transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .nav-submenu a::before {
      content: "";
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-top: 1px;
      border-radius: 6px;
      background:
        linear-gradient(135deg, rgba(180, 92, 255, 0.95), rgba(37, 216, 255, 0.58));
      box-shadow: 0 0 18px rgba(180, 92, 255, 0.28);
    }

    .nav-submenu a:hover {
      color: var(--white);
      background: rgba(180, 116, 255, 0.12);
      transform: translateX(4px);
    }

    .arrow {
      display: inline-block;
      transition: transform 260ms ease;
    }

    .link-line:hover .arrow {
      transform: translateX(12px);
    }

    .hero {
      min-height: 100vh;
      padding: 168px clamp(18px, 4vw, 58px) 72px;
      display: grid;
      align-items: center;
    }

    .hero-inner {
      width: 100%;
      max-width: 1480px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-announcement {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      max-width: min(760px, 92vw);
      margin: 0 auto 52px;
      padding: 12px 18px 12px 14px;
      color: rgba(247, 243, 255, 0.9);
      background: linear-gradient(90deg, rgba(120, 88, 255, 0.42), rgba(219, 62, 255, 0.42));
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      box-shadow: 0 16px 60px rgba(120, 44, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(18px);
      font-size: clamp(13px, 1.15vw, 17px);
      font-weight: 900;
      line-height: 1.2;
    }

    .hero-announcement span {
      flex: 0 0 auto;
      padding: 6px 12px;
      color: #13091d;
      background: #ffe06d;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 950;
    }

    .hero-announcement b {
      color: rgba(247, 243, 255, 0.95);
      font-size: 22px;
      line-height: 1;
    }

    .eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      color: rgba(247, 243, 255, 0.74);
      font-size: 15px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
    }

    .hero {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.18), rgba(7, 4, 18, 0.34) 52%, rgba(7, 4, 18, 0.88)),
        url("../images/bj1.jpg") center / cover no-repeat,
        linear-gradient(180deg, #0b0717 0%, #090615 62%, #080512 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 48% 0%, rgba(216, 53, 255, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(9, 6, 21, 0.58), transparent 32%, transparent 68%, rgba(9, 6, 21, 0.58));
      pointer-events: none;
    }

    .hero-title {
      margin: 0 auto;
      max-width: 1280px;
      font-size: clamp(58px, 7vw, 118px);
      font-weight: 900;
      line-height: 1.04;
      text-shadow: 0 20px 70px rgba(0, 0, 0, 0.46), 0 0 46px rgba(172, 101, 255, 0.16);
    }

    .hero-title span {
      display: block;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(28px);
      animation: titleIn 760ms cubic-bezier(.2, .7, .2, 1) forwards;
    }

    .hero-title span:nth-child(2) { animation-delay: 140ms; }

    @keyframes titleIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-foot {
      display: grid;
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 28px;
      margin-top: clamp(42px, 12vh, 130px);
    }

    .hero-copy {
      margin: 0;
      max-width: 860px;
      color: rgba(247, 243, 255, 0.86);
      font-size: clamp(17px, 1.5vw, 24px);
      font-weight: 760;
      line-height: 1.55;
    }

    .hero-actions,
    .bd-hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      font-size: 18px;
      font-weight: 800;
    }

    .hero-actions .link-line,
    .bd-hero-actions .link-line {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      min-height: 58px;
      min-width: 210px;
      justify-content: center;
      text-align: center;
      padding: 0 28px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(180, 92, 255, 0.28), rgba(37, 216, 255, 0.08)),
        rgba(255, 255, 255, 0.04);
      box-shadow: 0 0 0 1px rgba(180, 92, 255, 0.12), 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 34px rgba(180, 92, 255, 0.16);
      backdrop-filter: blur(14px);
      transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
    }

    .hero-actions .link-line::before,
    .bd-hero-actions .link-line::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.28) 44%, transparent 72%);
      transform: translateX(-120%);
      transition: transform 760ms cubic-bezier(.2, .7, .2, 1);
    }

    .hero-actions .link-line:hover::before,
    .bd-hero-actions .link-line:hover::before {
      transform: translateX(120%);
    }

    .hero-actions .link-line::after,
    .bd-hero-actions .link-line::after {
      display: none;
    }

    .hero-actions .link-line:first-child,
    .bd-hero-actions .link-line:first-child {
      color: #fff;
      border-color: rgba(223, 105, 255, 0.56);
      background: linear-gradient(90deg, rgba(239, 79, 190, 0.92), rgba(81, 82, 255, 0.86));
      box-shadow: 0 18px 54px rgba(91, 25, 179, 0.44), 0 0 42px rgba(180, 92, 255, 0.36);
    }

    .hero-actions .link-line:hover,
    .bd-hero-actions .link-line:hover {
      transform: translateY(-7px) scale(1.035);
      border-color: rgba(255, 255, 255, 0.52);
      box-shadow: 0 30px 88px rgba(0, 0, 0, 0.46), 0 0 72px rgba(180, 92, 255, 0.46);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .case-card img {
      filter: saturate(1.08) contrast(1.05);
    }

    .page-section {
      padding: clamp(76px, 12vw, 160px) clamp(18px, 4vw, 58px);
      border-top: 0;
      content-visibility: auto;
      contain-intrinsic-size: 980px;
    }

    #metrics {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      padding-top: clamp(44px, 6vw, 84px);
      padding-bottom: clamp(86px, 10vw, 150px);
      background:
        linear-gradient(180deg, rgba(5, 4, 16, 0.52), rgba(5, 4, 16, 0.62)),
        url("../images/bj8.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    #metrics::before,
    #metrics::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: -1;
    }

    #metrics::before {
      left: -12%;
      right: -12%;
      top: 6%;
      height: 58%;
      background:
        linear-gradient(162deg, transparent 8%, rgba(65, 87, 255, 0.26) 28%, rgba(166, 92, 255, 0.18) 47%, transparent 74%),
        linear-gradient(18deg, transparent 10%, rgba(41, 146, 255, 0.16) 34%, rgba(143, 78, 255, 0.14) 56%, transparent 78%);
      filter: blur(26px);
      transform: rotate(-5deg);
      opacity: 0.9;
      animation: metricsGlow 12s ease-in-out infinite alternate;
    }

    #metrics::after {
      inset: 0;
      background:
        radial-gradient(ellipse at 76% 22%, rgba(81, 114, 255, 0.24), transparent 34%),
        radial-gradient(ellipse at 27% 72%, rgba(180, 92, 255, 0.16), transparent 38%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.025));
      opacity: 0.95;
    }

    #metrics .section-inner {
      position: relative;
      z-index: 1;
    }

    @keyframes metricsGlow {
      from {
        transform: rotate(-5deg) translate3d(-2%, -4%, 0);
        opacity: 0.72;
      }
      to {
        transform: rotate(-3deg) translate3d(3%, 4%, 0);
        opacity: 1;
      }
    }

    #process {
      position: relative;
      overflow: hidden;
      padding-top: clamp(38px, 6vw, 80px);
      background:
        linear-gradient(180deg, rgba(8, 6, 20, 0.5), rgba(8, 6, 20, 0.54)),
        url("../images/bj12.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    #resources {
      padding-top: clamp(38px, 6vw, 80px);
    }

    .section-inner {
      max-width: 1440px;
      margin: 0 auto;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
      gap: clamp(40px, 8vw, 120px);
      align-items: start;
    }

    .section-title {
      margin: 0;
      font-size: clamp(42px, 7.6vw, 112px);
      font-weight: 900;
      line-height: 0.96;
    }

    #industries {
      padding-top: clamp(64px, 7.5vw, 105px);
      padding-bottom: 0;
      border-top: 0;
      overflow: hidden;
    }

    #pain {
      padding-top: clamp(90px, 10vw, 150px);
    }

    .industry-stage {
      position: relative;
      min-height: clamp(260px, 32vw, 390px);
      display: grid;
      align-items: center;
    }

    .industry-giant {
      --giant-y: 32px;
      position: relative;
      z-index: 1;
      display: grid;
      gap: clamp(4px, 1vw, 14px);
      color: rgba(247, 243, 255, 0.12);
      font-size: clamp(62px, 13vw, 186px);
      font-weight: 900;
      line-height: 0.82;
      text-transform: uppercase;
      pointer-events: none;
      opacity: 0.08;
      transform: translateY(var(--giant-y));
      transition: opacity 260ms ease;
      will-change: transform, opacity;
    }

    .industry-giant-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      white-space: nowrap;
    }

    .industry-cn {
      --title-lift: 42px;
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 50%;
      width: min(980px, 92vw);
      margin: 0;
      transform: translate(-50%, calc(-38% + var(--title-lift)));
      color: var(--ink);
      font-size: clamp(44px, 7.6vw, 104px);
      font-weight: 900;
      line-height: 1.02;
      text-align: center;
      text-shadow: 0 0 34px rgba(180, 92, 255, 0.28);
      will-change: transform, opacity;
    }

    .industry-title-line {
      display: block;
      white-space: nowrap;
    }

    .industry-note {
      display: block;
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(16px, 1.6vw, 23px);
      font-weight: 700;
      line-height: 1.55;
      text-shadow: none;
    }

    .section-kicker {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .section-copy {
      margin: 0;
      max-width: 610px;
      color: var(--muted);
      font-size: clamp(17px, 1.6vw, 23px);
      line-height: 1.55;
    }

    .section-lead {
      margin-bottom: 58px;
    }

    .client-marquee {
      overflow: hidden;
      margin-top: 118px;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .client-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .client-logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: clamp(210px, 22vw, 330px);
      min-height: 116px;
      padding: 22px 34px;
      transition: color 260ms ease, background 260ms ease, text-shadow 260ms ease;
    }

    .client-logo img {
      width: min(78%, 230px);
      height: auto;
      max-height: 78px;
      object-fit: contain;
      opacity: 0.78;
      filter: drop-shadow(0 0 18px rgba(180, 92, 255, 0.12));
      transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
    }

    .client-logo:hover {
      background: transparent;
    }

    .client-logo:hover img {
      opacity: 1;
      filter: drop-shadow(0 0 24px rgba(180, 92, 255, 0.3));
      transform: translateY(-2px);
    }

    .industry-showcase {
      width: min(1440px, calc(100% - clamp(36px, 8vw, 116px)));
      height: auto;
      margin: clamp(42px, 6vw, 88px) auto 0;
      overflow: hidden;
      line-height: 0;
      background: rgba(255, 255, 255, 0.025);
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36), 0 0 70px rgba(180, 92, 255, 0.12);
    }

    .industry-showcase img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
      filter: saturate(0.92) contrast(1.08) brightness(0.86);
    }

    @keyframes marquee {
      to { transform: translateX(-50%); }
    }

    .pain-list,
    .solution-list,
    .service-list {
      margin: 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }

    .pain-list li,
    .solution-list li,
    .service-list li {
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 22px;
      padding: 24px 0;
      border-bottom: 1px solid var(--line);
      font-size: clamp(20px, 2.3vw, 36px);
      font-weight: 850;
      line-height: 1.16;
    }

    .pain-list b,
    .solution-list b,
    .service-list b {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
    }

    .pain-tagline {
      margin-top: clamp(34px, 5vw, 76px);
      padding-top: 24px;
      border-top: 1px solid rgba(180, 116, 255, 0.24);
      max-width: 560px;
    }

    .pain-tagline strong {
      display: block;
      color: rgba(247, 243, 255, 0.88);
      font-size: clamp(22px, 2.5vw, 38px);
      font-weight: 900;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .pain-tagline span {
      display: block;
      margin-top: 18px;
      color: var(--muted);
      font-size: clamp(16px, 1.35vw, 20px);
      line-height: 1.65;
    }

    #pain {
      padding-left: 0;
      padding-right: 0;
      padding-top: clamp(86px, 7.5vw, 128px);
      padding-bottom: clamp(86px, 7.5vw, 128px);
      min-height: 0;
      position: relative;
      overflow: hidden;
      background: #000;
    }

    #pain .section-inner {
      max-width: none;
      width: 100%;
    }

    .pain-intro {
      display: block;
      width: min(1640px, calc(100% - clamp(44px, 6vw, 96px)));
      margin: 0 auto;
      text-align: center;
    }

    .pain-intro .section-title {
      max-width: 800px;
      margin: 0 auto;
      font-size: clamp(50px, 4.55vw, 82px);
      line-height: 1.04;
    }

    .pain-title span {
      display: block;
      white-space: nowrap;
    }

    .pain-tagline {
      width: min(920px, calc(100% - clamp(44px, 6vw, 110px)));
      margin: clamp(34px, 4.2vw, 70px) auto 0 clamp(70px, 7vw, 118px);
      padding-top: 0;
      border-top: 0;
      max-width: none;
      text-align: left;
    }

    .pain-tagline strong {
      display: block;
      max-width: 760px;
      color: rgba(247, 243, 255, 0.96);
      font-size: clamp(25px, 2.2vw, 40px);
      line-height: 1.12;
    }

    .pain-tagline span {
      display: block;
      max-width: 920px;
      margin-top: 18px;
      color: rgba(247, 243, 255, 0.88);
      font-size: clamp(17px, 1.28vw, 23px);
      font-weight: 850;
      line-height: 1.65;
    }

    .pain-mosaic {
      display: grid;
      grid-template-columns: 1.12fr 1fr 1fr 1.12fr;
      grid-auto-rows: clamp(190px, 15vw, 260px);
      gap: clamp(14px, 1.4vw, 22px);
      width: min(1480px, calc(100% - clamp(44px, 6vw, 110px)));
      margin: clamp(70px, 7vw, 124px) auto 0;
    }

    .pain-mosaic .pain-tagline {
      grid-column: 1 / 4;
      grid-row: 3;
      align-self: center;
      width: auto;
      max-width: none;
      margin: 0;
      padding: 0;
      border: 0;
      text-align: left;
    }

    .pain-mosaic-card {
      position: relative;
      display: grid;
      place-items: center;
      min-width: 0;
      min-height: 0;
      padding: clamp(22px, 2.4vw, 38px);
      overflow: hidden;
      background-color: #16151a;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      text-align: center;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    }

    .pain-mosaic-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.5)),
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 42%);
      pointer-events: none;
    }

    .pain-mosaic-card::after {
      content: "";
      position: absolute;
      inset: clamp(16px, 1.5vw, 26px);
      border: 1px solid rgba(255, 255, 255, 0.42);
      opacity: 0.72;
      pointer-events: none;
    }

    .pain-mosaic-card > div {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      justify-items: center;
      max-width: 92%;
    }

    .pain-mosaic-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(18px, 1.35vw, 25px);
      font-weight: 950;
      line-height: 1.18;
      text-wrap: balance;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    }

    .pain-mosaic-card small {
      display: block;
      color: rgba(255, 255, 255, 0.74);
      font-size: clamp(11px, 0.82vw, 14px);
      font-weight: 750;
      line-height: 1.25;
      text-wrap: balance;
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
    }

    .pain-mosaic-01 {
      grid-column: 1;
      grid-row: span 2;
      background-image: url("../images/index-pic.jpg");
      background-position: 48% 48%;
    }

    .pain-mosaic-02 {
      grid-column: 2;
      grid-row: 1;
      background-image: url("../images/index-pic2.jpg");
      background-position: 36% 42%;
    }

    .pain-mosaic-03 {
      grid-column: 3;
      grid-row: 1;
      background-image: url("../images/index-pic4.jpg");
      background-position: 52% 46%;
    }

    .pain-mosaic-04 {
      grid-column: 4;
      grid-row: 1;
      background-image: url("../images/index-pic6.jpg");
      background-position: 50% 52%;
    }

    .pain-mosaic-05 {
      grid-column: 2;
      grid-row: 2;
      background-image: url("../images/index-pic3.jpg");
      background-position: 50% 50%;
    }

    .pain-mosaic-06 {
      grid-column: 3;
      grid-row: 2;
      background-image: url("../images/index-pic5.jpg");
      background-position: 50% 50%;
    }

    .pain-mosaic-07 {
      grid-column: 4;
      grid-row: 2 / span 2;
      background-image: url("../images/index-pic7.jpg");
      background-position: 52% 50%;
    }

    .pain-mosaic-02,
    .pain-mosaic-06 {
      background-color: #f4f1ec;
    }

    .pain-mosaic-02::before,
    .pain-mosaic-06::before {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.44)),
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28), transparent 44%);
    }

    .pain-mosaic-02 h3,
    .pain-mosaic-06 h3 {
      color: #191820;
      text-shadow: none;
    }

    .pain-mosaic-02 small,
    .pain-mosaic-06 small {
      color: rgba(25, 24, 32, 0.68);
      text-shadow: none;
    }

    .pain-mosaic-02::after,
    .pain-mosaic-06::after {
      border-color: rgba(25, 24, 32, 0.42);
    }

    .pain-mosaic-02::before {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.08), transparent 44%);
    }

    .pain-mosaic-02 h3 {
      color: #fff;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    }

    .pain-mosaic-02 small {
      color: rgba(255, 255, 255, 0.74);
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
    }

    .pain-mosaic-02::after {
      border-color: rgba(255, 255, 255, 0.42);
    }

    .pain-mosaic-06::before {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.08), transparent 44%);
    }

    .pain-mosaic-06 h3 {
      color: #fff;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    }

    .pain-mosaic-06 small {
      color: rgba(255, 255, 255, 0.74);
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
    }

    .pain-mosaic-06::after {
      border-color: rgba(255, 255, 255, 0.42);
    }

    .pain-mosaic-04::before {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
        radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.08), transparent 44%);
    }

    .pain-mosaic-04 h3 {
      color: #fff;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    }

    .pain-mosaic-04 small {
      color: rgba(255, 255, 255, 0.74);
      text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
    }

    .pain-mosaic-04::after {
      border-color: rgba(255, 255, 255, 0.42);
    }

    .pain-panel {
      position: relative;
      display: block;
      min-height: calc(100vw * 0.629);
      margin-top: clamp(86px, 8vw, 150px);
      padding: clamp(26px, 3.1vw, 54px) 0 clamp(300px, 29vw, 540px);
      background-position: center top;
      background-size: 100% auto;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .pain-panel.bg-ready {
      background-image: url("../images/jzxp-bj.jpg");
    }

    .pain-list-wrap {
      display: grid;
      grid-template-columns: minmax(390px, 460px) minmax(340px, 420px);
      justify-content: space-between;
      gap: clamp(300px, 29vw, 440px);
      width: min(1500px, calc(100% - clamp(44px, 6vw, 110px)));
      margin: 0 auto;
    }

    #pain .pain-list {
      position: relative;
      z-index: 1;
      border-top: 0;
      max-width: none;
      margin: 0;
    }

    #pain .pain-list-left {
      text-align: right;
    }

    #pain .pain-list-right {
      text-align: left;
    }

    #pain .pain-list li {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3px;
      padding: clamp(5px, 0.58vw, 9px) 0;
      border-bottom: 0;
      color: rgba(247, 243, 255, 0.96);
      font-size: clamp(15px, 1.02vw, 18px);
      font-weight: 650;
      line-height: 1.05;
      max-width: 100%;
      overflow: visible;
    }

    #pain .pain-list b {
      color: rgba(247, 243, 255, 0.96);
      font-size: 1em;
      font-weight: 650;
      margin-right: 0;
    }

    .pain-list-main {
      display: block;
      font-weight: 650;
      white-space: nowrap;
      overflow: visible;
      text-overflow: clip;
    }

    .pain-list-en {
      display: block;
      padding-left: 0;
      color: rgba(247, 243, 255, 0.68);
      font-size: clamp(12px, 0.78vw, 14px);
      font-weight: 560;
      line-height: 1.12;
      letter-spacing: 0;
      text-transform: none;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    #solution .section-inner {
      position: relative;
      z-index: 1;
      max-width: 1480px;
    }

    #solution {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(9, 6, 21, 0.58), rgba(9, 6, 21, 0.5));
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    #solution.bg-ready {
      background-image:
        linear-gradient(180deg, rgba(9, 6, 21, 0.54), rgba(9, 6, 21, 0.42)),
        url("../images/bj10.jpg");
    }

    #solution::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(180, 92, 255, 0.12), transparent 34%),
        linear-gradient(90deg, rgba(5, 3, 13, 0.28), transparent 46%, rgba(5, 3, 13, 0.24));
      pointer-events: none;
    }

    .solution-heading {
      max-width: 1260px;
      margin: 0;
      font-size: clamp(54px, 8.8vw, 132px);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .solution-flow {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(30px, 4vw, 64px) clamp(24px, 4vw, 72px);
      margin-top: clamp(58px, 8vw, 118px);
      padding: clamp(46px, 6vw, 82px) 0 clamp(20px, 4vw, 48px);
    }

    .solution-flow::before {
      content: "";
      position: absolute;
      left: 5%;
      right: 5%;
      top: clamp(74px, 8vw, 118px);
      height: clamp(170px, 18vw, 250px);
      border-top: 12px solid rgba(44, 218, 207, 0.72);
      border-right: 12px solid rgba(44, 218, 207, 0.72);
      border-bottom: 12px solid rgba(70, 108, 255, 0.72);
      border-radius: 0 100px 100px 0;
      opacity: 0.55;
      filter: drop-shadow(0 0 20px rgba(44, 218, 207, 0.24));
      pointer-events: none;
      transform-origin: left center;
      animation: solutionPath 1200ms cubic-bezier(.2, .8, .2, 1) both;
    }

    @keyframes solutionPath {
      from { opacity: 0; transform: scaleX(0.28); }
      to { opacity: 0.55; transform: scaleX(1); }
    }

    .solution-step {
      position: relative;
      z-index: 1;
      min-height: 190px;
      padding-top: 76px;
      opacity: 0;
      transform: translateY(28px);
      animation: solutionStepIn 760ms cubic-bezier(.2, .8, .2, 1) forwards;
    }

    .solution-step:nth-child(2) { animation-delay: 80ms; }
    .solution-step:nth-child(3) { animation-delay: 160ms; }
    .solution-step:nth-child(4) { animation-delay: 240ms; }
    .solution-step:nth-child(5) { animation-delay: 320ms; }
    .solution-step:nth-child(6) { animation-delay: 400ms; }
    .solution-step:nth-child(7) { animation-delay: 480ms; }

    @keyframes solutionStepIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .solution-step:nth-child(5),
    .solution-step:nth-child(6),
    .solution-step:nth-child(7) {
      transform: translateY(42px);
    }

    .solution-step-icon {
      position: absolute;
      top: 0;
      left: 0;
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      color: rgba(247, 243, 255, 0.96);
      background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
      border: 2px solid rgba(247, 243, 255, 0.58);
      border-radius: 999px;
      box-shadow: 0 0 0 8px rgba(255,255,255,0.08), 0 0 34px rgba(44, 218, 207, 0.2);
      font-size: 24px;
      font-weight: 900;
      transition: transform 260ms ease, box-shadow 260ms ease;
    }

    .solution-step:hover .solution-step-icon {
      transform: translateY(-4px) scale(1.04);
      box-shadow: 0 0 0 8px rgba(180, 116, 255, 0.12), 0 0 44px rgba(44, 218, 207, 0.34);
    }

    .solution-step b {
      display: block;
      margin-bottom: 8px;
      color: rgba(247, 243, 255, 0.92);
      font-size: 14px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .solution-step h3 {
      margin: 0 0 10px;
      color: var(--white);
      font-size: clamp(20px, 1.7vw, 30px);
      font-weight: 950;
      line-height: 1.05;
    }

    .solution-step p {
      margin: 0;
      max-width: 310px;
      color: rgba(247, 243, 255, 0.66);
      font-size: 14px;
      font-weight: 650;
      line-height: 1.55;
    }

    #services {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(8, 6, 20, 0.46), rgba(8, 6, 20, 0.5)),
        url("../images/bj11.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    #services::before,
    #services::after {
      content: none;
    }

    #services::before {
      width: 760px;
      height: 760px;
      right: -120px;
      top: -220px;
    }

    #services::after {
      width: 1180px;
      height: 1180px;
      right: -220px;
      top: -420px;
      opacity: 0.62;
    }

    #services .section-inner {
      position: relative;
      z-index: 1;
    }

    .service-section {
      display: block;
    }

    .service-intro {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
    }

    .service-intro .section-title {
      margin-top: 10px;
      font-size: clamp(56px, 8vw, 128px);
      line-height: 0.98;
    }

    .service-copy {
      max-width: min(1280px, calc(100vw - 120px));
      margin: clamp(22px, 2.6vw, 38px) auto 0;
      text-align: center;
    }

    .service-copy strong {
      display: block;
      color: rgba(247, 243, 255, 0.94);
      font-size: clamp(20px, 1.65vw, 28px);
      font-weight: 950;
      line-height: 1.12;
      text-transform: uppercase;
      white-space: nowrap;
      text-align: center;
    }

    .service-copy span {
      display: block;
      max-width: 1120px;
      margin: 16px auto 0;
      color: rgba(247, 243, 255, 0.62);
      font-size: clamp(15px, 1.12vw, 18px);
      font-weight: 650;
      line-height: 1.7;
      white-space: nowrap;
      text-align: center;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(150px, 1fr));
      gap: clamp(18px, 2vw, 34px);
      max-width: 1500px;
      margin: clamp(72px, 8vw, 128px) auto 0;
      border: 0;
    }

    .service-grid li {
      position: relative;
      display: block;
      min-height: 230px;
      padding: 0;
      border: 0;
      color: rgba(247, 243, 255, 0.96);
    }

    .service-grid li:nth-child(7) {
      grid-column: auto;
      max-width: none;
      margin: 0;
    }

    .service-grid li::before,
    .service-grid li::after {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      opacity: 0.5;
      pointer-events: none;
    }

    .service-grid li::before {
      left: -22px;
      top: -22px;
      border-left: 2px solid rgba(247, 243, 255, 0.22);
      border-top: 2px solid rgba(247, 243, 255, 0.22);
    }

    .service-grid li::after {
      right: -22px;
      bottom: -22px;
      border-right: 2px solid rgba(247, 243, 255, 0.22);
      border-bottom: 2px solid rgba(247, 243, 255, 0.22);
    }

    .service-icon {
      display: grid;
      place-items: center;
      width: 68px;
      height: 68px;
      margin-bottom: 24px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.42), transparent 18%),
        linear-gradient(135deg, rgba(195, 84, 255, 0.94), rgba(75, 104, 255, 0.8) 58%, rgba(50, 201, 255, 0.75));
      box-shadow: 0 0 42px rgba(148, 86, 255, 0.36), inset 0 0 0 8px rgba(255, 255, 255, 0.05);
    }

    .service-icon svg {
      width: 30px;
      height: 30px;
      fill: none;
      stroke: #f7f3ff;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-grid b {
      display: block;
      margin-bottom: 8px;
      color: rgba(180, 116, 255, 0.92);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.18em;
    }

    .service-grid span {
      display: block;
      color: rgba(247, 243, 255, 0.98);
      font-size: clamp(17px, 1.22vw, 23px);
      font-weight: 950;
      line-height: 1.18;
    }

    .service-grid em {
      display: block;
      margin-top: 9px;
      color: rgba(247, 243, 255, 0.5);
      font-size: 12px;
      font-style: normal;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .service-grid p {
      max-width: 190px;
      margin: 14px 0 0;
      color: rgba(247, 243, 255, 0.58);
      font-size: 13px;
      font-weight: 650;
      line-height: 1.58;
    }

    .platform-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .platform {
      min-height: 300px;
      padding: 34px 28px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.025);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      text-align: center;
      transition: background 260ms ease, color 260ms ease;
    }

    .platform:hover {
      background: linear-gradient(135deg, rgba(180, 92, 255, 0.24), rgba(37, 216, 255, 0.08));
      color: var(--white);
      box-shadow: inset 0 0 42px rgba(180, 92, 255, 0.18);
    }

    .platform-logo {
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 22px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(180, 92, 255, 0.28), rgba(37, 216, 255, 0.08)),
        rgba(255, 255, 255, 0.045);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 34px rgba(180, 92, 255, 0.16);
    }

    .platform-logo svg {
      width: 34px;
      height: 34px;
      display: block;
    }

    .platform-logo.text-mark {
      font-size: 31px;
      font-weight: 900;
      line-height: 1;
    }

    .platform h3 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(30px, 3.4vw, 54px);
      line-height: 1;
    }

    .platform p {
      margin: 0;
      max-width: 310px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
    }

    .platform:hover p {
      color: rgba(255, 255, 255, 0.78);
    }

    .case-head {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 24px;
      margin-bottom: 48px;
    }

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

    .case-card {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      background: var(--soft);
      color: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    }

    .case-card img {
      transition: transform 700ms ease, filter 700ms ease;
    }

    .case-card:hover img {
      transform: scale(1.045);
      filter: brightness(0.58);
    }

    .case-info {
      position: absolute;
      inset: auto 0 0;
      padding: 30px;
      background: linear-gradient(to top, rgba(5, 3, 13, 0.9), rgba(5, 3, 13, 0));
      transform: translateY(18px);
      transition: transform 360ms ease;
    }

    .case-card:hover .case-info { transform: translateY(0); }

    .case-info p {
      margin: 0 0 10px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .case-info h3 {
      margin: 0;
      max-width: 620px;
      font-size: clamp(24px, 2.6vw, 42px);
      line-height: 1.08;
    }

    .metrics {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: clamp(36px, 5vw, 70px);
      border-top: 1px solid rgba(180, 116, 255, 0.26);
      border-left: 1px solid rgba(180, 116, 255, 0.26);
      background:
        radial-gradient(circle at 12% 5%, rgba(64, 101, 255, 0.18), transparent 24%),
        radial-gradient(circle at 28% 62%, rgba(181, 70, 211, 0.18), transparent 26%),
        rgba(4, 2, 12, 0.42);
      box-shadow:
        0 26px 90px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .metric {
      position: relative;
      min-height: 256px;
      padding: clamp(24px, 2.2vw, 30px);
      border-right: 1px solid rgba(180, 116, 255, 0.26);
      border-bottom: 1px solid rgba(180, 116, 255, 0.26);
      background:
        radial-gradient(circle at 22% 18%, rgba(180, 92, 255, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        rgba(5, 3, 14, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 34px;
      overflow: hidden;
      transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
    }

    .metric::before,
    .metric::after {
      content: "";
      position: absolute;
      pointer-events: none;
      opacity: 0;
      transition: opacity 260ms ease;
    }

    .metric::before {
      inset: -1px;
      background:
        linear-gradient(135deg, rgba(255, 70, 116, 1), rgba(255, 125, 28, 0.98) 28%, rgba(0, 224, 255, 1) 58%, rgba(226, 64, 255, 1));
      z-index: 0;
    }

    .metric::after {
      inset: 1px;
      background:
        radial-gradient(circle at 14% 10%, rgba(255, 70, 116, 0.26), transparent 32%),
        radial-gradient(circle at 84% 86%, rgba(0, 224, 255, 0.24), transparent 34%),
        rgba(5, 3, 14, 0.9);
      z-index: 1;
    }

    .metric > * {
      position: relative;
      z-index: 2;
    }

    .metric:hover {
      background:
        radial-gradient(circle at 22% 18%, rgba(180, 92, 255, 0.22), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.04);
      box-shadow:
        0 0 34px rgba(226, 64, 255, 0.36),
        0 0 52px rgba(0, 224, 255, 0.24),
        0 0 70px rgba(255, 125, 28, 0.16);
      transform: translateY(-2px);
    }

    .metric:hover::before,
    .metric:hover::after {
      opacity: 1;
    }

    .metric-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
    }

    .metric-icon {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      color: rgba(247, 243, 255, 0.72);
      background: rgba(180, 116, 255, 0.13);
      box-shadow:
        inset 0 0 0 1px rgba(180, 116, 255, 0.28),
        0 0 28px rgba(180, 92, 255, 0.16);
      flex: 0 0 auto;
    }

    .metric-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .metric-en {
      max-width: 168px;
      margin: 0;
      color: rgba(247, 243, 255, 0.62);
      font-size: 12px;
      font-weight: 950;
      line-height: 1.2;
      letter-spacing: 0.08em;
      text-align: right;
      text-transform: uppercase;
    }

    .metric strong {
      color: #fff;
      text-shadow:
        0 0 24px rgba(255, 255, 255, 0.16),
        0 0 42px rgba(180, 92, 255, 0.34);
      font-size: clamp(62px, 6.6vw, 98px);
      font-weight: 950;
      line-height: 0.9;
    }

    .metric.is-counted strong {
      animation: metricPop 620ms cubic-bezier(.2, .8, .2, 1) both;
    }

    @keyframes metricPop {
      0% {
        transform: translateY(14px) scale(0.92);
        opacity: 0.35;
      }
      100% {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
    }

    .metric span {
      color: rgba(214, 206, 232, 0.76);
      font-size: 18px;
      font-weight: 850;
      line-height: 1.45;
    }

    .metric-bottom {
      display: grid;
      gap: 22px;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(8, minmax(126px, 1fr));
      gap: 0;
      margin-top: clamp(48px, 5vw, 76px);
      border: 0;
      overflow: visible;
    }

    .process-step {
      position: relative;
      min-height: 210px;
      margin-left: -18px;
      padding: 28px 26px 24px 42px;
      border: 0;
      background:
        linear-gradient(135deg, rgba(214, 84, 255, 0.68), rgba(27, 213, 255, 0.48)),
        rgba(255, 255, 255, 0.09);
      clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
      box-shadow: 0 28px 88px rgba(88, 126, 255, 0.26), inset 0 0 0 1px rgba(247, 243, 255, 0.26), inset 0 0 46px rgba(255, 255, 255, 0.08);
      display: grid;
      align-content: center;
      gap: 24px;
      overflow: hidden;
      transition: transform 260ms ease, filter 260ms ease, background 260ms ease;
    }

    .process-step:first-child {
      margin-left: 0;
      clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    }

    .process-step::after {
      content: "";
      position: absolute;
      inset: 1px 31px 1px 31px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 48%, transparent);
      pointer-events: none;
    }

    .process-step:last-child::after {
      content: "";
    }

    .process-step:hover {
      transform: translateY(-6px);
      filter: brightness(1.12);
    }

    .process-step:nth-child(1) { background: linear-gradient(135deg, rgba(255, 204, 44, 0.9), rgba(255, 95, 62, 0.58)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(2) { background: linear-gradient(135deg, rgba(255, 42, 115, 0.88), rgba(182, 78, 255, 0.6)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(3) { background: linear-gradient(135deg, rgba(12, 244, 190, 0.88), rgba(30, 168, 255, 0.62)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(4) { background: linear-gradient(135deg, rgba(78, 105, 255, 0.9), rgba(196, 78, 255, 0.62)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(5) { background: linear-gradient(135deg, rgba(209, 75, 255, 0.92), rgba(24, 226, 255, 0.62)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(6) { background: linear-gradient(135deg, rgba(24, 226, 255, 0.88), rgba(76, 132, 255, 0.64)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(7) { background: linear-gradient(135deg, rgba(255, 70, 226, 0.86), rgba(132, 82, 255, 0.66)), rgba(255, 255, 255, 0.1); }
    .process-step:nth-child(8) {
      background: linear-gradient(135deg, rgba(124, 88, 255, 0.92), rgba(21, 224, 255, 0.66)), rgba(255, 255, 255, 0.1);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
    }

    .process-step:nth-child(8)::after { right: 1px; }

    .process-step b {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 255, 255, 0.96);
      font-size: 15px;
      font-weight: 900;
    }

    .process-step span {
      font-size: clamp(17px, 1.45vw, 24px);
      font-weight: 900;
      line-height: 1.08;
      color: #fff;
      text-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
    }

    .process-icon {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      color: #fff;
      border-radius: 50%;
      background: rgba(7, 4, 18, 0.36);
      box-shadow: inset 0 0 0 1px rgba(247, 243, 255, 0.42), 0 0 34px rgba(255, 255, 255, 0.24), 0 0 42px rgba(168, 88, 255, 0.28);
    }

    .process-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

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

    .process-en-label {
      color: rgba(255, 255, 255, 0.86);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .process-title-note {
      max-width: 620px;
      margin-top: clamp(28px, 4vw, 46px);
    }

    .process-title-note strong {
      display: block;
      color: rgba(247, 243, 255, 0.9);
      font-size: clamp(22px, 2.5vw, 40px);
      font-weight: 950;
      line-height: 1.06;
      text-transform: uppercase;
    }

    .process-title-note span {
      display: block;
      margin-top: 16px;
      color: var(--muted);
      font-size: clamp(15px, 1.15vw, 18px);
      font-weight: 700;
      line-height: 1.65;
    }

    .process-copy {
      display: grid;
      gap: 26px;
    }

    .process-copy .section-copy {
      max-width: 760px;
    }

    .process-en {
      max-width: 860px;
      margin: 0;
      color: rgba(247, 243, 255, 0.92);
      font-size: clamp(26px, 3vw, 52px);
      font-weight: 950;
      line-height: 1.02;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .process-en span {
      color: rgba(180, 116, 255, 0.92);
    }

    .process-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: rgba(247, 243, 255, 0.68);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .process-tags span {
      padding: 10px 14px;
      background: rgba(255, 255, 255, 0.035);
      box-shadow: inset 0 0 0 1px rgba(180, 116, 255, 0.18);
    }

    .resources-section {
      display: grid;
      gap: clamp(36px, 5vw, 70px);
    }

    .resource-head {
      max-width: 860px;
    }

    .resource-grid {
      display: grid;
      grid-template-columns: minmax(420px, 1.05fr) minmax(460px, 1fr);
      gap: 22px;
    }

    .resource-card {
      position: relative;
      overflow: hidden;
      min-height: 168px;
      color: #080612;
      background-color: #f5f3f7;
      background-position: center;
      background-size: cover;
      isolation: isolate;
    }

    .resource-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22));
      transition: opacity 320ms ease;
    }

    .resource-card:hover::before {
      opacity: 0.72;
    }

    .resource-bg-01.bg-ready { background-image: url("../images/news1.jpg"); }
    .resource-bg-02,
    .resource-bg-03,
    .resource-bg-04 {
      background-image: none;
    }

    .resource-card-featured {
      display: grid;
      align-items: end;
      min-height: 620px;
      background-position: center;
    }

    .resource-card-featured .resource-card-copy {
      background: rgba(0, 0, 0, 0.62);
      backdrop-filter: blur(10px);
    }

    .resource-card-row {
      display: grid;
      grid-template-columns: minmax(210px, 0.82fr) minmax(260px, 1fr);
      background-color: rgba(0, 0, 0, 0.38);
    }

    .resource-card-media {
      position: relative;
      min-height: 188px;
      background-position: center;
      background-size: cover;
    }

    .resource-bg-02.bg-ready .resource-card-media { background-image: url("../images/news2.jpg"); }
    .resource-bg-03.bg-ready .resource-card-media { background-image: url("../images/news3.jpg"); }
    .resource-bg-04.bg-ready .resource-card-media { background-image: url("../images/news4.jpg"); }

    .resource-image-label,
    .resource-card-media span {
      position: absolute;
      left: 18px;
      top: 18px;
      z-index: 1;
      padding: 10px 16px;
      color: #fff;
      background: rgba(7, 4, 18, 0.62);
      backdrop-filter: blur(10px);
      font-size: clamp(16px, 1.2vw, 22px);
      font-weight: 900;
      letter-spacing: 0.04em;
    }

    .resource-card-copy {
      padding: clamp(22px, 3vw, 34px);
    }

    .resource-card-copy h3 {
      margin: 0;
      color: rgba(255, 255, 255, 0.96);
      font-size: clamp(19px, 1.7vw, 28px);
      font-weight: 850;
      line-height: 1.2;
    }

    .resource-card-copy p {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 15px;
      font-weight: 560;
      line-height: 1.7;
    }

    .resource-card-copy time {
      display: block;
      margin-top: clamp(26px, 4vw, 54px);
      color: rgba(255, 255, 255, 0.88);
      font-size: 16px;
      font-weight: 760;
    }

    .resource-extra-news {
      margin-top: clamp(44px, 6vw, 86px);
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .resource-extra-news h4 {
      margin: 0;
      color: rgba(255, 255, 255, 0.96);
      font-size: clamp(18px, 1.45vw, 24px);
      font-weight: 850;
      line-height: 1.22;
    }

    .resource-extra-news p {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.65;
    }

    .resource-extra-news time {
      margin-top: 24px;
      font-size: 14px;
    }

    .cta {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(160deg, rgba(180, 92, 255, 0.18), transparent 34rem),
        var(--dark);
      color: var(--white);
    }

    .cta::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 24px;
      width: 130vw;
      height: 240px;
      border: 1px solid rgba(202, 122, 255, 0.42);
      border-color: rgba(202, 122, 255, 0.5) transparent transparent;
      border-radius: 50%;
      filter: blur(2px);
      transform: translateX(-50%);
      box-shadow: 0 -22px 72px rgba(177, 64, 255, 0.28);
      pointer-events: none;
    }

    .cta .section-inner {
      position: relative;
      z-index: 1;
    }

    .cta .section-title {
      max-width: 1220px;
    }

    .contact-title {
      max-width: 1480px;
      font-size: clamp(62px, 7vw, 118px);
      line-height: 1.04;
    }

    .contact-title span {
      display: block;
      white-space: nowrap;
    }

    .lead-form {
      position: relative;
      isolation: isolate;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: clamp(42px, 5vw, 72px);
      padding: clamp(18px, 2.6vw, 34px);
      overflow: hidden;
      border: 1px solid rgba(180, 116, 255, 0.24);
      border-radius: clamp(18px, 2.4vw, 34px);
      background:
        radial-gradient(circle at 50% 0%, rgba(151, 91, 255, 0.42) 0, rgba(91, 109, 255, 0.22) 22%, transparent 48%),
        linear-gradient(135deg, rgba(30, 22, 74, 0.9), rgba(7, 4, 18, 0.82) 54%, rgba(18, 16, 49, 0.9)),
        rgba(7, 4, 18, 0.68);
      box-shadow:
        0 36px 120px rgba(0, 0, 0, 0.42),
        0 0 90px rgba(126, 74, 255, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        inset 0 32px 120px rgba(147, 82, 255, 0.14);
      backdrop-filter: blur(18px);
    }

    .lead-form::before,
    .lead-form::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: -1;
    }

    .lead-form::before {
      left: 50%;
      top: -34%;
      width: 58%;
      height: 62%;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(196, 134, 255, 0.52), rgba(99, 98, 255, 0.28) 44%, transparent 72%);
      filter: blur(24px);
      transform: translateX(-50%);
    }

    .lead-form::after {
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.09), transparent 34%);
    }

    .lead-form label {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      min-height: 96px;
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      color: rgba(247, 243, 255, 0.58);
      background: rgba(6, 4, 18, 0.48);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.04em;
      transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
    }

    .lead-form label:focus-within {
      border-color: rgba(180, 116, 255, 0.62);
      background: rgba(180, 116, 255, 0.08);
      box-shadow: 0 0 32px rgba(180, 92, 255, 0.14);
    }

    .lead-form input,
    .lead-form textarea {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      color: var(--white);
      background: transparent;
      font: 800 18px/1.4 Arial, "Microsoft YaHei", sans-serif;
    }

    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
      color: rgba(247, 243, 255, 0.34);
    }

    .lead-form textarea {
      min-height: 128px;
      resize: vertical;
    }

    .lead-form .wide { grid-column: 1 / -1; }

    .submit-btn {
      position: relative;
      z-index: 1;
      grid-column: 1 / -1;
      min-height: 88px;
      border: 0;
      color: var(--white);
      background:
        linear-gradient(90deg, rgba(219, 62, 255, 0.9), rgba(82, 97, 255, 0.92));
      border-radius: 999px;
      box-shadow: 0 18px 60px rgba(180, 92, 255, 0.28);
      font: 900 clamp(20px, 2.2vw, 34px)/1 Arial, "Microsoft YaHei", sans-serif;
      cursor: pointer;
      text-align: center;
      padding: 22px 30px;
      transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.08);
      box-shadow: 0 22px 76px rgba(180, 92, 255, 0.38);
    }

    .footer {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 58px) 34px;
      color: rgba(255, 255, 255, 0.65);
      background:
        radial-gradient(ellipse at 50% 0%, rgba(126, 72, 255, 0.22) 0, rgba(67, 30, 128, 0.12) 34%, transparent 70%),
        radial-gradient(ellipse at 50% 62%, rgba(93, 43, 191, 0.24) 0, rgba(32, 13, 77, 0.18) 38%, transparent 74%),
        linear-gradient(180deg, #05020c 0%, #06020f 54%, #0d0520 100%),
        #05020c;
      border-top: 0;
    }

    .footer::before,
    .footer::after {
      content: "";
      position: absolute;
      pointer-events: none;
      z-index: -1;
    }

    .footer::before {
      left: 50%;
      top: -34%;
      width: min(520px, 42vw);
      height: 138%;
      background: linear-gradient(180deg, transparent 0%, rgba(170, 92, 255, 0.34) 18%, rgba(92, 45, 255, 0.2) 48%, transparent 100%);
      filter: blur(58px);
      transform: translateX(-50%);
      opacity: 0.92;
    }

    .footer::after {
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 20%, rgba(161, 92, 255, 0.16), transparent 44%),
        radial-gradient(ellipse at 50% 120%, rgba(70, 45, 150, 0.22), transparent 58%);
      opacity: 0.9;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.7fr) minmax(380px, 1fr);
      gap: clamp(34px, 6vw, 110px);
      align-items: start;
    }

    .footer-brand strong {
      display: block;
      color: var(--white);
      font-size: clamp(28px, 3vw, 46px);
      font-weight: 950;
      line-height: 1;
    }

    .footer-brand span {
      display: block;
      margin-top: 10px;
      color: rgba(247, 243, 255, 0.54);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-brand p {
      max-width: 360px;
      margin: 28px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .footer-title {
      margin: 0 0 20px;
      color: rgba(247, 243, 255, 0.52);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

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

    .footer-nav a {
      color: rgba(247, 243, 255, 0.76);
      font-size: 16px;
      font-weight: 760;
      line-height: 1.2;
      transition: color 220ms ease, transform 220ms ease;
    }

    .footer-nav a:hover {
      color: var(--white);
      transform: translateX(4px);
    }

    .footer-contacts {
      display: grid;
      gap: 12px;
    }

    .contact-card {
      display: grid;
      grid-template-columns: 96px 1fr;
      gap: 18px;
      align-items: center;
      min-height: 74px;
      padding: 16px 18px;
      background: rgba(13, 8, 31, 0.62);
      box-shadow: inset 0 0 0 1px rgba(180, 116, 255, 0.2), 0 18px 46px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(12px);
      transition: background 220ms ease, transform 220ms ease;
    }

    .contact-card:hover {
      background: rgba(180, 116, 255, 0.09);
      transform: translateY(-2px);
    }

    .contact-card b {
      color: rgba(180, 116, 255, 0.92);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .contact-card span {
      color: var(--white);
      font-size: clamp(18px, 1.6vw, 24px);
      font-weight: 900;
      line-height: 1.15;
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: clamp(42px, 6vw, 76px) auto 0;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: rgba(247, 243, 255, 0.46);
      font-size: 13px;
    }

    .footer-terra {
      position: relative;
      min-height: 980px;
      padding: clamp(96px, 11vw, 150px) clamp(18px, 2.6vw, 42px) 24px;
      overflow: hidden;
      color: #fff;
      background: url("../images/bj2.jpg") center / cover no-repeat;
      border-top: 0;
    }

    .footer-terra::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      display: none;
      background: none;
      pointer-events: none;
      filter: none;
      transform: none;
      opacity: 1;
    }

    .footer-terra::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: 0;
      height: 32%;
      display: none;
      background: none;
      pointer-events: none;
      opacity: 1;
    }

    .footer-terra-cta {
      position: relative;
      z-index: 2;
      max-width: 980px;
      margin: 0 auto clamp(84px, 9vw, 132px);
      text-align: center;
      text-shadow: 0 18px 50px rgba(34, 43, 20, 0.32);
    }

    .footer-terra-cta h2 {
      margin: 0;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(44px, 5vw, 78px);
      font-weight: 520;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }

    .footer-terra-cta h2 span {
      display: block;
    }

    .footer-terra-cta p {
      max-width: 760px;
      margin: 22px auto 34px;
      color: rgba(255, 255, 255, 0.78);
      font-size: clamp(15px, 1.2vw, 20px);
      font-weight: 500;
      line-height: 1.7;
    }

    .footer-terra-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px 14px 22px;
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 10px;
      color: #1b2414;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 18px 46px rgba(41, 55, 27, 0.22);
      transition: transform 460ms cubic-bezier(.16, 1, .3, 1), box-shadow 460ms ease;
    }

    .footer-terra-btn span {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: #111;
      transition: transform 460ms cubic-bezier(.16, 1, .3, 1);
    }

    .footer-terra-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(41, 55, 27, 0.32);
    }

    .footer-terra-btn:hover span {
      transform: translateX(4px);
    }

    .footer-terra-panel {
      position: relative;
      z-index: 2;
      width: min(100%, 1760px);
      min-height: 320px;
      margin: 0 auto;
      padding: clamp(24px, 2.4vw, 38px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.26);
      border-radius: 30px;
      background: rgba(226, 231, 184, 0.34);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 34px 90px rgba(31, 44, 20, 0.24);
      backdrop-filter: blur(22px) saturate(1.1);
    }

    .footer-terra-top {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 34px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 15px;
      font-weight: 700;
    }

    .footer-terra-top i {
      height: 1px;
      background: rgba(255, 255, 255, 0.64);
    }

    .footer-terra-nav {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 24px;
      margin-top: 54px;
    }

    .footer-terra-nav a {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: color 320ms ease, transform 320ms ease;
    }

    .footer-terra-nav a:hover {
      color: #fff;
      transform: translateY(-3px);
    }

    .footer-terra-contact {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .footer-terra-contact a {
      display: grid;
      gap: 10px;
      padding: 20px 22px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 16px;
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      background: rgba(255, 255, 255, 0.12);
      transition: transform 420ms cubic-bezier(.16, 1, .3, 1), background 420ms ease;
    }

    .footer-terra-contact a:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.2);
    }

    .footer-terra-contact small {
      color: rgba(255, 255, 255, 0.72);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .footer-terra-contact strong {
      font-size: clamp(18px, 1.6vw, 28px);
      line-height: 1.1;
    }

    .footer-terra-brand {
      position: absolute;
      left: clamp(22px, 2.8vw, 52px);
      right: clamp(22px, 2.8vw, 52px);
      bottom: -0.24em;
      color: rgba(255, 255, 255, 0.92);
      font-size: clamp(78px, 13.4vw, 238px);
      font-weight: 900;
      line-height: 0.78;
      letter-spacing: 0.015em;
      text-align: center;
      white-space: nowrap;
      pointer-events: none;
    }

    .footer-call-bar {
      display: none;
    }

    .bd-page {
      background:
        radial-gradient(ellipse at 50% 8%, rgba(120, 62, 255, 0.14), transparent 34%),
        #05020c;
    }

    .bd-hero {
      position: relative;
      min-height: 100vh;
      padding: 168px clamp(18px, 4vw, 58px) 84px;
      display: grid;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.22), rgba(7, 4, 18, 0.72)),
        radial-gradient(ellipse at 50% 50%, rgba(126, 72, 255, 0.28), transparent 44%),
        #070412;
    }

    .bd-hero.bg-ready {
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0), rgba(7, 4, 18, 0)),
        url("../images/banner-cgal.jpg") center / cover no-repeat;
    }

    .bdkhtd-page .bd-hero.bg-ready {
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.08), rgba(7, 4, 18, 0.72)),
        url("../images/banner-bdkhtd.jpg") center / cover no-repeat;
    }

    .bdkhtd-page .bd-hero::before,
    .bdkhtd-page .bd-hero::after {
      display: none;
    }

    .bdkhtd-page .bd-hero-title,
    .bdkhtd-page .bd-section-title,
    .bdkhtd-page .bd-diagnosis-title,
    .bdkhtd-page .bd-cta-panel h2 {
      line-height: 1.12;
    }

    .bdkhtd-page .bd-hero-title span,
    .bdkhtd-page .bd-section-title span,
    .bdkhtd-page .bd-cta-panel h2 span {
      display: block;
      margin-bottom: 0.12em;
    }

    .bdkhtd-page .bd-hero-title span:last-child,
    .bdkhtd-page .bd-section-title span:last-child,
    .bdkhtd-page .bd-cta-panel h2 span:last-child {
      margin-bottom: 0;
    }

    .bd-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(110deg, transparent 10%, rgba(80, 108, 255, 0.18) 36%, rgba(188, 92, 255, 0.16) 55%, transparent 76%),
        radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.2), transparent 18%);
      filter: blur(18px);
      animation: metricsGlow 14s ease-in-out infinite alternate;
    }

    .bd-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(110deg, #05020c 0%, #100623 48%, rgba(180, 92, 255, 0.92) 50%, #05020c 54%, #05020c 100%);
      transform: translateX(0) scaleX(1);
      transform-origin: right center;
      transition: transform 1500ms cubic-bezier(.16, 1, .3, 1), opacity 900ms ease;
      pointer-events: none;
    }

    .bd-hero.is-loaded::after {
      opacity: 0;
      transform: translateX(108%) scaleX(0.18);
    }

    .bd-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      gap: clamp(30px, 4vw, 58px);
      text-align: center;
    }

    .bd-hero-label {
      justify-self: center;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(247, 243, 255, 0.78);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bd-hero-label::before {
      content: "";
      width: 42px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-2), var(--accent));
    }

    .bd-hero-title {
      margin: 0;
      color: #fff;
      font-size: clamp(54px, 8.4vw, 150px);
      font-weight: 950;
      line-height: 0.92;
      text-shadow: 0 0 44px rgba(180, 92, 255, 0.18);
    }

    .bd-hero-title span {
      display: block;
      white-space: nowrap;
      clip-path: inset(0 100% 0 0);
      opacity: 0;
      transform: translateY(56px) scaleX(0.86);
      transform-origin: left center;
    }

    .bd-hero.is-loaded .bd-hero-title span {
      animation: bdTitleReveal 1400ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .bd-hero.is-loaded .bd-hero-title span:nth-child(2) {
      animation-delay: 180ms;
    }

    .bd-hero-copy {
      max-width: 940px;
      margin: 0 auto;
      color: rgba(247, 243, 255, 0.84);
      font-size: clamp(18px, 1.35vw, 24px);
      font-weight: 700;
      line-height: 1.7;
    }

    .bd-hero-actions {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .bd-page-section {
      position: relative;
      padding: clamp(76px, 11vw, 148px) clamp(18px, 4vw, 58px);
      overflow: hidden;
      content-visibility: auto;
      contain-intrinsic-size: 980px;
    }

    .bd-section-inner {
      position: relative;
      z-index: 1;
      max-width: 1440px;
      margin: 0 auto;
    }

    .bd-section-head {
      display: grid;
      grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
      gap: clamp(36px, 7vw, 20px);
      align-items: end;
      margin-bottom: clamp(42px, 6vw, 82px);
    }

    .bd-section-head-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 980px;
      margin-inline: auto;
      margin-bottom: clamp(22px, 3vw, 41px);
      text-align: center;
    }

    .bd-section-head-center .bd-section-title {
      max-width: 900px;
    }

    .bd-section-head-center .bd-section-copy {
      max-width: 860px;
      margin-top: 8px;
    }

    .bd-kicker {
      margin: 0 0 18px;
      color: rgba(247, 243, 255, 0.58);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bd-section-title {
      margin: 0;
      color: #fff;
      font-size: clamp(44px, 6.6vw, 108px);
      font-weight: 950;
      line-height: 0.96;
    }

    .bd-two-line-title span {
      display: block;
    }

    .bd-diagnosis-title {
      font-size: clamp(54px, 5vw, 86px);
      line-height: 0.98;
      margin-bottom: 26px;
    }

    .bd-diagnosis-title + .bd-section-copy {
      max-width: 720px;
      line-height: 1.48;
    }

    .bd-section-copy {
      margin: 0;
      color: rgba(247, 243, 255, 0.68);
      font-size: clamp(17px, 1.25vw, 23px);
      font-weight: 720;
      line-height: 1.75;
    }

    .reveal .bd-kicker,
    .reveal .bd-section-title,
    .reveal .bd-section-copy {
      opacity: 0;
      will-change: transform, opacity, clip-path;
    }

    .reveal .bd-kicker {
      transform: translateY(64px) scale(1.34);
      transform-origin: center;
      letter-spacing: 0.26em;
      filter: blur(8px);
      transition:
        opacity 900ms cubic-bezier(.16, 1, .3, 1),
        transform 1100ms cubic-bezier(.16, 1, .3, 1),
        filter 900ms cubic-bezier(.16, 1, .3, 1),
        letter-spacing 1100ms cubic-bezier(.16, 1, .3, 1);
    }

    .reveal .bd-section-title {
      clip-path: inset(0 0 100% 0);
      transform: translateY(58px) scaleY(0.82);
      transform-origin: top center;
      transition:
        opacity 900ms cubic-bezier(.16, 1, .3, 1) 120ms,
        transform 1200ms cubic-bezier(.16, 1, .3, 1) 120ms,
        clip-path 1200ms cubic-bezier(.16, 1, .3, 1) 120ms;
    }

    .reveal .bd-section-copy {
      transform: translateY(32px);
      filter: blur(6px);
      transition:
        opacity 900ms cubic-bezier(.16, 1, .3, 1) 260ms,
        transform 1000ms cubic-bezier(.16, 1, .3, 1) 260ms,
        filter 900ms cubic-bezier(.16, 1, .3, 1) 260ms;
    }

    .reveal.is-visible .bd-kicker,
    .reveal.is-visible .bd-section-title,
    .reveal.is-visible .bd-section-copy {
      opacity: 1;
      transform: none;
      filter: none;
      clip-path: inset(0 0 0 0);
    }

    .reveal.is-visible .bd-kicker {
      letter-spacing: 0.12em;
    }

    .bd-pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(180, 116, 255, 0.18);
      box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
    }

    .bd-pain-card {
      min-height: 360px;
      padding: clamp(24px, 2.6vw, 40px);
      background:
        radial-gradient(circle at 18% 12%, rgba(180, 92, 255, 0.14), transparent 34%),
        rgba(10, 6, 24, 0.92);
      display: grid;
      align-content: space-between;
      gap: 34px;
    }

    .bd-card-index {
      display: inline-grid;
      place-items: center;
      width: 54px;
      height: 54px;
      color: #fff;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(180, 92, 255, 0.88), rgba(37, 216, 255, 0.6));
      box-shadow: 0 0 38px rgba(180, 92, 255, 0.3);
      font-weight: 950;
    }

    .bd-pain-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(24px, 2.1vw, 38px);
      font-weight: 950;
      line-height: 1.08;
    }

    .bd-card-en {
      display: block;
      margin-top: 10px;
      color: rgba(180, 116, 255, 0.92);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bd-pain-card p {
      margin: 0;
      color: rgba(247, 243, 255, 0.72);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.7;
    }

    .bd-slogan {
      margin-top: 24px;
      color: #fff;
      font-size: clamp(18px, 1.35vw, 24px);
      font-weight: 950;
      line-height: 1.35;
    }

    .bd-diagnosis {
      background:
        #05020c;
    }

    .bd-diagnosis.bg-ready {
      background: #05020c;
    }

    .bd-diagnosis-grid {
      display: grid;
      grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
      gap: clamp(38px, 6vw, 96px);
      align-items: center;
    }

    .bd-evidence {
      display: grid;
      gap: 18px;
    }

    .bd-evidence-card {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      min-height: 136px;
      padding: clamp(24px, 2.4vw, 34px);
      background:
        radial-gradient(circle at 18% 12%, rgba(177, 84, 255, 0.3), transparent 34%),
        radial-gradient(circle at 96% 22%, rgba(49, 213, 255, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(24, 12, 58, 0.86), rgba(7, 4, 18, 0.94));
      box-shadow:
        inset 0 0 0 1px rgba(190, 128, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -44px 70px rgba(3, 0, 12, 0.45),
        0 26px 80px rgba(0, 0, 0, 0.28);
      backdrop-filter: blur(14px);
      transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
    }

    .bd-evidence-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.1) 42%, transparent 68%),
        linear-gradient(90deg, rgba(185, 88, 255, 0.42), rgba(42, 209, 255, 0.12) 46%, transparent 72%);
      opacity: 0.46;
      pointer-events: none;
      z-index: 0;
    }

    .bd-evidence-card::after {
      content: "";
      position: absolute;
      right: 22px;
      top: 22px;
      width: 52px;
      height: 52px;
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      border-right: 1px solid rgba(180, 116, 255, 0.36);
      opacity: 0.65;
      pointer-events: none;
      z-index: 1;
    }

    .bd-evidence-card:nth-child(2) {
      background:
        radial-gradient(circle at 12% 16%, rgba(48, 215, 255, 0.22), transparent 34%),
        radial-gradient(circle at 92% 26%, rgba(177, 84, 255, 0.24), transparent 32%),
        linear-gradient(135deg, rgba(17, 10, 48, 0.9), rgba(8, 4, 22, 0.94));
    }

    .bd-evidence-card:nth-child(3) {
      background:
        radial-gradient(circle at 20% 12%, rgba(255, 83, 210, 0.18), transparent 32%),
        radial-gradient(circle at 90% 18%, rgba(82, 111, 255, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(20, 10, 54, 0.88), rgba(6, 3, 18, 0.96));
    }

    .bd-evidence-card:hover {
      transform: translateY(-4px);
      background:
        radial-gradient(circle at 18% 12%, rgba(188, 92, 255, 0.38), transparent 36%),
        radial-gradient(circle at 96% 22%, rgba(49, 213, 255, 0.22), transparent 32%),
        linear-gradient(135deg, rgba(31, 15, 78, 0.92), rgba(8, 4, 22, 0.96));
      box-shadow:
        inset 0 0 0 1px rgba(194, 128, 255, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 30px 92px rgba(84, 40, 190, 0.34);
    }

    .bd-evidence-card b {
      position: relative;
      z-index: 2;
      display: block;
      color: #fff;
      font-size: clamp(20px, 1.6vw, 28px);
      line-height: 1.18;
    }

    .bd-evidence-card span {
      position: relative;
      z-index: 2;
      display: block;
      margin-top: 10px;
      color: rgba(202, 181, 255, 0.78);
      font-size: 14px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .bd-diagnosis-media {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      box-shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
    }

    .bd-diagnosis-media img {
      filter: saturate(0.92) contrast(1.08) brightness(0.82);
    }

    .bd-diagnosis-media::after {
      content: "Lead gap / Trust gap / Conversion gap";
      position: absolute;
      left: 28px;
      bottom: 28px;
      color: #fff;
      font-size: clamp(18px, 1.5vw, 28px);
      font-weight: 950;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

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

    .bd-platform-grid.reveal {
      opacity: 1;
      transform: none;
    }

    .bd-platform-grid.reveal .bd-platform-card {
      opacity: 0;
      transform: translateY(64px) scale(0.94);
      filter: blur(10px);
      transition:
        opacity 1000ms cubic-bezier(.16, 1, .3, 1),
        transform 1200ms cubic-bezier(.16, 1, .3, 1),
        filter 1000ms cubic-bezier(.16, 1, .3, 1),
        box-shadow 260ms ease;
      transition-delay: var(--platform-delay, 0ms);
    }

    .bd-platform-grid.reveal.is-visible .bd-platform-card {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: none;
    }

    .bd-platform-card:nth-child(1) { --platform-delay: 120ms; }
    .bd-platform-card:nth-child(2) { --platform-delay: 240ms; }
    .bd-platform-card:nth-child(3) { --platform-delay: 360ms; }
    .bd-platform-card:nth-child(4) { --platform-delay: 480ms; }
    .bd-platform-card:nth-child(5) { --platform-delay: 600ms; }
    .bd-platform-card:nth-child(6) { --platform-delay: 720ms; }

    .bd-platform-card {
      --platform-a: rgba(180, 92, 255, 0.48);
      --platform-b: rgba(37, 216, 255, 0.2);
      min-height: 240px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      display: grid;
      align-content: space-between;
      background:
        radial-gradient(circle at 14% 10%, var(--platform-a), transparent 34%),
        radial-gradient(circle at 92% 16%, var(--platform-b), transparent 30%),
        linear-gradient(145deg, rgba(44, 18, 90, 0.72), rgba(8, 6, 26, 0.82)),
        rgba(255, 255, 255, 0.055);
      box-shadow:
        inset 0 0 0 1px rgba(200, 144, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 24px 80px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(16px);
      transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
    }

    .bd-platform-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 36%),
        linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.045));
      opacity: 0.48;
      pointer-events: none;
    }

    .bd-platform-card::after {
      content: "";
      position: absolute;
      right: 24px;
      top: 24px;
      width: 72px;
      height: 72px;
      border-top: 1px solid rgba(255, 255, 255, 0.22);
      border-right: 1px solid rgba(200, 144, 255, 0.36);
      opacity: 0.65;
      pointer-events: none;
    }

    .bd-platform-card:hover {
      transform: translateY(-5px);
      box-shadow:
        inset 0 0 0 1px rgba(210, 164, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 30px 100px rgba(96, 46, 210, 0.28);
    }

    .bd-platform-card:hover .bd-platform-logo {
      transform: translateY(-3px) scale(1.12) rotate(-4deg);
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.34),
        0 0 42px color-mix(in srgb, var(--platform-a), transparent 18%);
    }

    .bd-platform-tiktok { --platform-a: rgba(255, 43, 214, 0.44); --platform-b: rgba(37, 216, 255, 0.34); }
    .bd-platform-linkedin { --platform-a: rgba(10, 102, 194, 0.5); --platform-b: rgba(83, 166, 255, 0.3); }
    .bd-platform-facebook { --platform-a: rgba(24, 119, 242, 0.52); --platform-b: rgba(152, 88, 255, 0.26); }
    .bd-platform-youtube { --platform-a: rgba(255, 0, 0, 0.45); --platform-b: rgba(255, 94, 176, 0.24); }
    .bd-platform-instagram { --platform-a: rgba(255, 82, 180, 0.48); --platform-b: rgba(255, 180, 64, 0.26); }
    .bd-platform-google { --platform-a: rgba(66, 133, 244, 0.48); --platform-b: rgba(52, 168, 83, 0.24); }

    .bd-platform-logo {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      margin-right: 16px;
      border-radius: 50%;
      color: #fff;
      font-size: 18px;
      font-weight: 950;
      line-height: 1;
      vertical-align: 0.08em;
      background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.42), transparent 34%),
        linear-gradient(135deg, var(--platform-a), var(--platform-b));
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.22),
        0 0 28px color-mix(in srgb, var(--platform-a), transparent 32%);
      transition: transform 520ms cubic-bezier(.16, 1, .3, 1), box-shadow 520ms ease;
    }

    .bd-platform-card strong {
      display: flex;
      align-items: center;
      color: #fff;
      font-size: clamp(30px, 3.5vw, 58px);
      font-weight: 950;
      line-height: 1;
    }

    .bd-platform-card p {
      margin: 24px 0 0;
      color: rgba(247, 243, 255, 0.68);
      font-size: 15px;
      font-weight: 720;
      line-height: 1.65;
    }

    .bd-solution-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .bd-solution-item {
      min-height: 220px;
      padding: 28px;
      background: rgba(12, 7, 30, 0.74);
      box-shadow: inset 0 0 0 1px rgba(180, 116, 255, 0.2);
    }

    .bd-solution-item b {
      color: rgba(180, 116, 255, 0.95);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bd-solution-item h3 {
      margin: 22px 0 12px;
      color: #fff;
      font-size: clamp(22px, 1.9vw, 34px);
      line-height: 1.12;
    }

    .bd-solution-item p {
      margin: 0;
      color: rgba(247, 243, 255, 0.66);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.7;
    }

    .bd-action-section {
      background:
        radial-gradient(circle at 82% 12%, rgba(180, 92, 255, 0.14), transparent 30%),
        radial-gradient(circle at 12% 82%, rgba(49, 213, 255, 0.08), transparent 28%),
        #090513;
    }

    .bd-action-layout {
      display: grid;
      grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
      gap: clamp(42px, 6vw, 110px);
      align-items: start;
    }

    .bd-action-copy {
      padding-top: clamp(8px, 2vw, 34px);
      min-width: 0;
    }

    .bd-action-copy .bd-section-title {
      max-width: 720px;
      margin-bottom: 22px;
      font-size: clamp(46px, 6vw, 94px);
      line-height: 0.96;
    }

    .bdkhtd-page .bd-action-copy .bd-section-title {
      font-size: clamp(42px, 5.2vw, 78px);
      line-height: 1.18;
    }

    .bd-action-copy > p {
      max-width: 620px;
      margin: 0 0 34px;
      color: rgba(247, 243, 255, 0.72);
      font-size: clamp(16px, 1.2vw, 20px);
      font-weight: 750;
      line-height: 1.75;
    }

    .bd-action-points {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      max-width: 620px;
      margin: 0;
      padding: 8px 0 8px 34px;
      list-style: none;
      counter-reset: action;
      border-left: 1px solid rgba(180, 116, 255, 0.36);
    }

    .bd-action-points li {
      position: relative;
      display: grid;
      grid-template-columns: 72px 1fr;
      column-gap: 22px;
      counter-increment: action;
      min-width: 0;
      padding: 0 0 34px;
      border-top: 0;
    }

    .bd-action-points li.motion-item {
      transform: translateX(-42px) scale(0.98);
      filter: blur(8px);
      transition:
        opacity 950ms cubic-bezier(.16, 1, .3, 1),
        transform 1050ms cubic-bezier(.16, 1, .3, 1),
        filter 900ms cubic-bezier(.16, 1, .3, 1);
    }

    .bd-action-points li.motion-item.is-visible {
      transform: translateX(0) scale(1);
      filter: none;
    }

    .bd-action-points li:last-child {
      padding-bottom: 0;
    }

    .bd-action-points li::after {
      content: "";
      position: absolute;
      left: -41px;
      top: 2px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: linear-gradient(135deg, #b45cff, #25d8ff);
      box-shadow: 0 0 26px rgba(180, 92, 255, 0.55);
    }

    .bd-action-points li::before {
      content: "(" counter(action, decimal-leading-zero) ")";
      grid-column: 1;
      grid-row: 1 / span 2;
      color: rgba(247, 243, 255, 0.9);
      font-size: 18px;
      font-weight: 850;
      letter-spacing: 0.03em;
      line-height: 1;
    }

    .bd-action-points b {
      grid-column: 2;
      display: block;
      color: #fff;
      font-size: clamp(18px, 1.3vw, 24px);
      line-height: 1.2;
      white-space: normal;
    }

    .bd-action-points span {
      grid-column: 2;
      display: block;
      margin-top: 10px;
      color: rgba(247, 243, 255, 0.66);
      font-size: 15px;
      font-weight: 650;
      line-height: 1.75;
      white-space: nowrap;
    }

    .bd-action-photo {
      position: relative;
      min-height:780px;
      margin: 0;
      overflow: hidden;
      background-position: center calc(50% + var(--parallax-y, 0px));
      background-size: cover;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 28px 100px rgba(0, 0, 0, 0.34);
      transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 700ms ease, box-shadow 700ms ease, background-position 220ms linear;
    }

    .bd-action-photo:hover {
      transform: translateY(-8px) scale(1.025);
      filter: saturate(1.18) contrast(1.06);
      box-shadow:
        inset 0 0 0 1px rgba(210, 164, 255, 0.26),
        0 34px 120px rgba(92, 42, 210, 0.34);
    }

    .bd-action-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5, 2, 12, 0.02), rgba(5, 2, 12, 0.16)),
        radial-gradient(circle at 82% 12%, rgba(180, 92, 255, 0.2), transparent 34%);
      pointer-events: none;
    }

    .bd-action-layout.reveal .bd-action-photo,
    .bd-action-details.reveal .bd-action-photo {
      opacity: 0;
      clip-path: inset(0 0 100% 0);
      transform: translateY(54px) scale(1.04);
      filter: blur(10px) saturate(0.9);
      transition:
        opacity 1000ms cubic-bezier(.16, 1, .3, 1),
        transform 1300ms cubic-bezier(.16, 1, .3, 1),
        filter 1100ms cubic-bezier(.16, 1, .3, 1),
        clip-path 1300ms cubic-bezier(.16, 1, .3, 1);
    }

    .bd-action-layout.reveal.is-visible .bd-action-photo,
    .bd-action-details.reveal.is-visible .bd-action-photo {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateY(0) scale(1);
      filter: none;
    }

    .bd-action-photo-main {
      background-image: url("../images/bdkhtd-pic1.jpg");
    }

    .bd-action-details {
      display: grid;
      grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
      gap: clamp(42px, 6vw, 110px);
      align-items: start;
      margin-top: clamp(86px, 11vw, 80px);
    }

    .bd-action-photo-side {
      min-height: 340px;
      background-image: url("../images/bdkhtd-pic2.jpg");
    }

    .bd-action-table {
      padding-top: 4px;
    }

    .bd-action-table .bd-action-points {
      max-width: 100%;
      counter-reset: action 3;
    }

    .bd-action-table .bd-action-points span {
      white-space: normal;
    }

    .bd-action-table h3 {
      margin: 0 0 34px;
      color: #fff;
      font-size: clamp(34px, 3.2vw, 58px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: 0;
    }

    .bd-action-table dl {
      margin: 0;
    }

    .bd-action-table div {
      display: grid;
      grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr);
      gap: 34px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(247, 243, 255, 0.22);
    }

    .bd-action-table dt {
      margin: 0;
      color: rgba(247, 243, 255, 0.78);
      font-size: 15px;
      font-weight: 650;
      line-height: 1.5;
    }

    .bd-action-table dd {
      margin: 0;
      color: #fff;
      text-align: right;
      line-height: 1.5;
    }

    .bd-action-table dd b {
      display: block;
      font-size: clamp(20px, 1.5vw, 28px);
      font-weight: 900;
      line-height: 1.16;
    }

    .bd-action-table dd span {
      display: block;
      margin-top: 10px;
      color: rgba(247, 243, 255, 0.66);
      font-size: 15px;
      font-weight: 650;
      line-height: 1.65;
    }

    .bd-cta-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(42px, 6vw, 88px);
      background:
        radial-gradient(circle at 50% 0, rgba(180, 92, 255, 0.32), transparent 46%),
        linear-gradient(135deg, rgba(25, 12, 66, 0.92), rgba(7, 4, 18, 0.9));
      box-shadow: inset 0 0 0 1px rgba(180, 116, 255, 0.24), 0 28px 100px rgba(0, 0, 0, 0.32);
      text-align: center;
    }

    .bd-cta-panel h2 {
      margin: 0 auto;
      max-width: 1120px;
      color: #fff;
      font-size: clamp(40px, 5.8vw, 96px);
      font-weight: 950;
      line-height: 0.98;
    }

    .bd-cta-panel p {
      max-width: 780px;
      margin: 28px auto 0;
      color: rgba(247, 243, 255, 0.72);
      font-size: clamp(17px, 1.25vw, 22px);
      font-weight: 720;
      line-height: 1.7;
    }

    .bd-hero {
      align-items: end;
      padding-bottom: clamp(72px, 9vw, 128px);
    }

    .bd-hero.bg-ready {
      background-position: center 38%;
    }

    .bd-hero-inner {
      transform: translateY(clamp(24px, 5vw, 82px));
    }

    .bd-hero-copy {
      max-width: 960px;
      padding: 12px 22px;
      background: rgba(7, 4, 18, 0.24);
      backdrop-filter: blur(8px);
      border-radius: 10px;
      font-size: clamp(14px, 1.02vw, 18px);
      line-height: 1.55;
    }

    .bd-collage {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(4, minmax(180px, 18vw));
      gap: 0;
      background: #05020c;
      overflow: hidden;
    }

    .bd-collage.reveal {
      opacity: 1;
      transform: none;
    }

    .bd-collage.reveal .bd-collage-item {
      opacity: 0;
      transform: translateY(70px) scale(0.94);
      filter: blur(10px);
      transition:
        opacity 1050ms cubic-bezier(.16, 1, .3, 1),
        transform 1200ms cubic-bezier(.16, 1, .3, 1),
        filter 1000ms cubic-bezier(.16, 1, .3, 1);
      transition-delay: var(--collage-delay, 0ms);
    }

    .bd-collage.reveal.is-visible .bd-collage-item {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: none;
    }

    .bd-collage-item:nth-child(1) { --collage-delay: 120ms; }
    .bd-collage-item:nth-child(2) { --collage-delay: 260ms; }
    .bd-collage-item:nth-child(3) { --collage-delay: 400ms; }
    .bd-collage-item:nth-child(4) { --collage-delay: 540ms; }
    .bd-collage-item:nth-child(5) { --collage-delay: 680ms; }
    .bd-collage-item:nth-child(6) { --collage-delay: 820ms; }

    .bd-collage-item {
      position: relative;
      min-height: 260px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(180, 92, 255, 0.16), rgba(37, 216, 255, 0.08)),
        #100b1f;
      background-position: center calc(50% + var(--parallax-y, 0px));
      background-size: cover;
      isolation: isolate;
    }

    .bd-collage-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52)),
        radial-gradient(circle at 24% 18%, rgba(180, 92, 255, 0.22), transparent 38%);
      transition: opacity 300ms ease;
    }

    .bd-collage-item:hover::before {
      opacity: 0.78;
    }

    .bd-collage.bg-ready .bd-collage-01 { background-image: url("../images/wt_01.jpg"); }
    .bd-collage.bg-ready .bd-collage-02 { background-image: url("../images/wt_02.jpg"); }
    .bd-collage.bg-ready .bd-collage-03 { background-image: url("../images/wt_03.jpg"); }
    .bd-collage.bg-ready .bd-collage-04 { background-image: url("../images/wt_04.jpg"); }
    .bd-collage.bg-ready .bd-collage-05 { background-image: url("../images/wt_05.jpg"); }
    .bd-collage.bg-ready .bd-collage-06 { background-image: url("../images/wt_06.jpg"); }

    .bd-collage-01 {
      grid-column: 1 / 4;
      grid-row: 1 / 2;
    }

    .bd-collage-02 {
      grid-column: 4 / 7;
      grid-row: 1 / 3;
    }

    .bd-collage-03 {
      grid-column: 1 / 3;
      grid-row: 2 / 3;
      filter: grayscale(1);
    }

    .bd-collage-04 {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }

    .bd-collage-05 {
      grid-column: 1 / 3;
      grid-row: 3 / 5;
    }

    .bd-collage-06 {
      grid-column: 3 / 7;
      grid-row: 3 / 5;
    }

    .bd-collage-copy {
      position: absolute;
      left: clamp(18px, 2.6vw, 42px);
      right: clamp(18px, 2.6vw, 42px);
      bottom: clamp(18px, 2.6vw, 42px);
      display: grid;
      gap: 10px;
      color: #fff;
    }

    .bd-collage-copy span {
      color: rgba(247, 243, 255, 0.68);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .bd-collage-copy h2 {
      max-width: 620px;
      margin: 0;
      font-size: clamp(20px, 2.35vw, 42px);
      font-weight: 950;
      line-height: 1.08;
      text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    }

    .bd-collage-01 .bd-collage-copy h2 {
      max-width: 920px;
      font-size: clamp(28px, 2.65vw, 44px);
      white-space: nowrap;
    }

    .bd-collage-copy p {
      max-width: 520px;
      margin: 0;
      color: rgba(247, 243, 255, 0.72);
      font-size: 15px;
      font-weight: 720;
      line-height: 1.6;
    }

    .bd-collage-03 .bd-collage-copy,
    .bd-collage-04 .bd-collage-copy {
      left: clamp(14px, 1.7vw, 24px);
      right: clamp(14px, 1.7vw, 24px);
      bottom: clamp(14px, 1.7vw, 24px);
      gap: 6px;
    }

    .bd-collage-03 .bd-collage-copy h2,
    .bd-collage-04 .bd-collage-copy h2 {
      font-size: clamp(20px, 2vw, 30px);
      line-height: 1.08;
    }

    .bd-collage-03 .bd-collage-copy p,
    .bd-collage-04 .bd-collage-copy p {
      font-size: clamp(12px, 0.95vw, 14px);
      line-height: 1.45;
    }

    .bd-collage-03 .bd-collage-copy span,
    .bd-collage-04 .bd-collage-copy span {
      font-size: 10px;
      letter-spacing: 0.1em;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 760ms ease, transform 760ms ease;
      transition-delay: var(--motion-delay, 0ms);
    }

    .reveal.is-visible,
    .motion-item.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .solution-flow.reveal {
      opacity: 1;
      transform: none;
      filter: none;
    }

    .solution-flow.reveal::before {
      opacity: 0;
      transform: scaleX(0.08);
      transform-origin: left center;
      transition: opacity 720ms ease, transform 1200ms cubic-bezier(.2, .8, .2, 1);
    }

    .solution-flow.reveal.is-visible::before {
      opacity: 1;
      transform: scaleX(1);
    }

    .solution-flow.reveal .solution-step {
      opacity: 0;
      transform: translateY(34px) scale(0.96);
      animation: none;
      transition:
        opacity 760ms cubic-bezier(.2, .7, .2, 1),
        transform 760ms cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--step-delay, 0ms);
    }

    .solution-flow.reveal.is-visible .solution-step {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .solution-flow .solution-step:nth-child(1) { --step-delay: 140ms; }
    .solution-flow .solution-step:nth-child(2) { --step-delay: 280ms; }
    .solution-flow .solution-step:nth-child(3) { --step-delay: 420ms; }
    .solution-flow .solution-step:nth-child(4) { --step-delay: 560ms; }
    .solution-flow .solution-step:nth-child(5) { --step-delay: 700ms; }
    .solution-flow .solution-step:nth-child(6) { --step-delay: 840ms; }
    .solution-flow .solution-step:nth-child(7) { --step-delay: 980ms; }

    .service-grid.reveal {
      opacity: 1;
      transform: none;
      filter: none;
    }

    .service-grid.reveal > li {
      opacity: 0;
      transform: translateX(-34px) scale(0.97);
      transition:
        opacity 760ms cubic-bezier(.2, .7, .2, 1),
        transform 760ms cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--service-delay, 0ms);
    }

    .service-grid.reveal.is-visible > li {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .service-grid > li:nth-child(1) { --service-delay: 120ms; }
    .service-grid > li:nth-child(2) { --service-delay: 240ms; }
    .service-grid > li:nth-child(3) { --service-delay: 360ms; }
    .service-grid > li:nth-child(4) { --service-delay: 480ms; }
    .service-grid > li:nth-child(5) { --service-delay: 600ms; }
    .service-grid > li:nth-child(6) { --service-delay: 720ms; }
    .service-grid > li:nth-child(7) { --service-delay: 840ms; }

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

    .process.reveal > .process-step {
      opacity: 0;
      transform: translateX(-38px) scale(0.96);
      transition:
        opacity 760ms cubic-bezier(.2, .7, .2, 1),
        transform 760ms cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--process-delay, 0ms);
    }

    .process.reveal.is-visible > .process-step {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .process > .process-step:nth-child(1) { --process-delay: 100ms; }
    .process > .process-step:nth-child(2) { --process-delay: 210ms; }
    .process > .process-step:nth-child(3) { --process-delay: 320ms; }
    .process > .process-step:nth-child(4) { --process-delay: 430ms; }
    .process > .process-step:nth-child(5) { --process-delay: 540ms; }
    .process > .process-step:nth-child(6) { --process-delay: 650ms; }
    .process > .process-step:nth-child(7) { --process-delay: 760ms; }
    .process > .process-step:nth-child(8) { --process-delay: 870ms; }

    .motion-item {
      opacity: 0;
      transform: translateY(28px) scale(0.985);
      transition:
        opacity 720ms cubic-bezier(.2, .7, .2, 1),
        transform 720ms cubic-bezier(.2, .7, .2, 1);
      transition-delay: var(--motion-delay, 0ms);
    }

    .motion-soft {
      animation: motionSoftFloat 7s ease-in-out infinite alternate;
    }

    @keyframes motionSoftFloat {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(0, -10px, 0); }
    }

    .tilt-item {
      position: relative;
      transform-style: preserve-3d;
      transition: transform 520ms cubic-bezier(.16, 1, .3, 1), filter 520ms ease, box-shadow 520ms ease;
    }

    .tilt-item::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      pointer-events: none;
      background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), rgba(180, 92, 255, 0.14) 18%, transparent 44%);
      mix-blend-mode: screen;
      transition: opacity 420ms ease;
    }

    .tilt-item.is-tilting {
      will-change: transform;
      transform:
        perspective(900px)
        rotateX(var(--tilt-x, 0deg))
        rotateY(var(--tilt-y, 0deg))
        translateY(-8px)
        scale(1.018);
      filter: saturate(1.16) brightness(1.06);
    }

    .tilt-item.is-tilting::before {
      opacity: 1;
    }

    .nav.is-loaded .brand,
    .nav.is-loaded .nav-item,
    .hero.is-loaded .hero-announcement,
    .hero.is-loaded .eyebrow,
    .hero.is-loaded .hero-copy,
    .hero.is-loaded .hero-actions,
    .bd-hero.is-loaded .bd-hero-label,
    .bd-hero.is-loaded .bd-hero-copy,
    .bd-hero.is-loaded .bd-hero-actions {
      animation: loadFadeUp 980ms cubic-bezier(.16, 1, .3, 1) both;
      animation-delay: var(--load-delay, 0ms);
    }

    @keyframes bdTitleReveal {
      0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
        transform: translateY(56px) scaleX(0.86);
        filter: blur(10px);
      }
      62% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(-8px) scaleX(1.035);
        filter: blur(0);
      }
      100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0) scaleX(1);
        filter: blur(0);
      }
    }

    @keyframes loadFadeUp {
      from {
        opacity: 0;
        transform: translateY(-14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .solution-page {
      background:
        radial-gradient(circle at 78% 8%, rgba(89, 132, 255, 0.18), transparent 32%),
        radial-gradient(circle at 18% 18%, rgba(169, 70, 255, 0.16), transparent 34%),
        #05020c;
    }

    .jj-hero.bg-ready {
      background-image: url("../images/banner-jjfa.jpg");
      background-size: cover;
      background-position: center;
    }

    .jjfa-page .bd-hero::before,
    .jjfa-page .bd-hero::after,
    .jjfa-page .hero::before,
    .jjfa-page .hero::after {
      display: none;
    }

    .jjfa-page .bd-hero-title,
    .jjfa-page .bd-section-title,
    .jjfa-page .bd-two-line-title {
      line-height: 1.12;
    }

    .jjfa-page .bd-hero-title span,
    .jjfa-page .bd-section-title span,
    .jjfa-page .bd-two-line-title span {
      margin-bottom: 0.08em;
    }

    .jjfa-page .bd-hero-title span:last-child,
    .jjfa-page .bd-section-title span:last-child,
    .jjfa-page .bd-two-line-title span:last-child {
      margin-bottom: 0;
    }

    .jj-hero .bd-hero-inner {
      max-width: 1380px;
      text-align: center;
    }

    .jj-hero .bd-hero-title {
      margin-inline: auto;
      font-size: clamp(72px, 8.3vw, 148px);
      line-height: 1.02;
    }

    .jj-hero .bd-hero-title span {
      justify-content: center;
    }

    .jj-hero .bd-hero-copy {
      max-width: 900px;
      margin-inline: auto;
      text-align: center;
    }

    .jj-overview {
      padding-top: clamp(92px, 9vw, 150px);
    }

    .jj-solution-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 72px;
    }

    .jj-solution-grid.reveal .jj-solution-card,
    .jj-route.reveal .jj-route-step,
    .jj-detail-grid.reveal .jj-detail-card {
      opacity: 0;
      transform: translate3d(0, 54px, 0) scale(0.96);
      filter: blur(12px);
      transition:
        opacity 980ms cubic-bezier(.16, 1, .3, 1),
        transform 980ms cubic-bezier(.16, 1, .3, 1),
        filter 980ms ease;
      transition-delay: var(--jj-delay, 0ms);
    }

    .jj-solution-grid.reveal.is-visible .jj-solution-card,
    .jj-route.reveal.is-visible .jj-route-step,
    .jj-detail-grid.reveal.is-visible .jj-detail-card {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    .jj-solution-card:nth-child(1),
    .jj-route-step:nth-child(1),
    .jj-detail-card:nth-child(1) { --jj-delay: 80ms; }
    .jj-solution-card:nth-child(2),
    .jj-route-step:nth-child(2),
    .jj-detail-card:nth-child(2) { --jj-delay: 180ms; }
    .jj-solution-card:nth-child(3),
    .jj-route-step:nth-child(3),
    .jj-detail-card:nth-child(3) { --jj-delay: 280ms; }
    .jj-solution-card:nth-child(4),
    .jj-route-step:nth-child(4),
    .jj-detail-card:nth-child(4) { --jj-delay: 380ms; }
    .jj-solution-card:nth-child(5),
    .jj-route-step:nth-child(5),
    .jj-detail-card:nth-child(5) { --jj-delay: 480ms; }
    .jj-solution-card:nth-child(6),
    .jj-detail-card:nth-child(6) { --jj-delay: 580ms; }

    .jj-solution-card,
    .jj-detail-card,
    .jj-route-step {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(166, 100, 255, 0.32);
      background:
        linear-gradient(145deg, rgba(123, 56, 255, 0.22), rgba(15, 27, 58, 0.78) 54%, rgba(5, 2, 12, 0.86)),
        rgba(255, 255, 255, 0.04);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 28px 80px rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(18px);
    }

    .jj-solution-card::after,
    .jj-detail-card::after,
    .jj-route-step::after {
      content: "";
      position: absolute;
      inset: -40% -28% auto auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(103, 221, 255, 0.24), rgba(179, 84, 255, 0.2) 42%, transparent 70%);
      opacity: 0.7;
      pointer-events: none;
      transition: transform 700ms cubic-bezier(.16, 1, .3, 1), opacity 700ms ease;
    }

    .jj-solution-card:hover::after,
    .jj-detail-card:hover::after,
    .jj-route-step:hover::after {
      opacity: 1;
      transform: translate3d(-16px, 18px, 0) scale(1.22);
    }

    .jj-solution-card {
      min-height: 350px;
      padding: 34px;
      display: grid;
      align-content: space-between;
    }

    .jj-card-index {
      color: #9b75ff;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .jj-solution-card i {
      position: absolute;
      right: 30px;
      top: 28px;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      font-style: normal;
      font-weight: 900;
      background: linear-gradient(135deg, rgba(209, 74, 232, 0.92), rgba(55, 133, 255, 0.94));
      box-shadow: 0 0 34px rgba(141, 91, 255, 0.5);
    }

    .jj-solution-card h3 {
      margin: 88px 0 10px;
      color: #f8f5ff;
      font-size: clamp(27px, 2.4vw, 44px);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .jj-solution-card b,
    .jj-route-step b,
    .jj-detail-card span {
      display: block;
      color: #a67bff;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .jj-solution-card p,
    .jj-detail-card p,
    .jj-route-step p,
    .jj-route-copy p,
    .jj-visual-copy p {
      color: rgba(243, 237, 255, 0.72);
      font-size: clamp(16px, 1.25vw, 20px);
      font-weight: 700;
      line-height: 1.65;
    }

    .jj-solution-grid {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: minmax(170px, 10vw);
      gap: clamp(14px, 1.4vw, 24px);
      align-items: stretch;
    }

    .jj-solution-card {
      min-height: 0;
      padding: clamp(24px, 2.2vw, 42px);
      align-content: end;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      box-shadow:
        inset 0 -210px 120px rgba(5, 2, 12, 0.82),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 34px 90px rgba(0, 0, 0, 0.36);
    }

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

    .jj-solution-card:nth-child(1) {
      grid-column: 1 / span 5;
      grid-row: span 2;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.08), rgba(5, 2, 12, 0.9)),
        url("../images/jjfa-pic1.jpg");
    }

    .jj-solution-card:nth-child(2) {
      grid-column: 6 / span 3;
      grid-row: span 1;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.06), rgba(5, 2, 12, 0.88)),
        url("../images/jjfa-pic3.jpg");
    }

    .jj-solution-card:nth-child(3) {
      grid-column: 9 / span 4;
      grid-row: span 2;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.04), rgba(5, 2, 12, 0.9)),
        url("../images/jjfa-pic5.jpg");
    }

    .jj-solution-card:nth-child(4) {
      grid-column: 6 / span 3;
      grid-row: span 1;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.08), rgba(5, 2, 12, 0.9)),
        url("../images/jjfa-pic4.jpg");
    }

    .jj-solution-card:nth-child(5) {
      grid-column: 1 / span 4;
      grid-row: span 2;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.08), rgba(5, 2, 12, 0.9)),
        url("../images/case-product-demo.png");
    }

    .jj-solution-card:nth-child(6) {
      grid-column: 5 / span 8;
      grid-row: span 2;
      background-image:
        linear-gradient(180deg, rgba(5, 2, 12, 0.04), rgba(5, 2, 12, 0.9)),
        url("../images/jjfa-pic6.jpg");
    }

    .jj-solution-card .jj-card-index {
      position: absolute;
      left: clamp(24px, 2.2vw, 42px);
      top: clamp(22px, 2vw, 34px);
      color: rgba(230, 218, 255, 0.9);
    }

    .jj-solution-card i {
      right: clamp(22px, 2vw, 34px);
      top: clamp(20px, 1.8vw, 30px);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(12px);
      box-shadow: 0 0 46px rgba(154, 86, 255, 0.56);
    }

    .jj-solution-card h3 {
      max-width: 760px;
      margin: 0 0 12px;
      text-shadow: 0 14px 40px rgba(0, 0, 0, 0.58);
    }

    .jj-solution-card h3 span {
      display: block;
    }

    .jj-solution-card b {
      margin-bottom: 18px;
      color: #b68bff;
      text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    }

    .jj-solution-card p {
      max-width: 760px;
      color: rgba(246, 242, 255, 0.84);
      text-shadow: 0 10px 28px rgba(0, 0, 0, 0.54);
    }

    .jj-solution-card:hover {
      background-position: center calc(50% + var(--parallax-y, 0px));
      box-shadow:
        inset 0 -210px 120px rgba(5, 2, 12, 0.78),
        inset 0 0 0 1px rgba(255, 255, 255, 0.16),
        0 44px 120px rgba(87, 59, 255, 0.28);
    }

    .jj-solution-card:nth-child(2),
    .jj-solution-card:nth-child(4) {
      padding: 26px 30px;
      box-shadow:
        inset 0 -170px 110px rgba(5, 2, 12, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 34px 90px rgba(0, 0, 0, 0.36);
    }

    .jj-solution-card:nth-child(2) h3,
    .jj-solution-card:nth-child(4) h3 {
      max-width: 82%;
      font-size: clamp(23px, 1.9vw, 32px);
      line-height: 1.08;
      margin-bottom: 10px;
    }

    .jj-solution-card:nth-child(2) b,
    .jj-solution-card:nth-child(4) b {
      margin-bottom: 0;
      font-size: 11px;
      letter-spacing: 0.2em;
    }

    .jj-solution-card:nth-child(2) p,
    .jj-solution-card:nth-child(4) p {
      display: none;
    }

    .jj-solution-card:nth-child(2) i,
    .jj-solution-card:nth-child(4) i {
      width: 48px;
      height: 48px;
      font-size: 20px;
      opacity: 0.86;
    }

    .jj-solution-card:nth-child(3) h3 {
      max-width: calc(100% - 78px);
      font-size: clamp(26px, 2vw, 36px);
      white-space: nowrap;
    }

    .jj-route-section {
      padding-top: clamp(80px, 8vw, 132px);
      overflow: hidden;
    }

    .jj-route-layout,
    .jj-visual-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(44px, 6vw, 112px);
      align-items: center;
    }

    .jj-route-copy .bd-section-title,
    .jj-visual-copy .bd-section-title {
      font-size: clamp(52px, 6.4vw, 106px);
      line-height: 0.9;
    }

    .jj-image-panel {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
      transform: translate3d(0, var(--parallax-y, 0px), 0);
      isolation: isolate;
    }

    .jj-image-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(5, 2, 12, 0.1), rgba(5, 2, 12, 0.54));
      pointer-events: none;
    }

    .jj-image-primary {
      background-image: url("../images/solution-b2b-system.png");
      clip-path: inset(0 0 0 0 round 0);
    }

    .jj-image-secondary {
      background-image: url("../images/jjfa-pic.jpg");
      min-height: 560px;
    }

    .jj-route {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0;
      margin-top: 84px;
      border: 1px solid rgba(129, 87, 255, 0.3);
      background: rgba(11, 7, 23, 0.72);
      backdrop-filter: blur(14px);
    }

    .jj-route::before {
      content: "";
      position: absolute;
      left: 6%;
      right: 6%;
      top: 52px;
      height: 2px;
      background: linear-gradient(90deg, #d64de8, #5f6cff, #22d3ee);
      opacity: 0.75;
    }

    .jj-route-step {
      min-height: 300px;
      padding: 34px 28px;
      background: transparent;
      border-width: 0 1px 0 0;
      box-shadow: none;
    }

    .jj-route-step:last-child {
      border-right: 0;
    }

    .jj-route-step span {
      position: relative;
      z-index: 1;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 72px;
      border-radius: 50%;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      background: linear-gradient(135deg, #df4dde, #2fd5ff);
      box-shadow: 0 0 36px rgba(129, 87, 255, 0.5);
    }

    .jj-route-step strong {
      display: block;
      margin: 10px 0 16px;
      color: #fff;
      font-size: clamp(24px, 2.2vw, 36px);
      line-height: 1.05;
    }

    .jj-work-section {
      position: relative;
      overflow: hidden;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(4, 4, 7, 0.2), rgba(4, 4, 7, 0.2)),
        url("../images/fwnr-bj.jpg");
      background-size: cover;
      background-position: center;
    }

    .jj-work-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 18%, rgba(166, 104, 255, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
      pointer-events: none;
    }

    .jj-work-section .bd-section-inner {
      position: relative;
      z-index: 1;
      max-width: 1380px;
    }

    .jj-work-head {
      max-width: 860px;
      margin: 0 auto;
    }

    .jj-work-head .bd-kicker {
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.78);
      letter-spacing: 0.16em;
    }

    .jj-work-head .bd-section-title {
      font-size: clamp(54px, 7vw, 104px);
      line-height: 0.96;
    }

    .jj-work-head p:not(.bd-kicker) {
      max-width: 760px;
      margin: 22px auto 0;
      color: rgba(247, 243, 255, 0.7);
      font-size: clamp(16px, 1.15vw, 19px);
      font-weight: 720;
      line-height: 1.75;
    }

    .jj-work-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      margin-top: clamp(54px, 6vw, 92px);
      border: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .jj-work-step {
      position: relative;
      min-height: 286px;
      padding: 46px 30px 38px;
      border-right: 0;
      text-align: center;
      transition: transform 360ms ease, background 360ms ease;
    }

    .jj-work-step:last-child {
      border-right: 0;
    }

    .jj-work-step::before {
      content: "⌖";
      display: grid;
      place-items: center;
      width: 58px;
      height: 58px;
      margin: 0 auto 24px;
      color: #fff;
      font-size: 28px;
      font-weight: 900;
      border: 1px solid rgba(255, 255, 255, 0.64);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
      transition: transform 360ms ease, border-color 360ms ease, box-shadow 360ms ease, background 360ms ease;
    }

    .jj-work-step:nth-child(2)::before { content: "◈"; }
    .jj-work-step:nth-child(3)::before { content: "▣"; }
    .jj-work-step:nth-child(4)::before { content: "◎"; }
    .jj-work-step:nth-child(5)::before { content: "↗"; }

    .jj-work-step span {
      display: none;
    }

    .jj-work-step b {
      display: block;
      color: rgba(255, 255, 255, 0.58);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .jj-work-step h3 {
      margin: 12px 0 12px;
      color: #fff;
      font-size: clamp(24px, 2vw, 34px);
      font-weight: 950;
      line-height: 1.08;
    }

    .jj-work-step p {
      max-width: 220px;
      margin: 0 auto;
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px;
      font-weight: 680;
      line-height: 1.65;
    }

    .jj-work-step:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.04);
    }

    .jj-work-step:hover::before {
      transform: translateY(-4px) scale(1.06);
      border-color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 22px 52px rgba(150, 98, 255, 0.34);
    }

    .jj-work-step:hover h3,
    .jj-work-step:hover p,
    .jj-work-step:hover b {
      color: #fff;
    }

    .jj-work-grid.reveal .jj-work-step {
      opacity: 0;
      transform: translate3d(0, 46px, 0);
      transition:
        opacity 820ms cubic-bezier(.16, 1, .3, 1),
        transform 820ms cubic-bezier(.16, 1, .3, 1);
      transition-delay: calc(var(--work-delay, 0) * 1ms);
    }

    .jj-work-grid.reveal.is-visible .jj-work-step {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }

    .jj-work-step:nth-child(1) { --work-delay: 80; }
    .jj-work-step:nth-child(2) { --work-delay: 170; }
    .jj-work-step:nth-child(3) { --work-delay: 260; }
    .jj-work-step:nth-child(4) { --work-delay: 350; }
    .jj-work-step:nth-child(5) { --work-delay: 440; }

    .jj-detail-section {
      padding-top: clamp(88px, 8vw, 140px);
    }

    .jj-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 64px;
    }

    .jj-detail-card {
      min-height: 260px;
      padding: 34px;
    }

    .jj-detail-card h3 {
      margin: 42px 0 16px;
      color: #fff;
      font-size: clamp(26px, 2.3vw, 38px);
      line-height: 1.08;
    }

    .jj-explore-section {
      overflow: hidden;
      background: #050507;
    }

    .jj-explore-section .bd-section-inner {
      max-width: none;
      width: 100%;
    }

    .jj-explore-layout {
      display: grid;
      grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
      min-height: clamp(520px, 54vw, 760px);
      align-items: center;
    }

    .jj-explore-copy {
      display: flex;
      min-height: clamp(520px, 54vw, 760px);
      flex-direction: column;
      justify-content: center;
      padding: clamp(44px, 6vw, 92px) clamp(28px, 5vw, 86px);
      background: rgba(255, 255, 255, 0.035);
      box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.05);
    }

    .jj-explore-copy .bd-kicker {
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.58);
      letter-spacing: 0.16em;
    }

    .jj-explore-copy .bd-section-title {
      max-width: 620px;
      font-size: clamp(42px, 4.4vw, 76px);
      line-height: 1.05;
    }

    .jj-explore-copy .bd-section-title span {
      display: block;
      white-space: nowrap;
    }

    .jj-explore-copy p:not(.bd-kicker) {
      max-width: 520px;
      margin: 30px 0 0;
      color: rgba(255, 255, 255, 0.66);
      font-size: clamp(16px, 1.1vw, 19px);
      font-weight: 700;
      line-height: 1.8;
    }

    .jj-explore-link {
      display: inline-flex;
      align-items: center;
      gap: 22px;
      width: fit-content;
      margin-top: 42px;
      color: #fff;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .jj-explore-link span {
      width: 92px;
      height: 2px;
      background: rgba(255, 255, 255, 0.72);
      transition: width 280ms ease, background 280ms ease;
    }

    .jj-explore-link:hover span {
      width: 124px;
      background: #fff;
    }

    .jj-explore-stage {
      min-width: 0;
      align-self: center;
    }

    .jj-explore-window {
      width: 100%;
      overflow-x: auto;
      overflow-y: visible;
      padding: clamp(34px, 5vw, 74px) 0 clamp(34px, 5vw, 74px) clamp(26px, 4vw, 70px);
      scrollbar-width: none;
    }

    .jj-explore-window::-webkit-scrollbar {
      display: none;
    }

    .jj-explore-track {
      display: flex;
      width: max-content;
      gap: clamp(18px, 2vw, 30px);
      animation: jjExploreScroll 48s linear infinite;
      will-change: transform;
    }

    .jj-explore-window:hover .jj-explore-track {
      animation-play-state: paused;
    }

    .jj-explore-window.is-manual .jj-explore-track {
      animation: none;
      transform: none;
    }

    @keyframes jjExploreScroll {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-1 * var(--explore-distance, 50%))); }
    }

    .jj-explore-card {
      position: relative;
      display: flex;
      width: min(360px, 26vw);
      min-width: 300px;
      min-height: clamp(420px, 42vw, 560px);
      flex: 0 0 auto;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      padding: clamp(34px, 3vw, 54px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.26), rgba(197, 82, 255, 0.52) 30%, rgba(72, 104, 255, 0.48) 56%, rgba(10, 210, 255, 0.2) 76%, rgba(9, 7, 24, 0.9)),
        rgba(124, 72, 255, 0.28);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -130px 120px rgba(4, 2, 12, 0.66),
        inset 0 0 46px rgba(255, 255, 255, 0.08),
        0 34px 92px rgba(110, 60, 255, 0.28);
      backdrop-filter: blur(22px) saturate(1.9);
      transition: transform 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
    }

    .jj-explore-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 18%), rgba(255, 255, 255, 0.4), transparent 23%),
        radial-gradient(circle at 20% 12%, rgba(255, 63, 235, 0.48), transparent 40%),
        radial-gradient(circle at 86% 20%, rgba(39, 229, 255, 0.36), transparent 38%),
        linear-gradient(135deg, rgba(151, 79, 255, 0.44), transparent 58%);
      opacity: 0.95;
      transition: opacity 420ms ease, transform 420ms ease;
    }

    .jj-explore-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 18% 70%, rgba(255, 255, 255, 0.08)),
        linear-gradient(180deg, transparent 42%, rgba(3, 2, 12, 0.58));
      pointer-events: none;
    }

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

    .jj-explore-card span {
      margin-bottom: 14px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .jj-explore-card i {
      position: absolute;
      left: clamp(30px, 3vw, 54px);
      top: clamp(30px, 3vw, 54px);
      z-index: 1;
      display: grid;
      place-items: center;
      width: 64px;
      height: 64px;
      color: #fff;
      font-size: 28px;
      font-style: normal;
      font-weight: 950;
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.12);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 18px 42px rgba(0, 0, 0, 0.32);
      backdrop-filter: blur(14px) saturate(1.6);
      transition: transform 420ms ease, box-shadow 420ms ease, background 420ms ease;
    }

    .jj-explore-card .jj-card-logo svg {
      width: 36px;
      height: 36px;
      color: currentColor;
      overflow: visible;
    }

    .jj-explore-card .jj-card-logo svg * {
      vector-effect: non-scaling-stroke;
    }

    .jj-logo-matrix svg rect,
    .jj-logo-matrix svg path,
    .jj-logo-website svg rect,
    .jj-logo-website svg path {
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .jj-logo-linkedin svg path,
    .jj-logo-tiktok svg path {
      fill: currentColor;
      stroke: none;
    }

    .jj-logo-youtube svg path:first-child {
      fill: currentColor;
      stroke: none;
    }

    .jj-logo-youtube svg path:last-child {
      fill: rgba(9, 7, 24, 0.92);
      stroke: none;
    }

    .jj-logo-ads svg path {
      fill: none;
      stroke: currentColor;
      stroke-width: 3.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .jj-logo-linkedin {
      color: #eaf7ff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 42px rgba(38, 170, 255, 0.28);
    }

    .jj-logo-tiktok {
      color: #fff;
      text-shadow: 2px 0 #31f6ff, -2px 0 #ff4fd8;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 42px rgba(255, 79, 216, 0.26),
        0 8px 28px rgba(49, 246, 255, 0.18);
    }

    .jj-logo-ads {
      color: #f4ecff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 42px rgba(129, 92, 255, 0.34),
        0 8px 26px rgba(255, 79, 216, 0.18);
    }

    .jj-logo-youtube {
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 18px 42px rgba(216, 91, 255, 0.3);
    }

    .jj-explore-card h3 {
      margin: 0 0 14px;
      color: #fff;
      font-size: clamp(28px, 2.15vw, 40px);
      font-weight: 950;
      line-height: 1.08;
    }

    .jj-explore-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: clamp(16px, 1vw, 19px);
      font-weight: 760;
      line-height: 1.76;
    }

    .jj-explore-card:hover {
      transform: translateY(-16px) scale(1.015);
      border-color: rgba(255, 255, 255, 0.46);
      background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.3), rgba(216, 91, 255, 0.58) 30%, rgba(82, 115, 255, 0.54) 56%, rgba(45, 236, 255, 0.26) 76%, rgba(9, 7, 24, 0.92)),
        rgba(142, 78, 255, 0.28);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -130px 130px rgba(4, 2, 12, 0.54),
        0 44px 118px rgba(148, 74, 255, 0.44);
    }

    .jj-explore-card:hover::before {
      opacity: 1;
      transform: scale(1.04);
    }

    .jj-explore-card:hover i {
      transform: translateY(-6px) scale(1.06);
      background: rgba(255, 255, 255, 0.18);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 24px 54px rgba(133, 75, 255, 0.42);
    }

    .jj-explore-controls {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      padding: 0 clamp(18px, 4vw, 70px);
      margin-top: -30px;
    }

    .jj-explore-controls button {
      min-height: 38px;
      padding: 0 16px;
      color: rgba(255, 255, 255, 0.76);
      font: inherit;
      font-size: 13px;
      font-weight: 850;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(156, 86, 255, 0.14)),
        rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(14px) saturate(1.35);
      cursor: pointer;
      transition: transform 240ms ease, color 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
    }

    .jj-explore-controls button:hover,
    .jj-explore-controls button.is-active {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.38);
      background:
        linear-gradient(135deg, rgba(255, 87, 236, 0.22), rgba(39, 224, 255, 0.18)),
        rgba(132, 76, 255, 0.22);
      box-shadow: 0 16px 36px rgba(129, 73, 255, 0.26);
      transform: translateY(-2px);
    }

    .jj-visual-section {
      padding-top: clamp(72px, 8vw, 132px);
    }

    .jj-visual-layout {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    }

    .jj-check-list {
      display: grid;
      gap: 16px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    .jj-check-list li {
      position: relative;
      padding: 18px 20px 18px 56px;
      color: rgba(248, 245, 255, 0.86);
      font-size: 18px;
      font-weight: 800;
      border: 1px solid rgba(159, 111, 255, 0.24);
      background: rgba(255, 255, 255, 0.035);
    }

    .jj-check-list li::before {
      content: "→";
      position: absolute;
      left: 20px;
      color: #b56cff;
    }

    .jj-conversion-tour {
      padding-top: clamp(72px, 8vw, 132px);
      background-image: url("../images/bj3.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .jj-conversion-tour .bd-section-inner {
      max-width: 1480px;
    }

    .jj-conversion-head {
      max-width: 880px;
      margin: 0 auto clamp(46px, 5vw, 76px);
      text-align: center;
    }

    .jj-conversion-head .bd-kicker {
      color: rgba(255, 255, 255, 0.62);
      letter-spacing: 0.16em;
    }

    .jj-conversion-head .bd-section-title {
      font-size: clamp(48px, 6vw, 92px);
      line-height: 0.98;
    }

    .jj-conversion-layout {
      display: grid;
      grid-template-columns: minmax(0, 980px);
      justify-content: center;
      justify-items: center;
      align-items: center;
      gap: clamp(34px, 5vw, 72px);
    }

    .jj-conversion-media {
      min-height: clamp(430px, 45vw, 640px);
      margin: 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 40px 110px rgba(0, 0, 0, 0.36);
    }

    .jj-conversion-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 42%, rgba(2, 1, 8, 0.72)),
        radial-gradient(circle at 82% 68%, rgba(157, 80, 255, 0.22), transparent 34%);
      pointer-events: none;
    }

    .jj-conversion-media figcaption {
      position: absolute;
      left: clamp(26px, 3vw, 52px);
      right: clamp(26px, 3vw, 52px);
      bottom: clamp(24px, 3vw, 44px);
      z-index: 2;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: #fff;
      font-weight: 900;
      letter-spacing: 0.04em;
    }

    .jj-conversion-media figcaption span {
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
      text-transform: uppercase;
    }

    .jj-conversion-media figcaption b {
      font-size: clamp(15px, 1.15vw, 19px);
    }

    .jj-conversion-list {
      display: grid;
      width: min(980px, 100%);
      align-content: center;
      gap: 18px;
    }

    .jj-conversion-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 22px;
      align-items: center;
      min-height: 118px;
      padding: 24px 28px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: transparent;
      transition: transform 360ms ease, border-color 360ms ease, background 360ms ease, box-shadow 360ms ease;
    }

    .jj-conversion-item span {
      color: rgba(255, 255, 255, 0.62);
      font-size: 18px;
      font-weight: 950;
      letter-spacing: 0.08em;
    }

    .jj-conversion-item h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: clamp(20px, 1.45vw, 28px);
      font-weight: 950;
      line-height: 1.15;
    }

    .jj-conversion-item p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 15px;
      font-weight: 680;
      line-height: 1.65;
    }

    .jj-conversion-item:hover,
    .jj-conversion-item.is-featured {
      transform: translateX(-18px);
      border-color: rgba(177, 111, 255, 0.5);
      background:
        linear-gradient(135deg, rgba(194, 86, 255, 0.28), rgba(64, 126, 255, 0.18)),
        rgba(255, 255, 255, 0.04);
      box-shadow: 0 24px 70px rgba(112, 67, 255, 0.24);
    }

    .jj-conversion-item:hover p,
    .jj-conversion-item.is-featured p {
      color: rgba(255, 255, 255, 0.78);
    }

    .jj-conversion-item:hover span,
    .jj-conversion-item.is-featured span {
      color: #fff;
    }

    @media (max-width: 1080px) {
      .nav {
        padding: 12px 16px;
      }
      .nav-inner {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .brand {
        order: -1;
      }
      .nav-group {
        justify-content: center;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 4px;
        font-size: 13px;
        scrollbar-width: none;
      }
      .nav-group::-webkit-scrollbar { display: none; }
      .nav-submenu {
        display: none;
      }
      .hero-foot,
      .split,
      .pain-intro,
      .case-head {
        grid-template-columns: 1fr;
      }
      .pain-tagline {
        width: calc(100% - 48px);
        max-width: 760px;
        margin: 42px auto 0 24px;
        text-align: left;
      }
      .pain-intro .section-title {
        max-width: 680px;
        font-size: clamp(44px, 5.7vw, 60px);
        line-height: 1.04;
      }
      .pain-panel {
        padding-inline: 0;
      }
      .pain-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: clamp(180px, 25vw, 240px);
        width: calc(100% - 48px);
      }
      .pain-mosaic-01,
      .pain-mosaic-07 {
        grid-column: auto;
        grid-row: span 1;
      }
      .pain-mosaic-02,
      .pain-mosaic-03,
      .pain-mosaic-04,
      .pain-mosaic-05,
      .pain-mosaic-06,
      .pain-mosaic .pain-tagline {
        grid-column: auto;
        grid-row: auto;
      }
      .pain-mosaic .pain-tagline {
        width: auto;
        margin: 0;
      }
      .pain-list-wrap {
        grid-template-columns: minmax(330px, 380px) minmax(300px, 350px);
        justify-content: space-between;
        gap: clamp(250px, 27vw, 330px);
        width: calc(100% - 48px);
      }
      .solution-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .solution-flow::before {
        display: none;
      }
      .service-intro {
        position: static;
      }
      .service-copy {
        max-width: calc(100vw - 48px);
      }
      .service-grid {
        grid-template-columns: repeat(7, minmax(150px, 1fr));
        max-width: none;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
      }
      .service-grid::-webkit-scrollbar {
        display: none;
      }
      .platform-grid { grid-template-columns: repeat(2, 1fr); }
      .metrics { grid-template-columns: repeat(2, 1fr); }
      .process {
        grid-template-columns: repeat(8, minmax(126px, 1fr));
        overflow-x: auto;
        padding-bottom: 14px;
        scrollbar-width: none;
      }
      .process::-webkit-scrollbar {
        display: none;
      }
      .resource-grid {
        grid-template-columns: 1fr;
      }
      .resource-card-featured {
        min-height: 560px;
      }
      .industry-giant {
        font-size: clamp(68px, 15vw, 138px);
      }
    }

    @media (max-width: 720px) {
      .nav {
        padding: 12px 14px;
        background: linear-gradient(90deg, rgba(5, 6, 24, 0.18), rgba(31, 9, 73, 0.14), rgba(5, 6, 24, 0.18));
      }
      .nav.is-menu-open,
      .nav.is-scrolled {
        background: linear-gradient(90deg, rgba(5, 6, 24, 0.26), rgba(25, 8, 62, 0.2), rgba(5, 6, 24, 0.26));
      }
      .nav-inner {
        grid-template-columns: auto auto;
        gap: 0 14px;
      }
      .brand {
        align-self: center;
      }
      .brand small { display: none; }
      .brand img {
        width: clamp(112px, 34vw, 138px);
        max-height: 38px;
      }
      .nav-toggle {
        display: inline-grid;
        align-self: center;
        justify-self: end;
        place-items: center;
        gap: 3px;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        padding: 0;
        color: #fff;
        background: rgba(255, 255, 255, 0.035);
        cursor: pointer;
      }
      .nav-toggle span {
        display: block;
        width: 15px;
        height: 1.5px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
      }
      .nav.is-menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(4.5px) rotate(45deg);
      }
      .nav.is-menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }
      .nav.is-menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-4.5px) rotate(-45deg);
      }
      .nav-group {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: 0;
        margin-top: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        font-size: 14px;
        transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease;
      }
      .nav.is-menu-open .nav-group {
        max-height: calc(100svh - 82px);
        margin-top: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        padding: 8px;
        background: rgba(5, 6, 24, 0.16);
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto;
      }
      .nav-item {
        padding: 0;
      }
      .nav-item > a {
        display: flex;
        width: 100%;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        padding: 0 14px;
        background: rgba(255, 255, 255, 0.035);
      }
      .hero {
        min-height: 100svh;
        padding: 96px 18px 44px;
        align-items: start;
        background-position: center top;
      }
      .hero-announcement {
        gap: 10px;
        margin-bottom: 24px;
        padding: 10px 12px;
        justify-content: center;
        text-align: center;
      }
      .hero-announcement span {
        padding: 5px 10px;
      }
      .hero-inner {
        padding-top: 0;
      }
      .hero-title {
        font-size: clamp(40px, 11vw, 64px);
      }
      .hero-title span {
        white-space: normal;
      }
      .solution-heading {
        font-size: clamp(46px, 14.5vw, 72px);
      }
      .contact-title {
        font-size: clamp(42px, 11vw, 64px);
      }
      .contact-title span {
        white-space: normal;
      }
      .solution-flow {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 38px;
        padding-top: 18px;
      }
      .solution-step {
        min-height: 0;
        padding: 0 0 0 78px;
      }
      .pain-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(176px, auto);
        width: calc(100% - 36px);
        margin-top: 54px;
      }
      .pain-mosaic-card {
        min-height: 176px;
        padding: 28px 24px;
      }
      .pain-tagline {
        width: calc(100% - 36px);
        margin: 34px auto 0 18px;
      }
      .pain-mosaic .pain-tagline {
        width: auto;
        margin: 0;
        display: none;
      }
      .pain-tagline strong {
        font-size: clamp(24px, 7vw, 36px);
      }
      .pain-mosaic .pain-tagline strong {
        display: none;
      }
      .solution-step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
      }
      .service-copy strong {
        font-size: clamp(17px, 5.4vw, 24px);
        line-height: 1.18;
        white-space: normal;
      }
      .service-copy span {
        white-space: normal;
      }
      .service-grid {
        grid-template-columns: repeat(7, minmax(150px, 1fr));
        gap: 22px;
        margin-top: 54px;
        overflow-x: auto;
        padding-bottom: 12px;
      }
      .service-grid li,
      .service-grid li:nth-child(7) {
        grid-column: auto;
        max-width: none;
        min-height: 220px;
      }
      .service-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
      }
      .service-icon svg {
        width: 32px;
        height: 32px;
      }
      .resource-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }
      .resource-card-featured {
        min-height: 500px;
        grid-template-rows: minmax(260px, 1fr) auto;
      }
      .resource-card-row {
        grid-template-columns: 1fr;
      }
      .resource-card-media {
        min-height: 220px;
      }
      .hero-foot {
        gap: 24px;
        margin-top: 42px;
      }
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
      }
      .hero-actions .link-line {
        width: 100%;
        justify-content: center;
      }
      .page-section {
        padding: 78px 18px;
      }
      #metrics {
        padding-top: 39px;
      }
      #process {
        padding-top: 39px;
      }
      #resources {
        padding-top: 39px;
      }
      #pain {
        padding-left: 0;
        padding-right: 0;
        padding-top: 84px;
        padding-bottom: 0;
        min-height: 0;
      }
      .pain-intro {
        width: calc(100% - 36px);
        gap: 26px;
      }
      .pain-intro .section-title {
        max-width: 100%;
        font-size: clamp(34px, 9.2vw, 48px);
        line-height: 1.08;
      }
      .pain-title span {
        white-space: normal;
      }
      .pain-tagline span {
        font-size: 17px;
      }
      .pain-panel {
        gap: 28px;
        min-height: 720px;
        margin-top: 54px;
        padding: 72px 18px 340px;
        background-size: auto 100%;
        background-position: center top;
      }
      .pain-list-wrap {
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
      }
      #pain .pain-list-left,
      #pain .pain-list-right {
        text-align: left;
      }
      #pain .pain-list li {
        font-size: clamp(18px, 5vw, 24px);
        font-weight: 620;
        white-space: normal;
      }
      .pain-list-main,
      .pain-list-en {
        white-space: normal;
      }
      .pain-list-en {
        padding-left: 0;
        font-size: 12px;
      }
      #industries {
        padding-top: 48px;
      }
      .industry-stage {
        min-height: 235px;
      }
      .industry-showcase {
        width: calc(100% - 36px);
        min-height: 0;
        margin-top: 34px;
      }
      .industry-giant {
        gap: 10px;
        font-size: clamp(54px, 16vw, 92px);
      }
      .industry-giant-row {
        display: grid;
        gap: 8px;
      }
      .industry-cn {
        left: 0;
        top: 58%;
        width: 100%;
        font-size: clamp(40px, 13vw, 66px);
        text-align: left;
        transform: translateY(calc(-38% + var(--title-lift)));
      }
      .industry-title-line {
        white-space: normal;
      }
      .industry-note {
        margin-top: 18px;
      }
      .platform-grid,
      .case-grid,
      .metrics,
      .lead-form {
        grid-template-columns: 1fr;
      }
      .process {
        grid-template-columns: repeat(8, minmax(138px, 1fr));
        overflow-x: auto;
        padding-bottom: 14px;
      }
      .metric {
        min-height: 220px;
      }
      .metric-en {
        max-width: 210px;
      }
      .process-step::after {
        content: "";
        inset: 1px 31px 1px 31px;
      }
      .process-step:last-child::after {
        content: "";
      }
      .case-card {
        min-height: 390px;
      }
      .pain-list li,
      .solution-list li,
      .service-list li {
        grid-template-columns: 44px 1fr;
        gap: 14px;
      }
      .platform {
        min-height: 260px;
      }
      .process-step {
        min-height: 190px;
      }
      .footer-inner {
        grid-template-columns: 1fr;
      }
      .footer-nav {
        grid-template-columns: 1fr;
      }
      .footer-terra {
        min-height: auto;
        padding-top: 82px;
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
      }
      .footer-terra-cta {
        margin-bottom: 0;
      }
      .footer-terra-panel {
        display: none;
      }
      .footer-terra-top {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      .footer-terra-top i {
        width: 100%;
      }
      .footer-terra-nav,
      .footer-terra-contact {
        grid-template-columns: 1fr;
      }
      .footer-terra-brand {
        font-size: clamp(46px, 13.5vw, 108px);
        letter-spacing: 0;
        bottom: 0;
      }
      .footer-call-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        width: 100%;
        max-width: none;
        padding: 7px 0 max(7px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 0;
        background: rgba(8, 6, 20, 0.9);
        box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(18px);
      }
      .footer-call-bar a {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        justify-items: center;
        gap: 5px;
        min-height: 54px;
        border: 0;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.9);
        background: transparent;
        font-size: 12px;
        font-weight: 500;
        text-decoration: none;
      }
      .footer-call-icon {
        position: relative;
        display: block;
        width: 15px;
        height: 22px;
        border: 1.8px solid currentColor;
        border-radius: 4px;
        background: transparent;
        opacity: 0.92;
      }
      .footer-call-icon::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 2px;
        width: 5px;
        height: 1.4px;
        border-radius: 999px;
        background: currentColor;
        transform: translateX(-50%);
      }
      .footer-call-icon::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 2px;
        width: 3px;
        height: 3px;
        border-radius: 999px;
        background: currentColor;
        transform: translateX(-50%);
      }
      .contact-card {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .footer-bottom {
        flex-direction: column;
      }
      .bd-hero {
        min-height: 86vh;
        padding-top: 136px;
      }
      .bd-hero-title span {
        white-space: normal;
      }
      .bd-section-head,
      .bd-diagnosis-grid {
        grid-template-columns: 1fr;
      }
      .bd-action-layout,
      .bd-action-details {
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .jj-solution-grid,
      .jj-detail-grid,
      .jj-route-layout,
      .jj-visual-layout,
      .jj-explore-layout,
      .jj-conversion-layout {
        grid-template-columns: 1fr;
      }
      .jj-conversion-item {
        transform: none;
      }
      .jjfa-page .jj-conversion-tour {
        position: relative;
        background-image:
          linear-gradient(180deg, rgba(4, 2, 14, 0.9), rgba(8, 21, 54, 0.9)),
          url("../images/bj3.jpg");
      }
      .jjfa-page .jj-conversion-tour::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(circle at 50% 20%, rgba(66, 113, 255, 0.22), transparent 34%),
          linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.72));
        pointer-events: none;
      }
      .jjfa-page .jj-conversion-tour .bd-section-inner {
        position: relative;
        z-index: 1;
      }
      .jjfa-page .jj-conversion-item {
        border-color: rgba(255, 255, 255, 0.16);
        background:
          linear-gradient(135deg, rgba(24, 38, 84, 0.72), rgba(8, 6, 22, 0.88)),
          rgba(8, 6, 22, 0.82);
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
        backdrop-filter: blur(12px);
      }
      .jjfa-page .jj-conversion-item p {
        color: rgba(255, 255, 255, 0.78);
      }
      .jj-conversion-item:hover,
      .jj-conversion-item.is-featured {
        transform: translateY(-4px);
      }
      .jj-explore-copy {
        min-height: auto;
      }
      .jj-explore-stage {
        min-width: 0;
      }
      .jj-explore-window {
        overflow-x: auto;
        padding: 28px 18px 68px;
      }
      .jj-explore-window::-webkit-scrollbar {
        display: none;
      }
      .jj-explore-track {
        animation-duration: 30s;
      }
      .jj-explore-card {
        width: min(78vw, 340px);
        min-width: min(78vw, 340px);
        min-height: 430px;
      }
      .jj-route {
        grid-template-columns: repeat(5, minmax(230px, 1fr));
        overflow-x: auto;
      }
      .jj-work-grid {
        grid-template-columns: repeat(5, minmax(220px, 1fr));
        overflow-x: auto;
        text-align: center;
      }
      .jj-work-step {
        min-height: 270px;
      }
      .jj-image-panel {
        min-height: 420px;
      }
      .jj-hero .bd-hero-title,
      .jj-route-copy .bd-section-title,
      .jj-visual-copy .bd-section-title {
        font-size: clamp(48px, 11vw, 82px);
      }
      .jjfa-page .jj-hero .bd-hero-title {
        font-size: clamp(32px, 9vw, 44px);
        line-height: 1.16;
      }
      .jjfa-page .jj-hero .bd-hero-title span {
        white-space: nowrap;
      }
      .jjfa-page .bd-section-head-center .bd-section-copy {
        font-size: clamp(15px, 3.8vw, 16px);
        line-height: 1.72;
        font-weight: 680;
      }
      .jjfa-page .jj-conversion-head .bd-section-title {
        font-size: clamp(38px, 10vw, 44px);
        line-height: 1.12;
      }
      .jjfa-page .jj-conversion-head .bd-section-title span {
        white-space: nowrap;
      }
      .jjfa-page .bd-cta-panel .bd-two-line-title {
        font-size: clamp(26px, 7vw, 30px) !important;
        line-height: 1.2;
        word-break: keep-all;
      }
      .jjfa-page .bd-cta-panel .bd-two-line-title span {
        white-space: nowrap !important;
      }
      .bd-action-copy .bd-section-title {
        font-size: clamp(42px, 11vw, 68px);
      }
      .bd-action-photo {
        min-height: 360px;
      }
      .bd-action-details {
        margin-top: 64px;
      }
      .bd-action-table div {
        grid-template-columns: 1fr;
        gap: 6px;
      }
      .bd-action-table dd {
        text-align: left;
      }
      .bd-pain-grid,
      .bd-platform-grid,
      .bd-solution-list {
        grid-template-columns: 1fr;
      }
      .bd-pain-card {
        min-height: 280px;
      }
      .bd-diagnosis-media {
        min-height: 420px;
      }
      .bd-cta-panel {
        padding-inline: 24px;
      }
      .bd-collage {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }
      .bd-collage-item {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
      }
      .bd-collage-01 .bd-collage-copy h2 {
        white-space: normal;
      }
      .bd-collage-02,
      .bd-collage-05,
      .bd-collage-06 {
        min-height: 420px;
      }
      .jj-solution-card,
      .jj-detail-card {
        min-height: 260px;
      }
      .jjfa-page .jj-solution-grid {
        display: flex;
        flex-direction: column;
        grid-auto-rows: auto;
        gap: 18px;
      }
      .jj-solution-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        min-height: 420px;
      }
      .jjfa-page .jj-solution-card:nth-child(n) {
        display: flex;
        min-height: 390px;
        padding: 28px;
        flex-direction: column;
        justify-content: flex-end;
        align-content: initial;
      }
      .jjfa-page .jj-solution-card:nth-child(n)::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(5, 2, 12, 0.08) 0%, rgba(5, 2, 12, 0.22) 42%, rgba(5, 2, 12, 0.9) 100%);
        pointer-events: none;
      }
      .jjfa-page .jj-solution-card:nth-child(n) > * {
        position: relative;
        z-index: 2;
      }
      .jjfa-page .jj-solution-card .jj-card-index {
        left: 28px;
        top: 24px;
      }
      .jjfa-page .jj-solution-card:nth-child(n) h3 {
        display: block;
        max-width: 100%;
        margin: 0 0 10px;
        color: #fff;
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.12;
        white-space: normal;
      }
      .jjfa-page .jj-solution-card:nth-child(n) b {
        display: block;
        margin-bottom: 12px;
        font-size: 12px;
      }
      .jjfa-page .jj-solution-card:nth-child(n) p {
        display: block;
        max-width: 100%;
        margin: 0;
        font-size: 15px;
        line-height: 1.62;
      }
      .jj-solution-card:nth-child(2),
      .jj-solution-card:nth-child(4) {
        padding: clamp(24px, 6vw, 34px);
      }
      .jj-solution-card:nth-child(2) h3,
      .jj-solution-card:nth-child(4) h3,
      .jj-solution-card:nth-child(3) h3 {
        max-width: 100%;
        font-size: clamp(25px, 7vw, 34px);
        white-space: normal;
      }
      .jj-solution-card:nth-child(2) b,
      .jj-solution-card:nth-child(4) b {
        margin-bottom: 14px;
        font-size: 12px;
      }
      .jj-solution-card:nth-child(2) p,
      .jj-solution-card:nth-child(4) p {
        display: block;
      }
      .jj-route {
        margin-top: 48px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
      }
      .reveal,
      .motion-item,
      .tilt-item,
      .hero-title span,
      .bd-hero-title span {
        opacity: 1;
        transform: none;
        filter: none;
        clip-path: none;
      }
      .bd-hero::after {
        display: none;
      }
    }

/* fwnr.html 页面样式 */
    .fwnr-page {
      background:
        radial-gradient(circle at 18% 10%, rgba(37, 216, 255, 0.12), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 224, 109, 0.1), transparent 24%),
        #05020c;
    }

    .bd-hero.fwnr-hero,
    .bd-hero.fwnr-hero.bg-ready {
      min-height: 92vh;
      background: url("../images/banner-fwnr.jpg") center / cover no-repeat;
    }

    .bd-hero.fwnr-hero::before,
    .bd-hero.fwnr-hero::after {
      display: none;
    }

    .fwnr-hero .bd-hero-title {
      font-size: clamp(50px, 7.5vw, 126px);
    }

    .fwnr-hero .bd-hero-copy {
      max-width: 860px;
    }

    .fwnr-overview {
      background:
        linear-gradient(180deg, rgba(5, 2, 12, 0.78), rgba(5, 2, 12, 0.9)),
      url("../images/bj6.jpg") center / cover no-repeat,
        linear-gradient(180deg, #05020c 0%, #0a0618 100%);
    }

    .fwnr-overview-title {
      font-size: clamp(40px, 5.8vw, 88px);
      line-height: 1.02;
    }

    .fwnr-overview-title span {
      white-space: nowrap;
    }

    .fwnr-service-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: clamp(46px, 6vw, 92px) clamp(56px, 8vw, 128px);
      padding: clamp(44px, 6vw, 82px) clamp(28px, 7vw, 116px);
      min-height: 720px;
      overflow: hidden;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .fwnr-service-grid::before,
    .fwnr-service-grid::after {
      display: none;
    }

    .fwnr-service-grid.reveal {
      opacity: 1;
      transform: none;
    }

    .fwnr-service-card {
      position: relative;
      display: grid;
      justify-items: center;
      align-content: start;
      gap: 16px;
      min-height: 230px;
      opacity: 0;
      text-align: center;
      transform: translateY(34px) scale(0.97);
      transition:
        opacity 760ms cubic-bezier(.16, 1, .3, 1),
        transform 760ms cubic-bezier(.16, 1, .3, 1);
      transition-delay: var(--service-delay, 0ms);
    }

    .fwnr-service-grid.reveal.is-visible .fwnr-service-card {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .fwnr-service-card:nth-child(1) { --service-delay: 0ms; grid-column: 1 / span 3; }
    .fwnr-service-card:nth-child(2) { --service-delay: 120ms; grid-column: 4 / span 3; }
    .fwnr-service-card:nth-child(3) { --service-delay: 240ms; grid-column: 1 / span 2; }
    .fwnr-service-card:nth-child(4) { --service-delay: 360ms; grid-column: 3 / span 2; }
    .fwnr-service-card:nth-child(5) {
      --service-delay: 480ms;
      grid-column: 5 / span 2;
    }

    .fwnr-service-icon {
      width: clamp(72px, 8vw, 112px);
      aspect-ratio: 1;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 24px 32px rgba(76, 47, 214, 0.36));
      animation: fwnrIconFloat 4.8s ease-in-out infinite alternate;
      animation-delay: var(--icon-delay, 0ms);
    }

    .fwnr-service-card:nth-child(2) .fwnr-service-icon { --icon-delay: 420ms; }
    .fwnr-service-card:nth-child(3) .fwnr-service-icon { --icon-delay: 840ms; }
    .fwnr-service-card:nth-child(4) .fwnr-service-icon { --icon-delay: 1260ms; }
    .fwnr-service-card:nth-child(5) .fwnr-service-icon { --icon-delay: 1680ms; }

    .fwnr-service-card span {
      color: rgba(37, 216, 255, 0.86);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .fwnr-service-card h3 {
      margin: 0;
      color: #fff;
      font-size: clamp(22px, 2vw, 30px);
      font-weight: 950;
      line-height: 1.12;
    }

    .fwnr-service-card p {
      margin: 0;
      color: rgba(247, 243, 255, 0.68);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.62;
    }

    .fwnr-detail-section {
      background:
        radial-gradient(circle at 10% 18%, rgba(255, 224, 109, 0.08), transparent 24%),
        #070412;
    }

    .fwnr-detail-title {
      font-size: clamp(38px, 5.2vw, 82px);
      line-height: 1.02;
    }

    .fwnr-detail-title span {
      white-space: nowrap;
    }

    .fwnr-detail-note {
      align-self: end;
      display: grid;
      gap: 18px;
    }

    .fwnr-detail-en {
      margin: 0;
      max-width: 720px;
      color: rgba(247, 243, 255, 0.84);
      font-size: clamp(18px, 2vw, 30px);
      font-weight: 900;
      line-height: 1.22;
      text-transform: uppercase;
    }

    .fwnr-detail-en span {
      display: block;
      color: rgba(37, 216, 255, 0.9);
      font-size: clamp(12px, 0.9vw, 15px);
      letter-spacing: 0.16em;
      margin-bottom: 10px;
    }

    .fwnr-detail-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .fwnr-detail-tags span {
      padding: 9px 12px;
      color: rgba(247, 243, 255, 0.78);
      background: rgba(255, 255, 255, 0.065);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fwnr-detail-list {
      position: relative;
      display: grid;
      gap: clamp(22px, 3vw, 34px);
      overflow: hidden;
    }

    .fwnr-detail-list::before {
      display: none;
    }

    .fwnr-detail-item {
      position: relative;
      display: grid;
      grid-template-columns: minmax(180px, 0.5fr) minmax(320px, 1fr) minmax(260px, 0.8fr);
      gap: clamp(24px, 4vw, 68px);
      align-items: start;
      padding: clamp(28px, 3.4vw, 48px) 0;
      overflow: hidden;
      isolation: isolate;
      background: linear-gradient(90deg, transparent 0%, rgba(10, 51, 102, 0.46) 10%, rgba(35, 15, 92, 0.42) 50%, rgba(10, 31, 82, 0.42) 90%, transparent 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .fwnr-detail-item::before,
    .fwnr-detail-item::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    .fwnr-detail-item::before {
      background:
        radial-gradient(circle at var(--glow-x, 14%) 24%, rgba(37, 216, 255, 0.34), transparent 30%),
        radial-gradient(circle at calc(var(--glow-x, 14%) + 34%) 78%, rgba(180, 92, 255, 0.32), transparent 28%),
        linear-gradient(100deg, transparent 0%, rgba(37, 216, 255, 0.18) 16%, rgba(180, 92, 255, 0.12) 58%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
      opacity: 0.96;
      animation: fwnrDetailGlow 9s ease-in-out infinite alternate;
    }

    .fwnr-detail-item::after {
      background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.08) 44%, transparent 62%);
      opacity: 0;
      transform: translateX(-80%);
      animation: fwnrDetailScan 7s ease-in-out infinite;
      animation-delay: var(--scan-delay, 0ms);
    }

    .fwnr-detail-item:nth-child(2) { --glow-x: 28%; --scan-delay: 700ms; }
    .fwnr-detail-item:nth-child(3) { --glow-x: 44%; --scan-delay: 1400ms; }
    .fwnr-detail-item:nth-child(4) { --glow-x: 60%; --scan-delay: 2100ms; }
    .fwnr-detail-item:nth-child(5) { --glow-x: 72%; --scan-delay: 2800ms; }

    .fwnr-detail-item:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .fwnr-detail-index {
      display: grid;
      gap: 12px;
      padding-left: clamp(20px, 3vw, 56px);
      color: rgba(247, 243, 255, 0.48);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .fwnr-detail-index b {
      color: #fff;
      font-size: clamp(42px, 4.6vw, 78px);
      line-height: 0.9;
    }

    .fwnr-detail-copy h3 {
      margin: 0 0 16px;
      color: #fff;
      font-size: clamp(30px, 3.4vw, 56px);
      font-weight: 950;
      line-height: 1.05;
    }

    .fwnr-detail-copy p,
    .fwnr-deliverables li,
    .fwnr-process-step p {
      color: rgba(247, 243, 255, 0.72);
      font-size: 16px;
      font-weight: 700;
      line-height: 1.75;
    }

    .fwnr-detail-copy p {
      margin: 0;
    }

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

    .fwnr-deliverables li {
      position: relative;
      padding-left: 22px;
    }

    .fwnr-deliverables li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 12px;
      width: 8px;
      height: 8px;
      background: linear-gradient(135deg, var(--accent-2), var(--accent));
    }

    @keyframes fwnrGridDrift {
      from { background-position: 0 0, 0 0; }
      to { background-position: 72px 72px, -72px 72px; }
    }

    @keyframes fwnrIconFloat {
      from {
        transform: translateY(0);
      }
      to {
        transform: translateY(-12px);
      }
    }

    @keyframes fwnrDetailGlow {
      from {
        opacity: 0.55;
        transform: translate3d(-18px, 0, 0);
      }
      to {
        opacity: 0.92;
        transform: translate3d(18px, 0, 0);
      }
    }

    @keyframes fwnrDetailScan {
      0%, 34% {
        opacity: 0;
        transform: translateX(-80%);
      }
      48% {
        opacity: 0.75;
      }
      72%, 100% {
        opacity: 0;
        transform: translateX(80%);
      }
    }

    .fwnr-process {
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.78), rgba(5, 2, 12, 0.9)),
        url("../images/bj.jpg") center / cover no-repeat,
        linear-gradient(180deg, #070412, #05020c);
    }

    .fwnr-process-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(16px, 2.2vw, 28px);
      max-width: 1280px;
      margin: 0 auto;
    }

    .fwnr-process-grid.reveal {
      opacity: 1;
      transform: none;
    }

    .fwnr-process-grid::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 50%;
      height: 3px;
      background: linear-gradient(90deg, rgba(180, 92, 255, 0.2), rgba(37, 216, 255, 0.9), rgba(180, 92, 255, 0.8));
      box-shadow: 0 0 22px rgba(37, 216, 255, 0.3);
      opacity: 0;
      transform: translateY(-50%) scaleX(0.08);
      transform-origin: left center;
      transition: opacity 640ms ease 80ms, transform 1180ms cubic-bezier(.16, 1, .3, 1) 80ms;
    }

    .fwnr-process-grid.reveal.is-visible::before {
      opacity: 1;
      transform: translateY(-50%) scaleX(1);
    }

    .fwnr-process-step {
      --flow-color: #b45cff;
      --flow-soft: rgba(180, 92, 255, 0.2);
      position: relative;
      z-index: 1;
      min-height: 250px;
      padding: clamp(26px, 2.8vw, 38px) clamp(18px, 1.9vw, 26px);
      background:
        radial-gradient(circle at 18% 14%, var(--flow-soft), transparent 42%),
        linear-gradient(145deg, rgba(22, 14, 50, 0.9), rgba(7, 4, 18, 0.95));
      border: 1px solid color-mix(in srgb, var(--flow-color) 58%, rgba(255, 255, 255, 0.12));
      border-radius: 16px;
      display: grid;
      align-content: center;
      gap: 20px;
      color: #fff;
      box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -34px 60px rgba(2, 0, 10, 0.28);
      backdrop-filter: blur(14px);
      opacity: 0;
      transform: translateX(-42px) scale(0.97);
      transition:
        opacity 760ms cubic-bezier(.16, 1, .3, 1),
        transform 760ms cubic-bezier(.16, 1, .3, 1),
        border-color 260ms ease,
        box-shadow 260ms ease;
      transition-delay: var(--flow-delay, 0ms);
    }

    .fwnr-process-step:nth-child(2) {
      --flow-color: #25d8ff;
      --flow-soft: rgba(37, 216, 255, 0.18);
      --flow-delay: 140ms;
    }

    .fwnr-process-step:nth-child(3) {
      --flow-color: #7c6dff;
      --flow-soft: rgba(124, 109, 255, 0.18);
      --flow-delay: 280ms;
    }

    .fwnr-process-step:nth-child(4) {
      --flow-color: #d86cff;
      --flow-soft: rgba(216, 108, 255, 0.18);
      --flow-delay: 420ms;
    }

    .fwnr-process-grid.reveal.is-visible .fwnr-process-step {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .fwnr-process-step::before,
    .fwnr-process-step::after {
      content: "";
      position: absolute;
      top: 50%;
      z-index: 2;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .fwnr-process-step::before {
      left: -11px;
      width: 16px;
      height: 16px;
      border: 3px solid var(--flow-color);
      border-radius: 50%;
      background: #0b071b;
      box-shadow: 0 0 0 7px #05020c;
    }

    .fwnr-process-step::after {
      right: -16px;
      width: 0;
      height: 0;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-left: 16px solid var(--flow-color);
    }

    .fwnr-process-step:last-child::after {
      display: none;
    }

    .fwnr-process-step b {
      color: var(--flow-color);
      font-size: clamp(16px, 1.6vw, 22px);
      font-weight: 950;
      letter-spacing: 0.02em;
      line-height: 1;
      text-transform: uppercase;
    }

    .fwnr-process-step h3 {
      margin: 0;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(18px, 1.55vw, 24px);
      font-weight: 950;
      line-height: 1.25;
    }

    .fwnr-process-step p {
      margin: 0;
      color: rgba(247, 243, 255, 0.66);
      font-size: clamp(13px, 1vw, 15px);
      font-weight: 760;
      line-height: 1.72;
    }

    .fwnr-fit {
      background:
        linear-gradient(90deg, rgba(12, 7, 29, 0.92), rgba(5, 2, 12, 0.96)),
        url("../images/solution-b2b-system.png") center / cover no-repeat;
    }

    .fwnr-page .cta#contact {
      background: #05020c;
    }

    .fwnr-page .cta#contact::before {
      display: none;
    }

    .fwnr-fit-panel {
      display: grid;
      grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
      gap: clamp(32px, 6vw, 96px);
      align-items: center;
    }

    .fwnr-fit-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fwnr-fit-list li {
      padding: 18px 20px;
      color: rgba(247, 243, 255, 0.82);
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      font-size: 16px;
      font-weight: 760;
      line-height: 1.55;
      backdrop-filter: blur(12px);
    }

    @media (max-width: 1180px) {
      .fwnr-service-grid {
        padding-inline: clamp(18px, 3vw, 32px);
      }

    }

    @media (max-width: 760px) {
      .fwnr-page .process-title-note strong,
      .fwnr-page .process-title-note span {
        display: none;
      }

      .fwnr-page .process-tags {
        display: none;
      }

      .fwnr-page .fwnr-detail-tags {
        display: none;
      }

      .fwnr-page .fwnr-detail-en {
        display: none;
      }

      .fwnr-page .contact-title {
        font-size: clamp(38px, 10vw, 46px);
        line-height: 1.12;
      }

      .fwnr-page .contact-title span:first-child {
        white-space: nowrap;
      }

      .fwnr-hero {
        min-height: 86vh;
      }

      .fwnr-service-grid,
      .fwnr-detail-item,
      .fwnr-process-grid,
      .fwnr-fit-panel {
        grid-template-columns: 1fr;
      }

      .fwnr-service-card {
        min-height: auto;
        gap: 18px;
      }

      .fwnr-service-card:nth-child(n) {
        grid-column: auto;
      }

      .fwnr-service-card:nth-child(5) {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
      }

      .fwnr-process-grid {
        gap: 28px;
      }

      .fwnr-process-grid::before,
      .fwnr-process-step::before,
      .fwnr-process-step::after {
        display: none;
      }

      .fwnr-process-step {
        min-height: 220px;
      }

    }

    @media (prefers-reduced-motion: reduce) {
      .fwnr-detail-list::before,
      .fwnr-detail-item::before,
      .fwnr-detail-item::after,
      .fwnr-service-icon {
        animation: none;
      }
    }
/* lxwm.html 联系我们页面专用样式 */
.lxwm-hero {
  min-height: 72vh;
}

.lxwm-hero.bg-ready {
  background:
    linear-gradient(180deg, rgba(7, 4, 18, 0.08), rgba(7, 4, 18, 0.42)),
    url("../images/banner-lxwm.jpg") center / cover no-repeat;
}

.lxwm-hero::before,
.lxwm-hero::after {
  display: none;
}

.lxwm-hero .bd-hero-title,
.lxwm-contact .bd-section-title {
  line-height: 1.14;
}

.lxwm-hero .bd-hero-title span + span,
.lxwm-contact .bd-section-title span + span {
  margin-top: 0.08em;
}

.lxwm-contact {
  background:
    radial-gradient(circle at 15% 18%, rgba(67, 210, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 189, 89, 0.12), transparent 26%),
    linear-gradient(180deg, #070412 0%, #0b071b 52%, #070412 100%);
}

.lxwm-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.lxwm-info-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.lxwm-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.085);
}

.lxwm-info-card span {
  color: rgba(247, 243, 255, 0.58);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lxwm-info-card strong,
.lxwm-info-card .lxwm-phone {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(26px, 2.45vw, 38px);
  font-weight: 950;
  line-height: 1.35;
  text-decoration: none;
  text-shadow: 0 0 24px rgba(147, 180, 255, 0.22);
}

.lxwm-phone-name {
  display: block;
}

.lxwm-info-card p {
  margin: 0;
  color: rgba(247, 243, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.lxwm-form-wrap .lead-form {
  margin-top: 0;
}

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

  .lxwm-info {
    grid-template-columns: 1fr;
  }

  .lxwm-hero .bd-hero-title span:nth-of-type(2) {
    font-size: clamp(36px, 10.8vw, 56px);
    white-space: nowrap;
  }

  .lxwm-contact .bd-section-copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .lxwm-info,
  .lxwm-form-wrap .lead-form {
    margin-top: 0;
  }
}

/* news.html */
.news-page {
  background:
    radial-gradient(circle at 12% 7%, rgba(37, 216, 255, 0.18), transparent 28vw),
    radial-gradient(circle at 88% 12%, rgba(180, 92, 255, 0.22), transparent 30vw),
    #090615;
}

.news-hero {
  min-height: 88vh;
  padding: 164px clamp(18px, 4vw, 58px) 86px;
  display: grid;
  align-items: end;
  background: url("../images/banner-news.jpg") center / cover;
}

.news-hero-inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.news-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(247, 243, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.news-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(54px, 8.6vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.news-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  margin-top: 38px;
  color: rgba(247, 243, 255, 0.78);
}

.news-hero-copy p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
}

.news-hero-tags {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: flex-end;
  gap: 10px;
  max-width: 680px;
}

.news-hero-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: rgba(247, 243, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  backdrop-filter: blur(14px);
}

.news-section {
  padding: clamp(78px, 9vw, 132px) clamp(18px, 4vw, 58px);
  position: relative;
  overflow: hidden;
}

.news-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.news-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.news-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.news-kicker {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-section-title {
  margin: 0;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.news-section-desc {
  margin: 0;
  color: rgba(247, 243, 255, 0.68);
  font-size: 15px;
  line-height: 1.9;
}

.news-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.news-card img {
  min-height: 100%;
  transition: transform 600ms ease;
}

.news-card:hover img {
  transform: scale(1.045);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: rgba(247, 243, 255, 0.56);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.news-chip {
  color: #090615;
  background: linear-gradient(135deg, #ffe06d, #25d8ff);
  padding: 6px 9px;
  border-radius: 999px;
}

.news-card h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.25;
  letter-spacing: 0;
}

.news-card p {
  margin: 0;
  color: rgba(247, 243, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.policy-feature {
  min-height: 520px;
}

.policy-feature .policy-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
  max-width: 640px;
  padding: 24px;
  background: rgba(9, 6, 21, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.policy-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(5, 3, 13, 0.88));
}

.policy-stack {
  display: grid;
  gap: 22px;
}

.policy-mini {
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 249px;
}

.policy-mini-copy {
  padding: 22px;
  align-self: end;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.lead-card {
  min-height: 420px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lead-card:nth-child(2) {
  transform: translateY(46px);
}

.lead-figure {
  aspect-ratio: 1.25;
  margin: -26px -26px 24px;
  overflow: hidden;
}

.lead-number {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 950;
  line-height: 0.8;
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.social-cover {
  min-height: 580px;
  display: grid;
  align-content: end;
}

.social-cover img {
  position: absolute;
  inset: 0;
}

.social-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 3, 13, 0.05), rgba(5, 3, 13, 0.86));
}

.social-cover-copy {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.social-list {
  display: grid;
  gap: 24px;
}

.social-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 278px;
}

.social-item-copy {
  padding: 26px;
  align-self: center;
}

.ads-board {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.ads-main {
  padding: 30px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(180, 92, 255, 0.22), rgba(37, 216, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.ads-main-figure {
  width: calc(100% + 60px);
  height: 190px;
  min-height: 190px;
  margin: -30px -30px 26px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ads-gauge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.ads-gauge span {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 243, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
}

.ads-gauge strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 24px;
}

.ads-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.ads-side .news-card {
  min-height: 249px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ads-side .news-card img {
  width: calc(100% + 48px);
  height: 150px;
  min-height: 150px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-footer-cta {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 4vw, 58px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(9, 6, 21, 0), rgba(37, 216, 255, 0.08)),
    rgba(255, 255, 255, 0.025);
}

.news-footer-cta .section-title {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1.08;
}

.news-footer-cta .section-title span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .news-hero-copy,
  .news-section-head,
  .policy-layout,
  .lead-grid,
  .social-layout,
  .ads-board {
    grid-template-columns: 1fr;
  }

  .news-hero-tags {
    grid-template-columns: repeat(2, max-content);
    justify-content: flex-start;
  }

  .news-footer-cta .section-title span {
    white-space: normal;
  }

  .lead-card:nth-child(2) {
    transform: none;
  }

  .social-cover {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .news-hero {
    min-height: 78vh;
    padding-top: 132px;
  }

  .policy-mini,
  .social-item,
  .ads-side {
    grid-template-columns: 1fr;
  }

  .news-hero-tags {
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .policy-mini {
    min-height: 0;
  }

  .policy-mini img,
  .social-item img {
    min-height: 220px;
  }

  .policy-feature {
    min-height: 460px;
  }

  .policy-feature .policy-copy {
    inset: auto 14px 14px;
    padding: 18px;
  }

  .ads-gauge {
    grid-template-columns: 1fr;
  }
}

/* ===== cgal.html 页面专属样式开始 ===== */
.case-page {
      background:
        radial-gradient(circle at 14% 8%, rgba(37, 216, 255, 0.16), transparent 30vw),
        radial-gradient(circle at 88% 16%, rgba(255, 224, 109, 0.1), transparent 28vw),
        #090615;
    }

    .case-hero {
      min-height: 92vh;
      align-items: center;
      padding-bottom: 84px;
      background: linear-gradient(135deg, #061b35 0%, #071027 46%, #090615 100%);
    }

    .case-hero::before,
    .case-hero::after {
      display: none;
    }

    .case-hero .bd-hero-inner {
      max-width: 1360px;
      transform: none;
    }

    .case-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: clamp(28px, 4vw, 58px);
      align-items: center;
      justify-items: center;
    }

    .case-hero .bd-hero-title,
    .case-hero .bd-hero-copy {
      margin-inline: auto;
      text-align: center;
    }

    .case-hero .bd-hero-title {
      max-width: 100%;
      font-size: clamp(58px, 5.6vw, 88px);
      line-height: 1.08;
    }

    .case-hero .bd-hero-title span {
      white-space: nowrap;
    }

    .case-hero .bd-hero-label {
      margin-bottom: 18px;
      line-height: 1.35;
    }

    .case-hero .bd-hero-copy {
      max-width: 860px;
      margin-top: 26px;
      padding: 14px 26px;
      line-height: 1.78;
    }

    .case-hero .bd-hero-actions {
      justify-content: center;
      margin-top: 24px;
    }

    .case-snapshot {
      position: relative;
      display: grid;
      gap: 18px;
      overflow: visible;
      padding: 0;
      border: 0;
      border-radius: 8px;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .case-snapshot::before {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
    }

    .case-snapshot-item {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 86px 1fr auto;
      gap: 18px;
      align-items: center;
      min-height: 104px;
      padding: 22px 22px 22px 24px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 22px 8px 22px 8px;
      background:
        radial-gradient(circle at 0% 0%, rgba(255, 126, 104, 0.18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(37, 216, 255, 0.16), transparent 34%),
        rgba(7, 9, 18, 0.34);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        0 20px 54px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(24px) saturate(1.35);
      opacity: 0;
      transform: translateY(24px) scale(0.96);
    }

    .case-snapshot-item::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: -1;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255, 126, 104, 0.68), rgba(255, 255, 255, 0.18) 36%, rgba(37, 216, 255, 0.6));
      opacity: 0.86;
    }

    .case-snapshot-item::after {
      content: attr(data-index);
      align-self: end;
      color: rgba(247, 243, 255, 0.64);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
    }

    .case-snapshot-item:nth-child(2) {
      background:
        radial-gradient(circle at 0% 0%, rgba(37, 216, 255, 0.18), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(24, 255, 204, 0.18), transparent 34%),
        rgba(7, 13, 20, 0.34);
    }

    .case-snapshot-item:nth-child(2)::before {
      background: linear-gradient(135deg, rgba(37, 216, 255, 0.62), rgba(255, 255, 255, 0.18) 38%, rgba(24, 255, 204, 0.6));
    }

    .case-snapshot-item:nth-child(3) {
      background:
        radial-gradient(circle at 0% 0%, rgba(180, 92, 255, 0.2), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(255, 81, 214, 0.16), transparent 34%),
        rgba(12, 8, 22, 0.34);
    }

    .case-snapshot-item:nth-child(3)::before {
      background: linear-gradient(135deg, rgba(180, 92, 255, 0.66), rgba(255, 255, 255, 0.18) 38%, rgba(255, 81, 214, 0.58));
    }

    .case-snapshot-item:nth-child(4) {
      background:
        radial-gradient(circle at 0% 0%, rgba(255, 224, 109, 0.16), transparent 32%),
        radial-gradient(circle at 100% 100%, rgba(180, 92, 255, 0.18), transparent 34%),
        rgba(10, 8, 18, 0.34);
    }

    .case-snapshot-item:nth-child(4)::before {
      background: linear-gradient(135deg, rgba(255, 224, 109, 0.54), rgba(255, 255, 255, 0.18) 38%, rgba(180, 92, 255, 0.62));
    }

    .case-hero.is-loaded .case-snapshot-item {
      animation: caseCardIn 760ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .case-hero.is-loaded .case-snapshot-item:nth-child(1) { animation-delay: 380ms; }
    .case-hero.is-loaded .case-snapshot-item:nth-child(2) { animation-delay: 520ms; }
    .case-hero.is-loaded .case-snapshot-item:nth-child(3) { animation-delay: 660ms; }
    .case-hero.is-loaded .case-snapshot-item:nth-child(4) { animation-delay: 800ms; }

    @keyframes caseCardIn {
      0% {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
        filter: blur(8px);
      }
      70% {
        opacity: 1;
        transform: translateY(-3px) scale(1.01);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .case-snapshot-item {
        opacity: 1;
        transform: none;
      }

      .case-hero.is-loaded .case-snapshot-item {
        animation: none;
      }
    }

    .case-snapshot-item strong {
      color: #ffe06d;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1;
      text-shadow: 0 0 22px rgba(255, 224, 109, 0.18);
    }

    .case-snapshot-item span {
      color: rgba(247, 243, 255, 0.82);
      font-size: clamp(12px, 1vw, 14px);
      font-weight: 820;
      line-height: 1.65;
      white-space: nowrap;
    }

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

    .case-page .case-section-title {
      font-size: clamp(44px, 5.4vw, 82px);
      line-height: 1.08;
    }

    .case-page .case-two-line-title {
      font-size: clamp(42px, 5vw, 72px);
      line-height: 1.12;
    }

    .case-sample-desc {
      line-height: 2;
    }

    .case-overview-card,
    .case-problem-card,
    .case-action-step,
    .case-sample-card,
    .case-result-card,
    .case-more-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
      box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
    }

    .case-overview-card {
      min-height: 214px;
      padding: clamp(30px, 3vw, 42px);
      border-color: rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 90% 14%, rgba(180, 92, 255, 0.08), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        rgba(10, 8, 22, 0.78);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 20px 70px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(18px) saturate(1.12);
      transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
    }

    .case-overview-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(37, 216, 255, 0.12), transparent 28% 72%, rgba(180, 92, 255, 0.1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 420ms ease;
    }

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

    .case-overview-card:hover {
      transform: translateY(-6px);
      border-color: rgba(37, 216, 255, 0.3);
      background:
        radial-gradient(circle at 90% 14%, rgba(180, 92, 255, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(10, 8, 22, 0.82);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 26px 86px rgba(0, 0, 0, 0.3),
        0 0 42px rgba(37, 216, 255, 0.08);
    }

    .case-overview-card:hover::before {
      opacity: 1;
    }

    .case-overview-card span,
    .case-action-step span,
    .case-sample-card span,
    .case-result-card span,
    .case-more-card span {
      display: inline-flex;
      margin-bottom: 18px;
      color: var(--accent-2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .case-overview-card span {
      margin-bottom: 24px;
      color: #25d8ff;
      text-shadow: 0 0 24px rgba(37, 216, 255, 0.26);
    }

    .case-overview-card h3,
    .case-problem-card h3,
    .case-action-step h3,
    .case-sample-card h3,
    .case-result-card h3,
    .case-more-card h3 {
      margin: 0 0 12px;
      color: #fff;
      font-size: clamp(22px, 2vw, 30px);
      line-height: 1.24;
      letter-spacing: 0;
    }

    .case-overview-card h3 {
      margin-bottom: 18px;
      font-size: clamp(28px, 2.35vw, 42px);
      line-height: 1.12;
      font-weight: 950;
    }

    .case-overview-card p,
    .case-problem-card p,
    .case-action-step p,
    .case-sample-card p,
    .case-result-card p,
    .case-more-card p,
    .case-quote p {
      margin: 0;
      color: rgba(247, 243, 255, 0.68);
      font-size: 15px;
      line-height: 1.82;
    }

    .case-overview-card p {
      max-width: 92%;
      color: rgba(247, 243, 255, 0.66);
      font-size: clamp(15px, 1.12vw, 18px);
      line-height: 1.85;
    }

    .case-overview-grid.reveal .case-overview-card {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(8px);
    }

    .case-overview-grid.reveal.is-visible .case-overview-card {
      animation: overviewCardIn 760ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .case-overview-grid.reveal.is-visible .case-overview-card:nth-child(1) { animation-delay: 80ms; }
    .case-overview-grid.reveal.is-visible .case-overview-card:nth-child(2) { animation-delay: 210ms; }
    .case-overview-grid.reveal.is-visible .case-overview-card:nth-child(3) { animation-delay: 340ms; }

    .case-overview-editorial {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
      grid-template-areas:
        "headline smalls"
        "hero details";
      gap: clamp(18px, 2.6vw, 34px);
      align-items: stretch;
    }

    .case-overview-headline {
      grid-area: headline;
      min-height: 210px;
      display: grid;
      align-content: start;
      gap: 18px;
      padding-top: 8px;
    }

    .case-overview-headline span {
      color: #25d8ff;
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-shadow: 0 0 22px rgba(37, 216, 255, 0.24);
    }

    .case-overview-headline h3 {
      max-width: 720px;
      margin: 0;
      color: rgba(247, 243, 255, 0.78);
      font-size: clamp(18px, 1.45vw, 25px);
      line-height: 1.85;
      font-weight: 850;
      letter-spacing: 0;
    }

    .case-overview-image {
      position: relative;
      margin: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      background: rgba(255, 255, 255, 0.04);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
    }

    .case-overview-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 700ms ease;
    }

    .case-overview-image:hover img {
      transform: scale(1.045);
      filter: saturate(1.12) contrast(1.04);
    }

    .case-overview-hero-image {
      grid-area: hero;
      min-height: clamp(360px, 34vw, 560px);
      justify-self: start;
      width: 100%;
    }

    .case-overview-hero-image img {
      object-position: left center;
    }

    .case-overview-small-images {
      grid-area: smalls;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(16px, 2vw, 28px);
      align-self: start;
    }

    .case-overview-small-images .case-overview-image {
      aspect-ratio: 1.55 / 1;
    }

    .case-overview-small-images .case-overview-image:nth-child(2) {
      justify-self: end;
      width: 100%;
    }

    .case-overview-small-images .case-overview-image:nth-child(2) img {
      object-position: right center;
    }

    .case-overview-details {
      grid-area: details;
      display: grid;
      align-content: start;
      gap: 16px;
      padding: 0 0 0 clamp(18px, 3vw, 48px);
    }

    .case-overview-number {
      display: grid;
      gap: 18px;
      justify-items: start;
      color: #fff;
      font-size: clamp(54px, 5vw, 86px);
      font-weight: 400;
      font-style: italic;
      line-height: 1;
      font-family: Georgia, "Times New Roman", serif;
    }

    .case-overview-number::after {
      content: "";
      width: 2px;
      height: 110px;
      background: linear-gradient(180deg, #25d8ff, rgba(180, 92, 255, 0.12));
    }

    .case-overview-facts {
      display: grid;
      gap: 28px;
    }

    .case-overview-fact {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
    }

    .case-overview-fact b {
      display: block;
      margin-bottom: 8px;
      color: #25d8ff;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .case-overview-fact h3 {
      margin: 0 0 14px;
      color: #fff;
      font-size: clamp(26px, 2.4vw, 40px);
      font-weight: 950;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .case-overview-fact p {
      margin: 0;
      color: rgba(247, 243, 255, 0.7);
      font-size: clamp(15px, 1.08vw, 18px);
      line-height: 1.85;
    }

    .case-overview-editorial.reveal > * {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(8px);
    }

    .case-overview-editorial.reveal.is-visible > * {
      animation: overviewCardIn 820ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .case-overview-editorial.reveal.is-visible .case-overview-headline { animation-delay: 80ms; }
    .case-overview-editorial.reveal.is-visible .case-overview-small-images { animation-delay: 170ms; }
    .case-overview-editorial.reveal.is-visible .case-overview-hero-image { animation-delay: 260ms; }
    .case-overview-editorial.reveal.is-visible .case-overview-details { animation-delay: 350ms; }

    @keyframes overviewCardIn {
      0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(8px);
      }
      72% {
        opacity: 1;
        transform: translateY(-3px);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .case-problem-section {
      background:
        radial-gradient(circle at 18% 10%, rgba(37, 216, 255, 0.08), transparent 30vw),
        radial-gradient(circle at 88% 24%, rgba(180, 92, 255, 0.1), transparent 28vw),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
        #070412;
    }

    .case-problem-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
    }

    .case-problem-card {
      min-height: 312px;
      padding: 30px;
      isolation: isolate;
      border: 0;
      border-radius: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(10, 8, 22, 0.78);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 76px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(16px) saturate(1.12);
      transition: transform 460ms cubic-bezier(.16, 1, .3, 1), border-color 460ms ease, box-shadow 460ms ease;
    }

    .case-problem-card:nth-child(-n+3) {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .case-problem-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background: var(--problem-bg, linear-gradient(135deg, rgba(37, 216, 255, 0.18), rgba(180, 92, 255, 0.16))) center / cover no-repeat;
      opacity: 0.28;
      filter: saturate(1.08) contrast(1.08);
      transform: scale(1.02);
      transition: opacity 520ms ease, transform 700ms cubic-bezier(.16, 1, .3, 1), filter 520ms ease;
    }

    .case-problem-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.34), rgba(7, 4, 18, 0.68)),
        radial-gradient(circle at 18% 14%, rgba(37, 216, 255, 0.1), transparent 34%),
        radial-gradient(circle at 90% 88%, rgba(180, 92, 255, 0.1), transparent 34%);
      transition: background 520ms ease;
    }

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

    .case-problem-card:hover {
      transform: translateY(-8px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 32px 96px rgba(0, 0, 0, 0.34), 0 0 44px rgba(37, 216, 255, 0.1);
    }

    .case-problem-card:hover::before {
      opacity: 0.52;
      filter: saturate(1.2) contrast(1.1);
      transform: scale(1.09);
    }

    .case-problem-card:hover::after {
      background:
        linear-gradient(180deg, rgba(7, 4, 18, 0.22), rgba(7, 4, 18, 0.58)),
        radial-gradient(circle at 18% 14%, rgba(37, 216, 255, 0.14), transparent 34%),
        radial-gradient(circle at 90% 88%, rgba(180, 92, 255, 0.14), transparent 34%);
    }

    .case-problem-card b {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: 38px;
      border-radius: 50%;
      color: #090615;
      background: linear-gradient(135deg, #dff6a3 0%, #25d8ff 100%);
      box-shadow: 0 0 28px rgba(37, 216, 255, 0.24);
      font-size: 16px;
      font-weight: 950;
      transition: transform 420ms ease, box-shadow 420ms ease;
    }

    .case-problem-card:hover b {
      transform: translateY(-3px) scale(1.06);
      box-shadow: 0 0 40px rgba(37, 216, 255, 0.38);
    }

    .case-problem-card h3 {
      margin-bottom: 18px;
      font-size: clamp(28px, 2.1vw, 42px);
      line-height: 1.18;
      font-weight: 950;
    }

    .case-problem-card p {
      color: rgba(247, 243, 255, 0.68);
      font-size: clamp(15px, 1.05vw, 18px);
      line-height: 1.9;
    }

    .case-problem-grid.reveal .case-problem-card {
      opacity: 0;
      transform: translateY(30px);
      filter: blur(8px);
    }

    .case-problem-grid.reveal.is-visible .case-problem-card {
      animation: problemCardIn 760ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .case-problem-grid.reveal.is-visible .case-problem-card:nth-child(1) { animation-delay: 70ms; }
    .case-problem-grid.reveal.is-visible .case-problem-card:nth-child(2) { animation-delay: 180ms; }
    .case-problem-grid.reveal.is-visible .case-problem-card:nth-child(3) { animation-delay: 290ms; }
    .case-problem-grid.reveal.is-visible .case-problem-card:nth-child(4) { animation-delay: 400ms; }

    @keyframes problemCardIn {
      0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
      }
      74% {
        opacity: 1;
        transform: translateY(-3px);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .case-action-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 70px);
      align-items: start;
    }

    #case-action {
      position: relative;
      overflow: hidden;
      background: url("../images/bj9.jpg") center / cover no-repeat;
    }

    #case-action::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 78% 18%, rgba(37, 216, 255, 0.16), transparent 32vw),
        linear-gradient(90deg, rgba(5, 12, 32, 0.5), rgba(32, 18, 70, 0.24));
      pointer-events: none;
    }

    #case-action::after {
      content: "";
      position: absolute;
      inset: 0;
      background: inherit;
      filter: saturate(1.28) contrast(1.08);
      z-index: 0;
      pointer-events: none;
    }

    #case-action > .bd-section-inner {
      position: relative;
      z-index: 2;
    }

    .case-action-copy {
      position: sticky;
      top: 110px;
    }

    .case-action-copy .bd-section-title {
      font-size: clamp(52px, 6.3vw, 96px);
      line-height: 1.1;
    }

    .case-action-copy .bd-section-copy {
      margin-top: 24px;
      font-size: clamp(16px, 1.3vw, 20px);
      line-height: 2.05;
    }

    .case-action-list {
      display: grid;
      gap: 18px;
      overflow: hidden;
    }

    .case-action-step {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 24px;
      align-items: start;
      min-height: 132px;
      padding: 22px 28px 24px;
      border-color: rgba(92, 212, 255, 0.24);
      border-radius: 8px;
      background:
        radial-gradient(circle at 90% 10%, rgba(185, 87, 255, 0.13), transparent 34%),
        radial-gradient(circle at 8% 92%, rgba(37, 216, 255, 0.1), transparent 36%),
        linear-gradient(135deg, rgba(42, 105, 186, 0.32), rgba(39, 30, 105, 0.24)),
        rgba(9, 17, 48, 0.3);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 22px 70px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(18px) saturate(1.45);
      transition: transform 420ms cubic-bezier(.16, 1, .3, 1), border-color 420ms ease, box-shadow 420ms ease, background 420ms ease;
    }

    .case-action-step::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(37, 216, 255, 0.13), transparent 32% 72%, rgba(190, 83, 255, 0.14)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 48%);
      opacity: 0.34;
      pointer-events: none;
      transition: opacity 420ms ease;
    }

    .case-action-step > * {
      position: relative;
      z-index: 1;
    }

    .case-action-step:hover {
      transform: translateX(-8px);
      border-color: rgba(37, 216, 255, 0.28);
      background:
        radial-gradient(circle at 92% 12%, rgba(190, 83, 255, 0.18), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(37, 216, 255, 0.13), transparent 38%),
        linear-gradient(135deg, rgba(54, 126, 214, 0.42), rgba(64, 36, 138, 0.34)),
        rgba(9, 17, 48, 0.38);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 28px 88px rgba(0, 0, 0, 0.3),
        0 0 34px rgba(37, 216, 255, 0.08);
    }

    .case-action-step:hover::before {
      opacity: 1;
    }

    .case-action-step strong {
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 8px;
      color: #ffe06d;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(255, 255, 255, 0.04);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
      font-size: 17px;
      font-weight: 950;
      transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
    }

    .case-action-step:hover strong {
      transform: translateY(-2px);
      border-color: rgba(255, 224, 109, 0.36);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 26px rgba(255, 224, 109, 0.12);
    }

    .case-action-step span {
      margin-bottom: 12px;
      color: #25d8ff;
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.16em;
      text-shadow: 0 0 22px rgba(37, 216, 255, 0.24);
    }

    .case-action-step h3 {
      margin-bottom: 14px;
      font-size: clamp(24px, 2.1vw, 34px);
      line-height: 1.18;
      font-weight: 950;
    }

    .case-action-step p {
      color: rgba(247, 243, 255, 0.66);
      font-size: clamp(14px, 1vw, 16px);
      line-height: 1.85;
    }

    .case-action-list.reveal .case-action-step {
      opacity: 0;
      transform: translateX(84px);
      filter: blur(8px);
    }

    .case-action-list.reveal.is-visible .case-action-step {
      animation: actionStepSlideIn 820ms cubic-bezier(.16, 1, .3, 1) both;
    }

    .case-action-list.reveal.is-visible .case-action-step:nth-child(1) { animation-delay: 80ms; }
    .case-action-list.reveal.is-visible .case-action-step:nth-child(2) { animation-delay: 200ms; }
    .case-action-list.reveal.is-visible .case-action-step:nth-child(3) { animation-delay: 320ms; }
    .case-action-list.reveal.is-visible .case-action-step:nth-child(4) { animation-delay: 440ms; }
    .case-action-list.reveal.is-visible .case-action-step:nth-child(5) { animation-delay: 560ms; }

    @keyframes actionStepSlideIn {
      0% {
        opacity: 0;
        transform: translateX(84px);
        filter: blur(8px);
      }
      72% {
        opacity: 1;
        transform: translateX(-4px);
        filter: blur(0);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .case-action-list.reveal .case-action-step {
        opacity: 1;
        transform: none;
        filter: none;
      }

      .case-action-list.reveal.is-visible .case-action-step {
        animation: none;
      }
    }

    .case-sample-card {
      min-height: 430px;
    }

    .case-sample-card figure {
      height: 210px;
      margin: 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.06);
    }

    .case-sample-card img {
      transition: transform 620ms ease;
    }

    .case-sample-card:hover img {
      transform: scale(1.05);
    }

    .case-sample-copy,
    .case-more-card {
      padding: 24px;
    }

    #case-result {
      position: relative;
      overflow: hidden;
      background: url("../images/bj13.jpg") center / cover no-repeat;
    }

    #case-result::before {
      content: "";
      position: absolute;
      inset: 0;
      display: block;
      background: linear-gradient(180deg, rgba(7, 4, 18, 0.32), rgba(7, 4, 18, 0.48));
      pointer-events: none;
    }

    #case-result > .bd-section-inner {
      position: relative;
      z-index: 1;
    }

    .case-result-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.68fr);
      gap: 24px;
      align-items: stretch;
    }

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

    .case-result-card {
      min-height: 274px;
      padding: clamp(26px, 3vw, 34px);
      border-color: rgba(255, 255, 255, 0.22);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(8, 18, 46, 0.22);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 24px 82px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(22px) saturate(1.28);
      transition: border-color 420ms ease, box-shadow 420ms ease;
    }

    .case-result-card::before {
      display: none;
    }

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

    .case-result-card:hover {
      transform: none;
      border-color: rgba(255, 255, 255, 0.3);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(8, 18, 46, 0.26);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        0 28px 88px rgba(0, 0, 0, 0.26);
    }

    .case-result-card:hover::before {
      display: none;
    }

    .case-result-card span {
      margin-bottom: 26px;
      color: #25d8ff;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-shadow: 0 0 24px rgba(37, 216, 255, 0.22);
    }

    .case-result-card h3 {
      margin-bottom: 18px;
      font-size: clamp(28px, 2.35vw, 42px);
      line-height: 1.18;
      font-weight: 950;
    }

    .case-result-card p {
      color: rgba(247, 243, 255, 0.68);
      font-size: clamp(15px, 1.1vw, 18px);
      line-height: 1.9;
    }

    .case-quote {
      position: relative;
      isolation: isolate;
      display: grid;
      align-content: center;
      min-height: 100%;
      padding: clamp(38px, 4.6vw, 64px);
      border-radius: 8px;
      background:
        radial-gradient(circle at 18% 14%, rgba(180, 92, 255, 0.34), transparent 38%),
        linear-gradient(135deg, rgba(91, 54, 131, 0.94), rgba(39, 55, 104, 0.9) 58%, rgba(24, 83, 102, 0.88)),
        rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(140, 118, 255, 0.34);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 96px rgba(0, 0, 0, 0.28);
      overflow: hidden;
      transition: transform 460ms ease, border-color 460ms ease, box-shadow 460ms ease;
    }

    .case-quote::before {
      content: "";
      position: absolute;
      inset: -20%;
      background:
        radial-gradient(circle at 8% 20%, rgba(180, 92, 255, 0.28), transparent 34%),
        radial-gradient(circle at 94% 88%, rgba(37, 216, 255, 0.2), transparent 36%);
      opacity: 0.72;
      pointer-events: none;
    }

    .case-quote > * {
      position: relative;
      z-index: 1;
    }

    .case-quote:hover {
      transform: none;
      border-color: rgba(140, 118, 255, 0.34);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 96px rgba(0, 0, 0, 0.28);
    }

    .case-quote blockquote {
      margin: 0 0 28px;
      color: #fff;
      font-size: clamp(34px, 3.45vw, 58px);
      font-weight: 950;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .case-quote p {
      max-width: 760px;
      color: rgba(247, 243, 255, 0.72);
      font-size: clamp(16px, 1.2vw, 20px);
      line-height: 1.95;
    }

    .case-more-card {
      min-height: 250px;
    }

    .case-more-section {
      position: relative;
      background: transparent;
      overflow: hidden;
    }

    .case-more-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
    }

    .case-more-section .bd-section-inner {
      position: relative;
      z-index: 1;
    }

    .case-more-section .bd-section-head {
      margin-bottom: clamp(30px, 4vw, 48px);
    }

    .case-real-grid {
      overflow: hidden;
      width: 100vw;
      margin-bottom: clamp(30px, 4vw, 56px);
      margin-left: calc(50% - 50vw);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .case-real-track {
      display: flex;
      width: max-content;
      gap: clamp(18px, 1.8vw, 26px);
      padding-inline: clamp(24px, 4vw, 64px);
      animation: caseRealLoop 72s linear infinite;
      transform: translate3d(0, 0, 0);
      will-change: transform;
      backface-visibility: hidden;
    }

    .case-real-grid:hover .case-real-track {
      animation-play-state: paused;
    }

    .case-real-card {
      flex: 0 0 clamp(300px, 29vw, 380px);
      display: grid;
      grid-template-columns: 1fr;
      overflow: hidden;
      min-height: 0;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background:
        radial-gradient(circle at 86% 12%, rgba(38, 216, 255, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(12, 10, 26, 0.72);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 86px rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(18px) saturate(1.18);
    }

    .case-real-media {
      position: relative;
      margin: 0;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: rgba(255, 255, 255, 0.03);
    }

    .case-real-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(8, 6, 20, 0.06), rgba(8, 6, 20, 0.34));
      pointer-events: none;
    }

    .case-real-media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.92) contrast(1.04);
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    .case-real-body {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: clamp(22px, 2vw, 30px);
    }

    .case-real-kicker {
      margin: 0 0 12px;
      color: #25d8ff;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.4;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .case-real-body h3 {
      max-width: 100%;
      margin: 0 0 14px;
      color: #fff;
      font-size: clamp(20px, 1.35vw, 26px);
      line-height: 1.28;
      font-weight: 950;
    }

    .case-real-body h3 span {
      display: block;
    }

    .case-real-body h3 span + span {
      margin-top: 3px;
      color: #25d8ff;
      font-size: 0.82em;
      letter-spacing: 0.02em;
      text-shadow: 0 0 18px rgba(37, 216, 255, 0.18);
    }

    .case-real-source {
      display: inline-flex;
      width: fit-content;
      margin-bottom: clamp(16px, 1.5vw, 22px);
      padding: 6px 10px;
      border: 1px solid rgba(37, 216, 255, 0.26);
      color: rgba(37, 216, 255, 0.9);
      background: rgba(37, 216, 255, 0.055);
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      text-decoration: none;
      letter-spacing: 0.04em;
    }

    .case-real-source:hover {
      border-color: rgba(37, 216, 255, 0.52);
      color: #fff;
      background: rgba(37, 216, 255, 0.12);
    }

    .case-real-list {
      display: grid;
      gap: 10px;
      margin: 0;
    }

    .case-real-list div {
      position: relative;
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 14px;
      align-items: start;
      overflow: hidden;
      min-height: 0;
      padding: 12px 14px 12px 16px;
      border: 1px solid rgba(116, 191, 255, 0.16);
      background:
        radial-gradient(circle at 96% 0%, rgba(37, 216, 255, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(42, 31, 70, 0.68), rgba(15, 31, 54, 0.56));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 36px rgba(0, 0, 0, 0.16);
      backdrop-filter: blur(16px) saturate(1.18);
    }

    .case-real-list div::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 3px;
      background: linear-gradient(180deg, #25d8ff, rgba(139, 92, 246, 0.7));
      opacity: 0.8;
    }

    .case-real-list div::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 32%);
      pointer-events: none;
    }

    .case-real-list dt {
      position: relative;
      z-index: 1;
      color: #25d8ff;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.5;
      white-space: nowrap;
      letter-spacing: 0.04em;
      text-shadow: 0 0 18px rgba(37, 216, 255, 0.18);
    }

    .case-real-list dd {
      position: relative;
      z-index: 1;
      margin: 0;
      color: rgba(248, 246, 255, 0.82);
      font-size: clamp(13px, 0.9vw, 15px);
      line-height: 1.65;
    }

    .case-more-card {
      min-height: 312px;
      padding: clamp(28px, 3vw, 36px);
      border-color: rgba(255, 255, 255, 0.16);
      background:
        radial-gradient(circle at 92% 12%, rgba(180, 92, 255, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
        rgba(10, 8, 22, 0.8);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 78px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(18px) saturate(1.12);
      transition: transform 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
    }

    .case-more-card:hover {
      transform: translateY(-6px);
      border-color: rgba(37, 216, 255, 0.3);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 94px rgba(0, 0, 0, 0.32), 0 0 42px rgba(37, 216, 255, 0.08);
    }

    .case-more-card span {
      margin-bottom: 24px;
      color: #25d8ff;
      font-size: 12px;
      letter-spacing: 0.2em;
      text-shadow: 0 0 22px rgba(37, 216, 255, 0.22);
    }

    .case-more-card h3 {
      margin-bottom: 18px;
      font-size: clamp(28px, 2.3vw, 40px);
      line-height: 1.18;
      font-weight: 950;
    }

    .case-more-card p {
      color: rgba(247, 243, 255, 0.68);
      font-size: clamp(15px, 1.1vw, 18px);
      line-height: 1.9;
    }

    .case-real-grid.reveal {
      opacity: 0;
      transform: translateY(28px);
      filter: blur(8px);
    }

    .case-real-grid.reveal.is-visible {
      animation: caseBlockIn 720ms cubic-bezier(.16, 1, .3, 1) both;
    }

    @keyframes caseRealLoop {
      from {
        transform: translate3d(0, 0, 0);
      }
      to {
        transform: translate3d(calc(-50% + clamp(12px, 0.9vw, 13px)), 0, 0);
      }
    }

    @keyframes caseBlockIn {
      0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(8px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .case-real-grid {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }

      .case-real-track {
        animation: none;
      }
    }

    .case-cta-panel {
      text-align: center;
    }

    .case-cta-panel .bd-hero-actions {
      justify-content: center;
      margin-top: 34px;
    }

    .case-page .footer-bottom {
      justify-content: center;
      align-items: center;
      gap: 14px;
    }

    .case-page .footer-bottom i {
      display: block;
      width: 1px;
      height: 13px;
      background: rgba(247, 243, 255, 0.28);
    }

    .case-page .bd-hero-title,
    .case-page .bd-section-title,
    .case-page .bd-two-line-title {
      line-height: 1.18;
    }

    .case-page .bd-hero-title span + span,
    .case-page .bd-section-title span + span,
    .case-page .bd-two-line-title span + span {
      margin-top: 0.08em;
    }

    .case-page .case-hero .bd-hero-title {
      display: block;
      width: 100%;
      max-width: 100%;
      text-align: center;
      font-size: clamp(86px, 8.2vw, 142px);
      line-height: 1.04;
    }

    .case-page .case-hero .bd-hero-title span {
      display: block;
      text-align: center;
      white-space: nowrap;
    }

    @media (max-width: 980px) {
      .case-hero-grid,
      .case-action-layout,
      .case-result-layout {
        grid-template-columns: 1fr;
      }

      .case-hero .bd-hero-title,
      .case-hero .bd-hero-copy {
        text-align: center;
      }

      .case-hero .bd-hero-title {
        font-size: clamp(48px, 11vw, 86px);
        line-height: 1.06;
      }

      .case-hero .bd-hero-copy {
        margin-top: 22px;
      }

      .case-hero .bd-hero-title span {
        white-space: normal;
      }

      .case-hero .bd-hero-actions {
        justify-content: center;
      }

      .case-snapshot {
        max-width: 560px;
        margin: 0 auto;
      }

      .case-overview-grid,
      .case-sample-grid,
      .case-more-grid,
      .case-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-action-copy {
        position: static;
      }

      .case-action-copy .bd-section-title {
        font-size: clamp(46px, 10vw, 76px);
        line-height: 1.12;
      }

      .case-overview-editorial {
        grid-template-columns: 1fr;
        grid-template-areas:
          "headline"
          "smalls"
          "hero"
          "details";
      }

      .case-overview-details {
        padding-left: 0;
      }

      .case-real-card {
        flex-basis: clamp(300px, 46vw, 390px);
      }
    }

    @media (max-width: 640px) {
      .case-overview-grid,
      .case-sample-grid,
      .case-more-grid,
      .case-problem-grid,
      .case-result-grid {
        grid-template-columns: 1fr;
      }

      .case-snapshot-item,
      .case-action-step {
        grid-template-columns: 1fr;
      }

      .case-snapshot-item span {
        white-space: normal;
      }

      .case-hero .bd-hero-title {
        font-size: clamp(42px, 13vw, 68px);
        line-height: 1.08;
      }

      .case-hero .bd-hero-copy {
        margin-top: 18px;
        padding: 12px 16px;
        line-height: 1.68;
      }

      .case-page .case-section-title {
        font-size: clamp(30px, 9vw, 36px);
        line-height: 1.14;
      }

      .case-page .case-section-title span {
        white-space: nowrap;
      }

      .case-overview-hero-image {
        display: none;
      }

      .case-action-copy .bd-section-title {
        font-size: clamp(34px, 10vw, 42px);
        line-height: 1.12;
      }

      .case-action-copy .bd-section-title span {
        white-space: nowrap;
      }

      .case-cta-panel .bd-two-line-title {
        font-size: clamp(30px, 8.6vw, 36px);
        line-height: 1.18;
      }

      .case-cta-panel .bd-two-line-title span {
        white-space: nowrap;
      }

      .case-cta-panel p {
        font-size: clamp(15px, 4.2vw, 17px);
        line-height: 1.75;
      }

      .case-sample-card {
        min-height: auto;
      }

      .hero {
        padding-top: 88px;
      }

      .hero-announcement {
        margin-bottom: 20px;
      }

      .pain-intro .section-title {
        font-size: clamp(32px, 8.8vw, 42px);
      }

      .case-real-card {
        flex-basis: min(86vw, 360px);
      }

      .case-real-body {
        padding: 24px 18px;
      }

      .case-real-body h3 {
        font-size: clamp(22px, 7vw, 30px);
      }

      .case-real-list div {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 15px;
      }
    }
/* ===== cgal.html 页面专属样式结束 ===== */
