    :root {
      --bg-deep: #0b1220;
      --bg-deep-2: #111b2f;
      --bg-deep-3: #16233a;
      --surface: #ffffff;
      --surface-soft: #f6f8fc;
      --surface-muted: #eef2f8;
      --surface-ink: #f4f7fb;
      --line: #e7ebf3;
      --line-strong: #d9e0eb;
      --text-main: #0f172a;
      --text-soft: #5e6b81;
      --text-faint: #90a0b8;
      --orange: #ff8d20;
      --orange-2: #f97316;
      --orange-3: #ffb35a;
      --green: #18b766;
      --green-soft: #e8fff2;
      --blue: #2154d6;
      --blue-soft: #e8f0ff;
      --purple: #6f53df;
      --purple-soft: #efeaff;
      --shadow-main: 0 18px 45px rgba(11, 18, 32, 0.08);
      --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.08);
      --shadow-soft: 0 8px 18px rgba(15, 23, 42, 0.05);
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 16px;
      --radius-sm: 14px;
      --sidebar-width: 206px;
      --transition: 220ms cubic-bezier(.2, .7, .2, 1);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(238, 242, 246, 1) 34%),
        radial-gradient(circle at top right, rgba(255, 141, 32, 0.08), transparent 24%),
        linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
      color: var(--text-main);
      min-width: 320px;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    .page-shell {
      display: grid;
      grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
      min-height: 100vh;
      position: relative;
    }

    .sidebar {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      background:
        radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(180deg, #121a2c 0%, #0f1728 54%, #0c1322 100%);
      color: #fff;
      border-right: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.04);
      z-index: 20;
    }

    .sidebar::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 15%, transparent 82%, rgba(255, 255, 255, 0.02)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 28%);
      pointer-events: none;
    }

    .sidebar-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 18px 12px 16px;
      gap: 14px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 2px 6px 0;
    }

    .brand-text {
      display: grid;
      gap: 3px;
      min-width: 0;
    }

    .brand-text strong {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    .brand-text span {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.2;
    }

    .status-card,
    .support-card {
      border-radius: 18px;
      padding: 16px 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }

    .status-card {
      margin-top: 4px;
    }

    .status-card-top {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }

    .status-card-top strong,
    .support-card strong {
      font-size: 14px;
      font-weight: 700;
    }

    .status-card-top span {
      font-size: 11px;
      font-weight: 700;
      color: #ffba6d;
    }

    .progress-wrap {
      height: 7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
      margin-bottom: 12px;
    }

    .progress-bar {
      width: 74%;
      height: 100%;
      background: linear-gradient(90deg, #ff8a1d, #ffb14d);
      border-radius: inherit;
      box-shadow: 0 0 14px rgba(255, 141, 32, 0.45);
    }

    .status-card p,
    .support-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 11px;
      line-height: 1.72;
    }

    .menu {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1 1 auto;
      min-height: 0;
      padding-top: 6px;
    }

    .menu-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 14px;
      color: rgba(255, 255, 255, 0.92);
      border: 1px solid transparent;
      transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
      position: relative;
      user-select: none;
    }

    .menu-item svg {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
    }

    .menu-item .item-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      flex: 1 1 auto;
    }

    .menu-item .caret {
      width: 15px;
      height: 15px;
      opacity: 0.72;
    }

    .menu-item:hover {
      background: rgba(255, 255, 255, 0.045);
      border-color: rgba(255, 255, 255, 0.08);
      transform: translateX(2px);
    }

    .menu-item.is-emphasis {
      background: linear-gradient(180deg, rgba(255, 141, 32, 0.1), rgba(255, 141, 32, 0.06));
      border-color: rgba(255, 141, 32, 0.5);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 22px rgba(255, 141, 32, 0.08);
    }

    .menu-item.is-active {
      background: linear-gradient(180deg, rgba(39, 66, 121, 0.58), rgba(25, 41, 74, 0.78));
      border-color: rgba(255, 141, 32, 0.65);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 22px rgba(6, 12, 26, 0.26);
    }

    .menu-item.is-active::before {
      content: "";
      position: absolute;
      left: -2px;
      top: 10px;
      bottom: 10px;
      width: 3px;
      border-radius: 99px;
      background: linear-gradient(180deg, #ffae53, #ff7a00);
      box-shadow: 0 0 10px rgba(255, 141, 32, 0.5);
    }

    .sidebar-bottom {
      display: grid;
      gap: 10px;
      margin-top: auto;
    }

    .support-card {
      padding: 16px 15px;
    }

    .support-card .support-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 8px;
    }

    .support-title-badge {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(255, 141, 32, 0.18);
      color: #ffb150;
      display: grid;
      place-items: center;
    }

    .cta-btn,
    .submit-btn {
      border: 0;
      border-radius: 14px;
      min-height: 46px;
      padding: 0 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 800;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(90deg, #ff9a2b, #ff7200);
      box-shadow: 0 14px 28px rgba(255, 122, 0, 0.22);
      transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), opacity var(--transition);
    }

    .cta-btn:hover,
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(255, 122, 0, 0.28);
      filter: saturate(1.05);
    }

    .cta-btn:active,
    .submit-btn:active {
      transform: translateY(0);
      box-shadow: 0 8px 18px rgba(255, 122, 0, 0.24);
    }

    .main {
      background: var(--surface-ink);
      min-width: 0;
    }

    .mobile-topbar {
      display: none;
    }

    .content {
      position: relative;
      padding: 0;
    }

    .content::before,
    .content::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
      filter: blur(44px);
      opacity: 0.45;
    }

    .content::before {
      top: 40px;
      right: 4%;
      width: 220px;
      height: 220px;
      background: rgba(255, 176, 15, 0.16);
    }

    .content::after {
      left: 2%;
      bottom: 120px;
      width: 200px;
      height: 200px;
      background: rgba(61, 132, 255, 0.1);
    }

    .content-wrap {
      position: relative;
      z-index: 1;
      padding: 0 0px 0 0;
      margin: 0 auto 0 0;
    }

    .hero {
      position: relative;
      min-height: 80px;
      padding: 12px 20px 16px;
      overflow: hidden;
      background:
        radial-gradient(ellipse at 20% 30%, rgba(74, 158, 255, 0.14) 0%, transparent 48%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 140, 0, 0.12) 0%, transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 52%, #eef4fb 100%);
      color: #122243;
      border: 1px solid rgba(231, 235, 243, 0.92);
      border-radius: 0 0 16px 16px;
      margin-bottom: 20px;
      box-shadow:
        0 18px 36px rgba(15, 23, 42, 0.08),
        0 0 48px rgba(74, 158, 255, 0.05);
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero::before {
      background:
        radial-gradient(circle at 86% 16%, rgba(255, 165, 62, 0.18), transparent 10%),
        radial-gradient(circle at 75% 48%, rgba(47, 109, 246, 0.08), transparent 18%),
        linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.5) 35.5%, transparent 36%, transparent 72%, rgba(255, 255, 255, 0.28) 72.4%, transparent 73%);
      opacity: 0.9;
    }

    .hero::after {
      background:
        linear-gradient(115deg, transparent 57%, rgba(255, 255, 255, 0.32) 57.4%, rgba(255, 255, 255, 0.5) 58%, transparent 58.5%),
        linear-gradient(90deg, transparent 63%, rgba(255, 169, 73, 0.2) 63.2%, rgba(255, 169, 73, 0.2) 63.5%, transparent 63.7%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 24%, rgba(255, 255, 255, 0.12) 80%, transparent 100%);
      mix-blend-mode: screen;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      max-width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hero-content {
      flex: 1;
      max-width: 660px;
    }

    .hero-decoration {
      position: relative;
      width: 140px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .deco-circle {
      position: absolute;
      border-radius: 50%;
      opacity: 0.6;
      animation: float 6s ease-in-out infinite;
    }

    .deco-circle-1 {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(74, 158, 255, 0.4), rgba(74, 158, 255, 0.1));
      top: 20px;
      right: 30px;
      animation-delay: 0s;
    }

    .deco-circle-2 {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, rgba(255, 140, 0, 0.4), rgba(255, 140, 0, 0.1));
      bottom: 30px;
      right: 60px;
      animation-delay: 2s;
    }

    .deco-circle-3 {
      width: 30px;
      height: 30px;
      background: linear-gradient(135deg, rgba(100, 200, 150, 0.4), rgba(100, 200, 150, 0.1));
      top: 50%;
      right: 10px;
      animation-delay: 4s;
    }

    .deco-ring {
      position: absolute;
      width: 120px;
      height: 120px;
      border: 2px solid rgba(74, 158, 255, 0.2);
      border-radius: 50%;
      animation: rotate 20s linear infinite;
    }

    .deco-ring::before {
      content: "";
      position: absolute;
      top: -4px;
      left: 50%;
      width: 8px;
      height: 8px;
      background: rgba(74, 158, 255, 0.6);
      border-radius: 50%;
      transform: translateX(-50%);
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .hero h1 {
      margin: 0 0 6px;
      font-size: 22px;
      line-height: 1.25;
      letter-spacing: 0.01em;
      font-weight: 700;
      background: linear-gradient(135deg, #122243 0%, #2f6df6 45%, #ff9600 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
    }

    .hero p {
      margin: 0;
      font-size: 12px;
      line-height: 1.5;
      color: #5f6f88;
      font-weight: 500;
    }

    .metrics {
      position: relative;
      z-index: 3;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      margin: -72px 20px 14px 28px;
      background: rgba(255, 255, 255, 0.94);
      border-radius: 18px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 24px 46px rgba(15, 23, 42, 0.12);
      overflow: hidden;
    }

    .metric-card {
      position: relative;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 22px;
      min-height: 84px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }

    .metric-card+.metric-card {
      border-left: 1px solid rgba(15, 23, 42, 0.06);
    }

    .metric-card:hover {
      transform: translateY(-3px);
      background: linear-gradient(180deg, #ffffff, #fbfcff);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .metric-icon {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      flex: 0 0 48px;
    }

    .metric-icon svg {
      width: 24px;
      height: 24px;
    }

    .metric-icon.orange {
      background: #fff2e5;
      color: #ff8615;
    }

    .metric-icon.blue {
      background: #eaf0ff;
      color: #2555d8;
    }

    .metric-icon.green {
      background: #e8faef;
      color: #16b461;
    }

    .metric-icon.purple {
      background: #f0e9ff;
      color: #6c53dc;
    }

    .metric-card strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 6px;
      color: #10214a;
      font-weight: 900;
      letter-spacing: 0.01em;
    }

    .metric-card span {
      display: block;
      color: #67758a;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 700;
    }

    .section-grid,
    .contact-grid {
      display: grid;
      gap: 14px;
      padding: 0 0px 14px 0px;
    }

    .section-grid.two-main {
      grid-template-columns: 1.48fr 1fr;
      align-items: flex-start;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 16px;
      padding: 0 0px 14px 0px;
      align-items: stretch;
    }

    .about-grid .about-right {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .about-grid .about-right .position-card {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .about-grid .about-right .position-card .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .about-grid .about-right .position-card .position-points {
      flex-shrink: 0;
    }

    .about-grid .about-right .position-card .contact-qrcode {
      margin-top: auto;
      flex-shrink: 0;
    }

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

    .contact-grid {
      grid-template-columns: 4fr 6fr;
    }

    .card {
      background: var(--surface);
      border-radius: 18px;
      border: 1px solid rgba(15, 23, 42, 0.05);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }

    .card-body {
      padding: 14px 16px;
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .card-header h2,
    .card-header h3 {
      margin: 0;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 900;
      color: #0f172a;
      letter-spacing: -0.01em;
    }

    .card-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ffaf54, #ff7a00);
      box-shadow: 0 0 0 4px rgba(255, 141, 32, 0.1);
      flex: 0 0 7px;
    }

    .intro-card .intro-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 24px;
      align-items: center;
    }

    .intro-copy p {
      margin: 0 0 14px;
      font-size: 14px;
      line-height: 2;
      color: #475569;
      font-weight: 500;
      text-align: justify;
    }

    .intro-copy p:first-child {
      font-size: 15px;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 16px;
    }

    .intro-copy p:last-child {
      margin-bottom: 0;
    }

    .portrait {
      position: relative;
      height: 340px;
      border-radius: 16px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1)),
        linear-gradient(135deg, #e8f0f8 0%, #f0f5fa 50%, #e0ebf5 100%);
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .portrait:hover img {
      transform: scale(1.03);
    }

    .portrait::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.55) 36%, rgba(255, 255, 255, 0.12) 50%, transparent 50%),
        linear-gradient(45deg, transparent 0%, transparent 70%, rgba(255, 255, 255, 0.55) 70%, transparent 71%);
      opacity: 0.65;
    }

    .portrait svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .position-card {
      background:
        radial-gradient(ellipse at top right, rgba(255, 160, 63, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(59, 130, 246, 0.1), transparent 40%),
        linear-gradient(160deg, #1e293b 0%, #0f172a 55%, #0a101a 100%);
      color: #fff;
      box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.25),
        0 0 80px rgba(255, 141, 32, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .position-card .card-header h2 {
      color: #fff;
    }

    .position-card .card-body {
      padding: 20px;
    }

    .position-main {
      display: grid;
      grid-template-columns: 4px minmax(0, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }

    .position-line {
      border-radius: 999px;
      background: linear-gradient(180deg, #ffad51, #ff7b00);
      box-shadow: 0 0 12px rgba(255, 141, 32, 0.36);
    }

    .position-main strong {
      display: block;
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 12px;
      font-weight: 900;
      background: linear-gradient(135deg, #ffad51, #ff7b00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .position-main p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      line-height: 1.8;
      font-weight: 500;
    }

    .position-points {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .position-point {
      padding: 14px 8px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      text-align: center;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .position-point:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-2px);
      border-color: rgba(255, 173, 81, 0.2);
    }

    .position-point strong {
      display: block;
      font-size: 15px;
      color: #ffad51;
      margin-bottom: 5px;
      line-height: 1.2;
      font-weight: 900;
    }

    .position-point span {
      display: block;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.4;
    }

    .contact-qrcode {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      padding-top: 16px;
      margin-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .contact-qrcode-item {
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .contact-qrcode img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      border-radius: 12px;
      background: #fff;
      padding: 8px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .contact-qrcode-item figcaption {
      margin: 0;
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
      color: rgba(255, 145, 30, 0.95);
      text-align: center;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    }

    @media (max-width: 479px) {
      .contact-qrcode {
        gap: 12px;
      }

      .contact-qrcode-item {
        gap: 6px;
      }

      .contact-qrcode img {
        width: 118px;
        height: 118px;
      }

      .contact-qrcode-item figcaption {
        font-size: 11px;
      }
    }

    .stats-card {
      background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
      border: 1px solid rgba(255, 141, 32, 0.12);
      box-shadow: 0 4px 20px rgba(255, 141, 32, 0.08);
    }

    .stats-card .card-body {
      padding: 20px;
    }

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

    .stat-item {
      text-align: center;
      padding: 14px 8px;
      background: linear-gradient(180deg, rgba(255, 141, 32, 0.06) 0%, rgba(255, 141, 32, 0.02) 100%);
      border-radius: 12px;
      border: 1px solid rgba(255, 141, 32, 0.1);
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      background: linear-gradient(180deg, rgba(255, 141, 32, 0.1) 0%, rgba(255, 141, 32, 0.04) 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(255, 141, 32, 0.18);
    }

    .stat-number {
      display: block;
      font-size: 28px;
      font-weight: 900;
      color: #ff7b00;
      line-height: 1.15;
      margin-bottom: 6px;
      letter-spacing: -0.02em;
    }

    .stat-label {
      display: block;
      font-size: 12px;
      color: #64748b;
      font-weight: 600;
      line-height: 1.4;
    }

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

    .service-banner {
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      border-radius: 14px;
      padding: 18px;
      text-align: center;
      margin-bottom: 16px;
      position: relative;
      overflow: hidden;
    }

    .service-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 141, 32, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }

    .service-banner h3 {
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }

    .service-banner p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 12px;
      line-height: 1.5;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
    }

    .platform-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .platform-tag {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.9);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .platform-tag:hover {
      background: rgba(255, 141, 32, 0.25);
      border-color: rgba(255, 141, 32, 0.4);
      color: #fff;
    }

    .platform-tag.more-tag {
      background: rgba(255, 141, 32, 0.15);
      border-color: rgba(255, 141, 32, 0.3);
      color: #ffad51;
    }

    .platform-logos {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 10px;
    }

    .logo-circle {
      aspect-ratio: 1;
      background: #f8fafc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
    }

    .logo-circle:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      border-color: rgba(255, 141, 32, 0.2);
    }

    .logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .service-item {
      background: linear-gradient(180deg, #fff, #fbfcff);
      border: 1px solid #edf1f6;
      border-radius: 12px;
      padding: 10px 10px 10px 11px;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }



    .service-icon {
      width: 24px;
      height: 24px;
      border-radius: 8px;
      background: linear-gradient(180deg, #fff3e3, #ffe7c8);
      color: #ff810c;
      display: grid;
      place-items: center;
      margin-bottom: 8px;
    }

    .service-icon svg {
      width: 14px;
      height: 14px;
    }

    .service-item strong,
    .advantage-item strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 3px;
      color: #0f172a;
    }

    .service-item p,
    .advantage-item p,
    .law-firms-note,
    .object-note,
    .contact-intro {
      margin: 0;
      font-size: 12px;
      line-height: 1.7;
      color: #65748a;
      font-weight: 600;
    }

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

    .advantage-item {
      display: grid;
      grid-template-columns: 26px minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      background: linear-gradient(180deg, #fff, #fbfcff);
      border: 1px solid #edf1f6;
      border-radius: 12px;
      padding: 10px 10px 10px 11px;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }



    .advantage-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: linear-gradient(180deg, #fff2e5, #ffe7cf);
      color: #ff8110;
      display: grid;
      place-items: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
      flex-shrink: 0;
    }

    .advantage-icon svg {
      width: 13px;
      height: 13px;
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .tab-btn {
      border: 1px solid #e7ebf3;
      background: #fff;
      color: #445268;
      border-radius: 10px;
      padding: 8px 14px;
      min-height: 38px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }

    .tab-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(255, 141, 32, 0.35);
      color: #10214a;
    }

    .tab-btn.active {
      background: linear-gradient(90deg, #ff9a2b, #ff7200);
      color: #fff;
      border-color: rgba(255, 114, 0, 0.7);
      box-shadow: 0 12px 20px rgba(255, 122, 0, 0.14);
    }

    .tab-panels {
      position: relative;
      min-height: 110px;
    }

    .tab-panel {
      display: none;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity var(--transition), transform var(--transition);
    }

    .tab-panel.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .logos-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }

    .firms-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 16px;
    }

    .logo-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      min-width: 68px;
      padding: 0 4px;
      background: transparent;
      border-radius: 10px;
      text-align: center;
      font-weight: 900;
      letter-spacing: -0.01em;
      user-select: none;
      color: #15294c;
    }

    .firm-chip {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 72px;
      min-height: 72px;
      padding: 12px 8px;
      background: linear-gradient(135deg, rgba(255, 150, 0, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
      border: 1px solid rgba(255, 150, 0, 0.15);
      border-radius: 16px;
      text-align: center;
      user-select: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .firm-chip:hover {
      background: linear-gradient(135deg, rgba(255, 150, 0, 0.18) 0%, rgba(59, 130, 246, 0.18) 100%);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 24px rgba(255, 150, 0, 0.18);
      border-color: rgba(255, 150, 0, 0.3);
    }

    .firm-chip strong {
      font-size: 14px;
      font-weight: 800;
      color: #1e293b;
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .firm-chip span {
      font-size: 10px;
      color: #64748b;
      line-height: 1.4;
      margin-top: 4px;
      font-weight: 500;
    }

    .logo-chip.logo-amazon {
      color: #161616;
    }

    .logo-chip.logo-ebay {
      color: #e53238;
    }

    .logo-chip.logo-walmart {
      color: #1f74d8;
    }

    .logo-chip.logo-shopify {
      color: #2f855a;
    }

    .logo-chip.logo-wish {
      color: #2f55ff;
    }

    .logo-chip.logo-aliexpress {
      color: #ff5b2e;
    }

    .logo-chip.logo-shopee {
      color: #f26a1b;
    }

    .logo-chip.logo-lazada {
      color: #7f42ff;
    }

    .logo-chip.logo-tiktok {
      color: #111827;
    }

    .logo-chip .subtle {
      font-size: 10px;
      opacity: 0.7;
      font-weight: 800;
      margin-left: 4px;
    }

    .firm-chip {
      min-width: 64px;
      min-height: 64px;
      padding: 8px 4px;
      flex-direction: column;
      gap: 4px;
      background: linear-gradient(135deg, rgba(255, 150, 0, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
      border: 1px solid rgba(255, 150, 0, 0.15);
      border-radius: 12px;
    }

    .firm-chip strong {
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      color: #1e293b;
      margin: 0;
    }

    .firm-chip span {
      font-size: 9px;
      line-height: 1.2;
      color: #64748b;
      font-weight: 500;
      text-transform: none;
    }

    .firm-chip.hm strong {
      color: #5d3046;
    }

    .firm-chip.wpw strong {
      color: #31588b;
    }

    .firm-chip.aegis strong {
      color: #5f6674;
    }

    .table-card .card-body {
      padding-bottom: 12px;
    }

    .table-wrap {
      overflow-x: auto;
      border-radius: 14px;
      border: 1px solid #edf1f7;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 860px;
      background: #fff;
    }

    thead th {
      background: #111e46;
      color: #fff;
      padding: 12px 14px;
      font-size: 13px;
      font-weight: 800;
      text-align: center;
      white-space: nowrap;
    }

    tbody td {
      padding: 12px 14px;
      font-size: 14px;
      color: #1f2937;
      text-align: center;
      font-weight: 600;
      border-bottom: 1px solid #edf1f6;
      white-space: nowrap;
    }

    tbody tr:last-child td {
      border-bottom: 0;
    }

    tbody tr:hover {
      background: #fcfdff;
    }

    .table-wrap tbody td.amount {
      color: var(--orange-2) !important;
      font-weight: 900;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 12px;
      border-radius: 999px;
      background: linear-gradient(180deg, #e8fff1, #d7fae7);
      color: #16a95e;
      font-size: 12px;
      font-weight: 900;
      border: 1px solid #bdeccf;
    }

    .contact-card {
      position: relative;
    }

    .contact-card .card-body {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .contact-card .card-header {
      margin-bottom: 18px;
    }

    .contact-intro {
      margin-bottom: 18px;
    }

    .contact-card-content {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      flex: 1;
      align-items: start;
    }

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

    .reason-box {
      max-width: none;
      margin-left: 0;
      margin-top: auto;
      margin-bottom: 8px;
      height: fit-content;
      display: flex;
      flex-direction: column;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
    }

    .contact-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: #fff5eb;
      color: #101827;
      display: grid;
      place-items: center;
    }

    .contact-icon svg {
      width: 15px;
      height: 15px;
    }

    .contact-item span {
      color: #202938;
      font-size: 14px;
      font-weight: 700;
      word-break: break-word;
    }

    .contact-qrcode-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 160px));
      justify-content: center;
      gap: 14px;
      margin-top: 18px;
      margin-bottom: 18px;
    }

    .contact-qrcode-card {
      margin: 0;
      width: 100%;
      max-width: 180px;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .contact-qrcode-trigger {
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: zoom-in;
      display: block;
      border-radius: 12px;
    }

    .contact-qrcode-trigger:focus-visible {
      outline: 2px solid rgba(255, 145, 30, 0.92);
      outline-offset: 3px;
    }

    .contact-qrcode-media {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 12px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .contact-qrcode-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .contact-qrcode-lightbox {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .contact-qrcode-backdrop {
      position: absolute;
      inset: 0;
      border: 0;
      background: rgba(6, 12, 24, 0.78);
      cursor: pointer;
    }

    .contact-qrcode-dialog {
      position: relative;
      z-index: 1;
      width: min(92vw, 520px);
      border-radius: 20px;
      background: #ffffff;
      padding: 18px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.32);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .contact-qrcode-lightbox-image {
      width: 100%;
      height: auto;
      max-height: 78vh;
      object-fit: contain;
      display: block;
      border-radius: 14px;
      background: #fff;
    }

    .contact-qrcode-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      border: 0;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.08);
      color: #101827;
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    .contact-qrcode-title {
      margin: 0;
      text-align: center;
      color: #202938;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 800;
    }

    .reason-box {
      background: linear-gradient(160deg, #1e2738 0%, #0f1728 100%);
      color: #fff;
      border-radius: 12px;
      padding: 14px 14px 12px;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
    }

    .reason-box strong {
      display: block;
      margin-bottom: 10px;
      font-size: 15px;
      font-weight: 900;
    }

    .reason-box ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 12px;
    }

    .reason-box li {
      position: relative;
      padding-left: 18px;
      font-size: 12px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 600;
    }

    .reason-box li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ffb14d, #ff7a00);
      box-shadow: 0 0 0 4px rgba(255, 141, 32, 0.1);
    }

    .form-card .card-body {
      padding-bottom: 14px;
    }

    .consult-header {
      text-align: center;
    }

    .consult-header h2 {
      font-size: 18px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .consult-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

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

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .field-label {
      font-size: 13px;
      font-weight: 700;
      color: #334155;
    }

    .field-required {
      color: #ff5a3c;
      margin-left: 2px;
    }

    .field-input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      background: #f8fafc;
      font-size: 14px;
      color: #0f172a;
      outline: none;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .field-input:focus {
      border-color: #ff810c;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255, 129, 12, 0.1);
    }

    .field-input::placeholder {
      color: #94a3b8;
    }

    .field-select {
      position: relative;
      width: 100%;
    }

    .field-select-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      background: #f8fafc;
      font-size: 14px;
      color: #0f172a;
      cursor: pointer;
      transition: all 0.3s ease;
      box-sizing: border-box;
    }

    .field-select.open .field-select-trigger {
      border-color: #ff810c;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255, 129, 12, 0.1);
    }

    .field-select-text {
      flex: 1;
      text-align: left;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .field-select-text.placeholder {
      color: #94a3b8;
    }

    .field-select-arrow {
      font-size: 12px;
      color: #94a3b8;
      transition: transform 0.3s ease;
    }

    .field-select.open .field-select-arrow {
      transform: rotate(180deg);
      color: #ff810c;
    }

    .field-select-menu {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      margin: 0;
      padding: 6px;
      list-style: none;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
      max-height: 240px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
      z-index: 40;
    }

    .field-select.open .field-select-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .field-select-option {
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 14px;
      color: #475569;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .field-select-option:hover {
      background: #fff5eb;
      color: #ff810c;
    }

    .field-select-option.selected {
      background: linear-gradient(135deg, #ff810c, #ffad51);
      color: #fff;
    }

    .case-number-group {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
    }

    .case-number-group .case-picker {
      flex: 0 0 auto;
      width: auto;
    }

    .case-number-group .case-picker-zone {
      min-width: 130px;
    }

    .case-number-group .case-picker-year {
      min-width: 110px;
    }

    .case-fixed-type {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 14px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      background: #f1f5f9;
      color: #475569;
      font-size: 14px;
      font-weight: 700;
      box-sizing: border-box;
    }

    .case-number-input {
      flex: 1 1 auto;
      min-width: 0;
    }

    .case-number-hint {
      margin-top: 6px;
      font-size: 12px;
      color: #94a3b8;
    }

    .form-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 4px;
    }

    .form-btn {
      padding: 14px 20px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .form-btn-reset {
      border: 1px solid #ffcf9e;
      background: #fff;
      color: #ff810c;
    }

    .form-btn-reset:hover {
      background: #fff5eb;
    }

    .form-btn-submit {
      border: none;
      background: linear-gradient(135deg, #ff810c, #ffad51);
      color: #fff;
    }

    .form-btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(255, 129, 12, 0.3);
    }

    .form-btn-submit[disabled] {
      cursor: default;
      opacity: 0.7;
      transform: none;
      box-shadow: none;
    }

    .field {
      display: none;
    }

    .field input {
      min-height: 42px;
    }

    .field textarea {
      min-height: 94px;
      resize: vertical;
      padding-top: 11px;
      padding-bottom: 11px;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #98a3b4;
      font-weight: 600;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(255, 141, 32, 0.8);
      box-shadow: 0 0 0 4px rgba(255, 141, 32, 0.12);
      background: #fffdfa;
    }

    .field.is-invalid input,
    .field.is-invalid textarea {
      border-color: #e95d5d;
      box-shadow: 0 0 0 4px rgba(233, 93, 93, 0.09);
    }

    .field-error {
      min-height: 16px;
      font-size: 11px;
      color: #d44545;
      font-weight: 700;
    }

    .form-footer {
      margin-top: 10px;
      display: grid;
      gap: 10px;
    }

    .submit-btn[disabled] {
      cursor: default;
      opacity: 0.82;
      transform: none;
      box-shadow: 0 10px 18px rgba(255, 122, 0, 0.16);
    }

    .form-status {
      min-height: 28px;
      font-size: 14px;
      font-weight: 700;
      color: #10b981;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity var(--transition), transform var(--transition), color var(--transition);
      text-align: center;
      padding: 8px 16px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.2);
      margin-top: 12px;
    }

    .form-status.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .form-status.error {
      color: #ef4444;
      background: rgba(239, 68, 68, 0.08);
      border-color: rgba(239, 68, 68, 0.2);
    }

    .footer {
      margin-top: 0;
      background:
        radial-gradient(circle at 100% 0, rgba(255, 141, 32, 0.08), transparent 18%),
        linear-gradient(180deg, #0d1524 0%, #0b1220 100%);
      color: #fff;
      padding: 16px 20px 18px 28px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 26px;
      margin-bottom: 10px;
    }

    .footer-nav a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.86);
      font-weight: 700;
      position: relative;
    }

    .footer-nav a:hover {
      color: #ffb86a;
    }

    .footer-meta {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
    }

    .copyright {
      font-size: 12px;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.66);
      font-weight: 600;
    }

    .qr-zone {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .qr-box {
      width: 60px;
      height: 60px;
      border-radius: 6px;
      background:
        linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 20px 20px,
        linear-gradient(#111 10px, transparent 10px) 0 0 / 20px 20px,
        linear-gradient(90deg, transparent 10px, #111 10px) 10px 10px / 20px 20px,
        linear-gradient(transparent 10px, #111 10px) 10px 10px / 20px 20px,
        #fff;
      border: 4px solid #fff;
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
      flex: 0 0 60px;
    }

    .qr-text strong,
    .qr-text span {
      display: block;
      line-height: 1.4;
    }

    .qr-text strong {
      font-size: 13px;
      font-weight: 800;
      color: #fff;
    }

    .qr-text span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 600;
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5, 10, 18, 0.54);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      z-index: 24;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      animation: fadeUp 620ms cubic-bezier(.2, .7, .2, 1) forwards;
    }

    .reveal.delay-1 {
      animation-delay: 60ms;
    }

    .reveal.delay-2 {
      animation-delay: 110ms;
    }

    .reveal.delay-3 {
      animation-delay: 160ms;
    }

    .reveal.delay-4 {
      animation-delay: 210ms;
    }

    .reveal.delay-5 {
      animation-delay: 260ms;
    }

    .reveal.delay-6 {
      animation-delay: 310ms;
    }

    .reveal.delay-7 {
      animation-delay: 360ms;
    }

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

    @media (max-width: 1180px) {
      .content-wrap {
        max-width: none;
      }

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

      .metric-card:nth-child(3) {
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .metric-card:nth-child(4) {
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .section-grid.two-main,
      .section-grid.two-even,
      .contact-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .contact-qrcode-grid {
        grid-template-columns: repeat(2, minmax(0, 168px));
        justify-content: center;
      }

      .contact-qrcode-card {
        max-width: 168px;
        padding: 12px 12px 10px;
      }

      .contact-qrcode-title {
        font-size: 12px;
      }

      .form-row,
      .form-row-3,
      .form-actions {
        grid-template-columns: 1fr;
      }

      .case-number-group {
        flex-wrap: wrap;
      }

      .case-number-group .case-picker-zone,
      .case-number-group .case-picker-year {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
      }

      .case-fixed-type {
        flex: 0 0 auto;
      }

      .case-number-input {
        flex: 1 1 0;
        min-width: 0;
      }

      .about-grid .about-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
      }

      .about-grid .about-right .card {
        flex-shrink: 0;
        min-width: calc(50% - 6px);
        max-width: 100%;
      }

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

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

      .contact-qrcode img {
        width: 120px;
        height: 120px;
      }

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

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

      .service-banner {
        padding: 16px;
      }

      .service-banner h3 {
        font-size: 16px;
      }

      .service-banner p {
        font-size: 11px;
      }
    }

    @media (max-width: 479px) {
      .contact-qrcode-grid {
        grid-template-columns: repeat(2, minmax(0, 138px));
        justify-content: center;
        gap: 10px;
      }

      .contact-qrcode-card {
        max-width: 138px;
      }
    }

    @media (max-width: 900px) {
      .page-shell {
        display: block;
      }

      .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: min(82vw, 290px);
        transform: translateX(-105%);
        transition: transform 260ms cubic-bezier(.2, .7, .2, 1);
        box-shadow: 24px 0 44px rgba(5, 10, 18, 0.34);
        z-index: 26;
      }

      .sidebar.is-open {
        transform: translateX(0);
      }

      .mobile-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
      }

      .main {
        min-height: 100vh;
      }

      .mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 72px;
        padding: 14px 16px;
        background:
          linear-gradient(180deg, rgba(10, 16, 30, 0.06), rgba(10, 16, 30, 0.06)),
          linear-gradient(135deg, #223554 0%, #16233a 42%, #101827 100%);
        color: #fff;
        position: sticky;
        top: 0;
        z-index: 10;
        box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
      }

      .mobile-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
      }

      .mobile-brand strong {
        display: block;
        font-size: 18px;
        line-height: 1.1;
        font-weight: 900;
      }

      .mobile-brand span {
        display: block;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.84);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: background var(--transition), transform var(--transition), border-color var(--transition);
      }

      .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
      }

      .content-wrap {
        padding-right: 0;
      }

      .hero {
        border-radius: 0 0 22px 22px;
        padding: 18px 18px 84px;
        min-height: 190px;
      }

      .hero h1 {
        font-size: 30px;
      }

      .hero p {
        font-size: 14px;
        line-height: 1.7;
      }

      .metrics {
        margin: -70px 16px 14px;
      }

      .section-grid,
      .contact-grid {
        padding-left: 16px;
        padding-right: 16px;
      }

      .footer {
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    @media (max-width: 680px) {
      .metrics {
        grid-template-columns: 1fr 1fr;
      }

      .metric-card {
        padding: 16px 14px;
        gap: 12px;
      }

      .metric-card strong {
        font-size: 22px;
      }

      .metric-card span {
        font-size: 12px;
      }

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

      .portrait {
        min-height: 240px;
      }

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

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

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

      .about-grid {
        padding-left: 16px;
        padding-right: 16px;
      }

      .about-grid .about-right {
        flex-direction: column;
      }

      .about-grid .about-right .card {
        min-width: 100%;
      }

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

      .stat-number {
        font-size: 24px;
      }

      .consult-form {
        grid-template-columns: 1fr;
      }

      .reason-box {
        max-width: none;
        margin-left: 0;
      }

      .footer-meta {
        flex-direction: column;
        align-items: flex-start;
      }

      .platform-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
      }
    }

    @media (max-width: 520px) {
      .mobile-topbar {
        min-height: 66px;
        padding: 12px 14px;
      }

      .hero {
        min-height: 176px;
        padding: 18px 14px 88px;
      }

      .hero h1 {
        font-size: 26px;
      }

      .metrics {
        grid-template-columns: 1fr;
        margin: -74px 14px 12px;
      }

      .metric-card+.metric-card {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .metric-card:nth-child(3),
      .metric-card:nth-child(4) {
        border-top: 1px solid rgba(15, 23, 42, 0.06);
      }

      .section-grid,
      .contact-grid {
        gap: 12px;
        padding-left: 14px;
        padding-right: 14px;
      }

      .card-body {
        padding: 14px;
      }

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

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

      .logo-circle {
        padding: 8px;
      }

      .service-banner {
        padding: 16px;
      }

      .service-banner h3 {
        font-size: 16px;
      }

      .service-banner p {
        font-size: 12px;
      }

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

      .firm-chip {
        padding: 8px 4px;
      }

      .firm-chip strong {
        font-size: 12px;
      }

      .firm-chip span {
        font-size: 9px;
      }

      .tabs {
        gap: 6px;
      }

      .tab-btn {
        flex: 1 1 calc(50% - 6px);
        padding-left: 10px;
        padding-right: 10px;
      }

      .logos-row,
      .firms-row {
        gap: 10px;
      }

      .logo-chip {
        min-width: calc(33.333% - 8px);
        justify-content: flex-start;
      }

      .position-points {
        grid-template-columns: 1fr;
      }

      .about-grid {
        padding-left: 14px;
        padding-right: 14px;
        gap: 12px;
      }

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

      .stat-item {
        padding: 12px 6px;
      }

      .stat-number {
        font-size: 22px;
      }

      .stat-label {
        font-size: 11px;
      }

      .footer-nav {
        gap: 10px 18px;
      }

      .contact-qrcode img {
        width: 100px;
        height: 100px;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
