﻿*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #C8975A;
      --gold-light: #E8B87A;
      --gold-pale: rgba(200, 151, 90, 0.12);
      --red: #C0392B;
      --red-soft: rgba(192, 57, 43, 0.1);
      --ink: #1A1A2E;
      --ink-mid: #2D2D44;
      --ink-soft: #3D3D5C;
      --parchment: #FDFAF5;
      --cream: #F7F2E8;
      --white: #FFFFFF;
      --muted: #7A7A9A;
      --border: rgba(200, 151, 90, 0.2);
      --border-light: rgba(0, 0, 0, 0.06);
      --font-serif: 'Noto Serif TC', serif;
      --font-sans: 'Noto Sans TC', 'Outfit', sans-serif;
      --font-latin: 'Outfit', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--parchment);
      color: var(--ink);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(253, 250, 245, 0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 900;
      color: white;
      box-shadow: 0 4px 16px rgba(200, 151, 90, 0.4);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-zh {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
    }

    .logo-en {
      font-family: var(--font-latin);
      font-size: 11px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 0;
      list-style: none;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      display: block;
      padding: 24px 18px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 10px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
      min-width: 200px;
      padding: 8px;
      z-index: 200;
    }

    .nav-links li:hover .dropdown {
      display: block;
    }

    .dropdown a {
      padding: 10px 16px;
      border-radius: 6px;
      font-size: 13px;
      color: var(--ink-soft);
    }

    .dropdown a:hover {
      background: var(--gold-pale);
      color: var(--gold);
    }

    .nav-cta {
      padding: 10px 24px;
      background: var(--gold);
      color: white;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(200, 151, 90, 0.3);
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(200, 151, 90, 0.4);
    }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(15, 23, 42, 0.18);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      margin-left: auto;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-mobile-cta {
      display: none;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200, 151, 90, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
      z-index: 0;
    }

    /* Decorative Chinese pattern */
    .hero-pattern {
      position: absolute;
      right: -60px;
      top: -60px;
      width: 500px;
      height: 500px;
      opacity: 0.04;
      z-index: 0;
    }

    .hero-left {
      position: relative;
      z-index: 1;
      padding: 80px 48px 80px 80px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-latin);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(36px, 4vw, 58px);
      font-weight: 900;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hero h1 .accent {
      color: var(--gold);
      position: relative;
    }

    .hero h1 .accent::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
    }

    .hero-sub {
      font-size: 16px;
      color: var(--ink-soft);
      max-width: 460px;
      line-height: 1.8;
      margin-bottom: 16px;
      font-weight: 300;
    }

    .hero-en {
      font-family: var(--font-latin);
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 40px;
      font-weight: 300;
      font-style: italic;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-gold {
      padding: 14px 30px;
      background: var(--gold);
      color: white;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(200, 151, 90, 0.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(200, 151, 90, 0.4);
    }

    .btn-outline {
      padding: 14px 30px;
      background: transparent;
      color: var(--ink);
      border: 1.5px solid rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-trust {
      display: flex;
      gap: 32px;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
    }

    .trust-num {
      font-family: var(--font-latin);
      font-size: 28px;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }

    .trust-label {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    .hero-right {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }

    /* Service cards floating in hero */
    .hero-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 460px;
      width: 100%;
    }

    .hero-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
      transition: all 0.3s;
      cursor: default;
    }

    .hero-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      border-color: var(--border);
    }

    .hero-card.featured {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, var(--ink), var(--ink-mid));
      color: white;
      border-color: transparent;
    }

    .card-icon {
      font-size: 28px;
      margin-bottom: 12px;
      display: block;
    }

    .hero-card h4 {
      font-family: var(--font-serif);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .hero-card.featured h4 {
      color: var(--gold-light);
    }

    .hero-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .hero-card.featured p {
      color: rgba(255, 255, 255, 0.6);
    }

    .card-badge {
      display: inline-block;
      padding: 3px 8px;
      background: var(--gold-pale);
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.06em;
      margin-bottom: 8px;
      font-family: var(--font-latin);
    }

    .hero-card.featured .card-badge {
      background: rgba(200, 151, 90, 0.2);
    }

    /* ── DIVIDER ── */
    .divider {
      text-align: center;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 12px;
      letter-spacing: 0.1em;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── SECTIONS ── */
    .section {
      padding: 100px 80px;
    }

    .section-sm {
      padding: 60px 80px;
    }

    .section-dark {
      background: var(--ink);
      color: white;
    }

    .section-cream {
      background: var(--cream);
    }

    .section-label {
      font-family: var(--font-latin);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 15px;
      color: var(--muted);
      max-width: 580px;
      line-height: 1.8;
      font-weight: 300;
    }

    .section-dark .section-title {
      color: white;
    }

    .section-dark .section-sub {
      color: rgba(255, 255, 255, 0.5);
    }

    /* ── TWO DIVISIONS ── */
    .divisions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .division {
      padding: 80px;
      position: relative;
      overflow: hidden;
    }

    .division-hr {
      background: var(--cream);
      border-right: 1px solid var(--border);
    }

    .division-it {
      background: var(--ink);
      color: white;
    }

    .division-it .section-sub {
      color: rgba(255, 255, 255, 0.5);
    }

    .division-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 28px;
    }

    .division-hr .division-icon {
      background: var(--gold-pale);
    }

    .division-it .division-icon {
      background: rgba(200, 151, 90, 0.15);
    }

    .division-services {
      list-style: none;
      margin: 28px 0 36px;
    }

    .division-services li {
      padding: 12px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink-soft);
    }

    .division-it .division-services li {
      border-bottom-color: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.65);
    }

    .division-services li::before {
      content: '→';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    /* ── SERVICE DEEP DIVES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 32px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      border-color: transparent;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      font-size: 36px;
      margin-bottom: 20px;
      display: block;
    }

    .service-card h3 {
      font-family: var(--font-serif);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .service-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .service-tag {
      display: inline-block;
      padding: 4px 10px;
      background: var(--gold-pale);
      border-radius: 6px;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      font-family: var(--font-latin);
      letter-spacing: 0.05em;
    }

    /* IT SERVICES specifically */
    .it-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .it-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 28px;
      transition: all 0.3s;
    }

    .it-card:hover {
      background: rgba(200, 151, 90, 0.08);
      border-color: rgba(200, 151, 90, 0.2);
      transform: translateY(-4px);
    }

    .it-card h4 {
      font-family: var(--font-serif);
      font-size: 16px;
      font-weight: 700;
      color: white;
      margin: 16px 0 10px;
    }

    .it-card p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    .it-icon {
      font-size: 28px;
    }

    /* ── PROCESS ── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
      opacity: 0.3;
    }

    .process-step {
      text-align: center;
      padding: 0 16px;
    }

    .step-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--gold);
      color: white;
      font-family: var(--font-latin);
      font-size: 18px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 4px 16px rgba(200, 151, 90, 0.4);
    }

    .process-step h4 {
      font-family: var(--font-serif);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .process-step p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── TESTIMONIALS ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 56px;
    }

    .testimonial {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 28px;
      position: relative;
    }

    .testimonial::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 64px;
      color: var(--gold);
      opacity: 0.2;
      position: absolute;
      top: 16px;
      left: 24px;
      line-height: 1;
    }

    .testimonial p {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 20px;
      padding-top: 20px;
    }

    .testimonial-author {
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
    }

    .testimonial-role {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* ── GROUP PRODUCTS ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 56px;
    }

    .product-card {
      background: white;
      border: 1px solid var(--border-light);
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
      border-color: rgba(255, 107, 53, 0.32);
    }

    .product-kicker {
      display: inline-block;
      font-family: var(--font-latin);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .product-card h3 {
      font-family: var(--font-serif);
      font-size: 26px;
      line-height: 1.15;
      margin-bottom: 12px;
    }

    .product-card p {
      font-size: 16px;
      line-height: 1.75;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }

    .product-link {
      font-family: var(--font-latin);
      font-size: 15px;
      font-weight: 700;
      color: #00a9bb;
      text-decoration: none;
    }

    .product-link:hover {
      color: var(--gold);
    }

    /* ── CONTACT ── */
    .contact-grid {
      margin-top: 56px;
    }

    .contact-columns {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: start;
    }

    .contact-panel {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    }

    .contact-panel-title {
      font-family: var(--font-serif);
      font-size: 28px;
      font-weight: 700;
      color: white;
      margin-bottom: 18px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
    }

    .contact-item:last-child {
      border-bottom: none;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .contact-detail h5 {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 4px;
      font-family: var(--font-latin);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .contact-detail p,
    .contact-detail a {
      font-size: 15px;
      color: white;
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-detail a:hover {
      color: var(--gold-light);
    }

    .contact-quick-links {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .contact-quick-links a {
      display: block;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      color: white;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s;
    }

    .contact-quick-links a:hover {
      border-color: rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.14);
    }

    /* ── GUARANTEE BANNER ── */
    .guarantee {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      padding: 48px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .guarantee-text h3 {
      font-family: var(--font-serif);
      font-size: 26px;
      font-weight: 900;
      color: white;
      margin-bottom: 6px;
    }

    .guarantee-text p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      color: white;
      padding: 64px 80px 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-brand .logo-zh {
      color: white;
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 16px;
      max-width: 240px;
      line-height: 1.8;
    }

    .footer-col h5 {
      font-family: var(--font-latin);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.25);
    }

    .license-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      background: rgba(200, 151, 90, 0.12);
      border: 1px solid rgba(200, 151, 90, 0.2);
      border-radius: 6px;
      font-size: 11px;
      color: var(--gold);
      font-family: var(--font-latin);
    }


    /* ── READABILITY REDESIGN ── */
    body {
      font-size: 18px;
      line-height: 1.85;
    }

    nav {
      height: 84px;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    .logo-mark {
      width: 50px;
      height: 50px;
      font-size: 24px;
    }

    .logo-zh {
      font-size: 21px;
    }

    .logo-en {
      font-size: 12px;
    }

    .nav-links a {
      font-size: 17px;
      font-weight: 600;
      padding: 30px 18px;
    }

    .dropdown a {
      font-size: 15px;
    }

    .nav-cta {
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 10px;
    }

    .hero {
      min-height: 100vh;
    }

    .hero-eyebrow {
      font-size: 13px;
    }

    .hero h1 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: 1.06;
    }

    .hero-sub {
      font-size: 22px;
      max-width: 720px;
      line-height: 1.75;
    }

    .hero-en {
      font-size: 18px;
    }

    .btn-gold,
    .btn-outline {
      font-size: 17px;
      padding: 15px 34px;
      border-radius: 10px;
    }

    .trust-num {
      font-size: 46px;
    }

    .trust-label {
      font-size: 16px;
    }

    .section-label,
    .footer-col h5,
    .license-badge {
      font-size: 12px;
    }

    .section-title {
      font-size: clamp(40px, 5vw, 68px);
      line-height: 1.15;
    }

    .section-sub {
      font-size: 20px;
      line-height: 1.85;
      max-width: 980px;
    }

    .division-services li,
    .service-card p,
    .it-card p,
    .process-step p,
    .testimonial p {
      font-size: 17px;
    }

    .service-card h3,
    .it-card h4,
    .process-step h4,
    .testimonial-author,
    .contact-panel-title {
      font-size: 24px;
    }

    .testimonial-role {
      font-size: 14px;
    }

    .contact-detail h5 {
      font-size: 14px;
    }

    .contact-detail p,
    .contact-detail a,
    .contact-quick-links a,
    .footer-col a {
      font-size: 17px;
    }

    .footer-bottom p {
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      body {
        font-size: 17px;
      }

      .hero-left {
        padding: 64px 28px;
      }

      .hero h1 {
        font-size: clamp(42px, 9vw, 64px);
      }

      .hero-sub {
        font-size: 19px;
      }

      .section-title {
        font-size: clamp(34px, 6vw, 52px);
      }

      .section-sub {
        font-size: 18px;
      }

      .nav-links a {
        font-size: 15px;
      }
    }

    @media (max-width: 680px) {
      body {
        font-size: 16px;
        line-height: 1.75;
      }

      nav {
        height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
      }

      .logo-zh {
        font-size: 18px;
      }

      .hero h1 {
        font-size: clamp(36px, 11vw, 52px);
      }

      .hero-sub {
        font-size: 18px;
      }

      .btn-gold,
      .btn-outline,
      .nav-cta {
        font-size: 16px;
      }

      .section-title {
        font-size: clamp(30px, 9vw, 44px);
      }

      .section-sub,
      .service-card p,
      .it-card p,
      .process-step p,
      .testimonial p,
      .contact-detail p,
      .contact-detail a,
      .footer-col a {
        font-size: 16px;
      }
    }

    /* ── SCROLL ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 1024px) {
      nav {
        padding: 14px 20px;
        height: auto;
        flex-wrap: wrap;
        row-gap: 12px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-cta {
        display: none;
      }

      .nav-links {
        display: none;
        width: 100%;
        order: 10;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.12);
        padding-top: 10px;
      }

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

      .nav-links li {
        width: 100%;
      }

      .nav-links a {
        padding: 12px 4px;
        font-size: 18px;
      }

      .dropdown {
        display: block;
        position: static;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        padding: 2px 0 8px 12px;
      }

      .dropdown a {
        font-size: 15px;
        padding: 8px 4px;
        color: var(--ink-soft);
      }

      .nav-mobile-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 8px;
        padding: 12px 16px;
        border-radius: 10px;
        background: var(--gold);
        color: white !important;
        font-weight: 700;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-right {
        display: none;
      }

      .hero-left {
        padding: 80px 32px;
      }

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

      .division {
        padding: 60px 32px;
      }

      .division-hr {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

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

      .it-services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }

      .process-steps::before {
        display: none;
      }

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

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

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

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

      .section {
        padding: 60px 32px;
      }

      .guarantee {
        padding: 40px 32px;
        flex-direction: column;
        text-align: center;
      }

      footer {
        padding: 48px 32px 24px;
      }

    }

    @media (max-width: 680px) {
      .logo-en {
        display: none;
      }

      .hero-trust {
        flex-wrap: wrap;
        gap: 20px;
      }

      .it-services-grid {
        grid-template-columns: 1fr;
      }

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

      .hero-cards {
        grid-template-columns: 1fr;
      }

      .product-card {
        padding: 22px;
      }
    }

    /* ── VISUAL REDESIGN V2 (LAYOUT + COLOR) ── */
    :root {
      --gold: #ff6b35;
      --gold-light: #ff9f1c;
      --gold-pale: rgba(255, 107, 53, 0.14);
      --ink: #0f172a;
      --ink-mid: #1e293b;
      --ink-soft: #334155;
      --parchment: #f3f8ff;
      --cream: #e9f5ff;
      --border: rgba(15, 23, 42, 0.12);
    }

    body {
      background:
        radial-gradient(1100px 580px at -8% -12%, rgba(0, 186, 201, 0.16), transparent 62%),
        radial-gradient(900px 420px at 98% -4%, rgba(255, 107, 53, 0.2), transparent 58%),
        linear-gradient(180deg, #f6fbff 0%, #edf6ff 42%, #e6f1fb 100%);
      color: #0b1220;
    }

    nav {
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .hero {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 28px;
      align-items: stretch;
      max-width: 1520px;
      margin: 0 auto;
      padding: 26px 24px 58px;
      min-height: auto;
    }

    .hero-bg {
      border-radius: 28px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.1);
      background:
        linear-gradient(138deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 255, 0.9)),
        radial-gradient(ellipse 80% 100% at 70% 20%, rgba(0, 186, 201, 0.1) 0%, transparent 68%);
    }

    .hero-left {
      padding: 88px 56px 72px 72px;
    }

    .hero h1 {
      letter-spacing: -0.03em;
    }

    .hero h1 .accent {
      color: #00a9bb;
    }

    .hero-right {
      display: flex;
      align-items: center;
      padding: 22px 22px 22px 0;
    }

    .hero-cards {
      grid-template-columns: 1fr;
      width: 100%;
      gap: 14px;
    }

    .hero-card {
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.9));
      padding: 18px 20px;
    }

    .hero-card.featured {
      background: linear-gradient(145deg, #13233f, #1b3159 55%, #24436f);
      border-color: rgba(255, 255, 255, 0.12);
    }

    .guarantee {
      margin: 14px auto 0;
      max-width: 1460px;
      border-radius: 18px;
      background: linear-gradient(110deg, #ff6b35, #ff9f1c 58%, #ffbf69);
      box-shadow: 0 24px 52px rgba(255, 107, 53, 0.26);
    }

    .divisions {
      max-width: 1460px;
      margin: 54px auto 0;
      gap: 24px;
      background: transparent;
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .division {
      border-radius: 24px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    }

    .division-hr {
      grid-column: 1 / span 7;
      transform: translateY(-22px);
    }

    .division-it {
      grid-column: 8 / span 5;
      transform: translateY(22px);
    }

    .section {
      padding-top: 100px;
      padding-bottom: 100px;
    }

    .section-cream {
      background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    }

    .section-dark {
      background: linear-gradient(160deg, #0f1b34 0%, #17294f 55%, #1f3662 100%);
    }

    .services-grid,
    .it-services-grid,
    .testimonials-grid {
      gap: 24px;
    }

    .service-card,
    .it-card,
    .testimonial,
    .contact-panel {
      border-radius: 18px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    }

    .process-step {
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    }

    footer {
      background: linear-gradient(160deg, #0b1326 0%, #121f3b 60%, #1a2c52 100%);
    }

    @media (max-width: 1200px) {
      .hero {
        grid-template-columns: 1fr;
        padding: 20px 20px 40px;
      }

      .hero-right {
        padding: 0;
      }

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

      .division-hr,
      .division-it {
        grid-column: auto;
        transform: none;
      }
    }

    /* ── ACCESSIBILITY OVERRIDES ── */
    .guarantee {
      background: linear-gradient(110deg, #c84f1f, #e06a1a 58%, #f08c2b);
    }

    .guarantee-text h3,
    .guarantee-text p {
      color: #fff;
      text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
    }

    .hero-card.featured p,
    .section-dark .section-sub,
    .division-it .section-sub,
    .it-card p,
    .contact-detail h5,
    .footer-brand p,
    .footer-col a,
    .footer-bottom p {
      color: rgba(255, 255, 255, 0.82);
    }

    .footer-col h5,
    .license-badge,
    .section-label,
    .product-kicker {
      color: #ffb066;
    }

    .hero-en,
    .testimonial-role,
    .process-step p,
    .divider,
    .section-sub,
    .hero-card p,
    .product-card p {
      color: #4b5563;
    }

    .contact-quick-links a {
      color: #fff;
    }

    .btn-outline-light {
      background: #fff;
      border-color: #fff;
      color: var(--gold);
      font-weight: 700;
      white-space: nowrap;
      padding: 14px 28px;
    }

    .section-title-inverse {
      color: #fff;
    }

    .logo-link {
      text-decoration: none;
    }

    .footer-brand-block {
      margin-top: 16px;
    }

    .footer-legal-en {
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-family: var(--font-latin);
    }

    .legal-note {
      margin-top: 12px;
      font-size: 12px;
      color: #475569;
    }

    .skip-link {
      position: absolute;
      left: 16px;
      top: 12px;
      z-index: 1000;
      padding: 12px 16px;
      border-radius: 12px;
      background: #0b1220;
      color: #fff;
      text-decoration: none;
      transform: translateY(-140%);
      transition: transform 0.2s ease;
    }

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

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .gtm-noscript-frame {
      display: none;
      visibility: hidden;
    }

    a {
      text-underline-offset: 0.18em;
    }

    .footer-col a,
    .contact-detail a,
    .product-link,
    .nav-links a {
      text-decoration-thickness: 1.5px;
    }

    .footer-col a:hover,
    .footer-col a:focus-visible,
    .contact-detail a:hover,
    .contact-detail a:focus-visible,
    .product-link:hover,
    .product-link:focus-visible {
      text-decoration: underline;
    }

    a:focus-visible,
    button:focus-visible,
    .nav-cta:focus-visible,
    .btn-gold:focus-visible,
    .btn-outline:focus-visible,
    .contact-quick-links a:focus-visible,
    .hamburger:focus-visible {
      outline: 3px solid #00a9bb;
      outline-offset: 3px;
      box-shadow: 0 0 0 6px rgba(0, 169, 187, 0.18);
    }

    .nav-links a,
    .nav-cta,
    .btn-gold,
    .btn-outline,
    .contact-quick-links a,
    .hamburger {
      min-height: 44px;
    }

    .nav-links a,
    .nav-cta,
    .btn-gold,
    .btn-outline {
      display: inline-flex;
      align-items: center;
    }

    .nav-links a {
      line-height: 1.35;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #0b1220;
      text-decoration: underline;
    }

    .hero-card.featured p,
    .it-card p,
    .footer-brand p,
    .footer-col a,
    .footer-bottom p,
    .footer-meta a,
    .footer-meta p {
      color: rgba(255, 255, 255, 0.88);
    }

    .section-dark .section-sub,
    .division-it .section-sub,
    .contact-detail h5 {
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-card p,
    .product-card p,
    .process-step p,
    .section-sub,
    .testimonial-role,
    .divider,
    .hero-en {
      color: #334155;
    }

    .guarantee-text h3 {
      font-weight: 800;
    }

    .guarantee-text p {
      max-width: 72ch;
      font-weight: 600;
    }

    @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;
      }
    }

    /* Legal pages */
    .breadcrumb a,
    .toc-list a,
    .legal-section a,
    .contact-box a,
    .info-box a,
    .cookie-card a {
      text-decoration: underline;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 0.18em;
    }

    .breadcrumb a,
    .legal-section a,
    .contact-box a,
    .info-box a,
    .cookie-card a {
      color: #0f6f7a;
    }

    .breadcrumb a:hover,
    .breadcrumb a:focus-visible,
    .legal-section a:hover,
    .legal-section a:focus-visible,
    .contact-box a:hover,
    .contact-box a:focus-visible,
    .info-box a:hover,
    .info-box a:focus-visible,
    .cookie-card a:hover,
    .cookie-card a:focus-visible {
      color: #0b1220;
    }

    .toc-list a {
      min-height: 44px;
      display: flex;
      align-items: center;
      line-height: 1.4;
    }

    .toc-list a:hover,
    .toc-list a:focus-visible,
    .toc-list a.active {
      background: rgba(0, 169, 187, 0.14);
      color: #0b1220;
      text-decoration: underline;
    }

    .legal-section,
    .legal-toc,
    .cookie-card,
    .contact-box,
    .info-box {
      color: #334155;
    }

    .legal-section,
    .legal-layout [id] {
      scroll-margin-top: 110px;
    }

    .browser-table th,
    .browser-table td {
      border-bottom: 1px solid rgba(15, 23, 42, 0.12);
      padding: 14px 12px;
      text-align: left;
      vertical-align: top;
    }

    .browser-table caption {
      caption-side: top;
      text-align: left;
      font-weight: 700;
      color: #0b1220;
      margin-bottom: 10px;
    }

    .browser-table th {
      color: #0b1220;
      font-weight: 800;
      background: rgba(15, 23, 42, 0.04);
    }

    .browser-table tr:last-child td {
      border-bottom: 0;
    }

    .footer-bottom p[style] {
      color: rgba(255, 255, 255, 0.72) !important;
      font-size: 12px !important;
    }

    a[style*="color:var(--jade)"] {
      color: #0f6f7a !important;
      text-decoration: underline !important;
      text-decoration-thickness: 1.5px;
      text-underline-offset: 0.18em;
    }

    a[style*="color:var(--jade)"]:hover,
    a[style*="color:var(--jade)"]:focus-visible {
      color: #0b1220 !important;
    }

    p[style*="color:var(--ink-40)"] {
      color: #475569 !important;
    }
