﻿/* ─────────────────────────────────────────────────────────────────
   zh.css  —  Dragon Trail International  Chinese-language site
   Standalone: does NOT import styles.css.
   ───────────────────────────────────────────────────────────────── */

/* ─── Reset & Box Model ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── Variables ─────────────────────────────────────────────────── */
:root {
  /* Typography */
  --font-body:    "PingFang SC", "Noto Sans SC", "Microsoft YaHei", -apple-system, sans-serif;
  --font-heading: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", -apple-system, sans-serif;

  /* Colour tokens (mirrored from styles.css) */
  --brand:        #C73E3A;
  --brand-hover:  #a82e2b;
  --text:         #2D2D2D;
  --text-light:   #666666;
  --text-muted:   #999999;
  --bg:           #FAFAFA;
  --bg-white:     #FFFFFF;
  --border:       #E8E8E8;

  /* Layout */
  --max-width:    1440px;
  --nav-height:   100px;
}

/* ─── Base ───────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(45, 45, 45, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  height: var(--nav-height);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.nav-logo {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

/* Nav item wrapper (for dropdowns) */
.nav-item-wrapper {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #2D2D2D;
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.nav-item-wrapper:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* Lang switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 2rem;
  font-size: 14px;
  font-weight: 700;
}

.nav-lang-item {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-lang-item:hover,
.nav-lang-item.active {
  color: #fff;
}

.nav-lang-sep {
  color: rgba(255, 255, 255, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 1.5rem;
  position: relative;
  width: 24px;
  height: 18px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* ─── Mobile Menu ────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #2D2D2D;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 64px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  display: none;
}

.mobile-menu-item {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}

.mobile-menu-item.active {
  color: #fff;
}

.mobile-menu-item-wrapper {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-dropdown {
  padding: 0.25rem 0 0.75rem 1rem;
}

.mobile-dropdown-item {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.mobile-menu-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 14px;
  font-weight: 700;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: #2D2D2D;
  color: white;
  padding: 80px 60px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  height: 48px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 280px;
}

.footer-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

/* ─── ZH Placeholder / Generic page content ─────────────────────── */
.zh-placeholder,
.zh-contact {
  font-family: var(--font-body);
}

/* ─── ZH Contact page ────────────────────────────────────────────── */
.zh-contact-section {
  padding: 80px 100px;
  background: var(--bg-white);
}

.zh-offices-section {
  padding: 0 100px 80px;
  background: var(--bg-white);
}

.zh-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zh-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 32px;
}

.zh-contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.zh-contact-wechat {
  padding: 56px 64px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.zh-contact-wechat-body {
  display: flex;
  align-items: center;
  gap: 32px;
}

.zh-contact-qr {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f4f4f4;
  padding: 6px;
  box-sizing: border-box;
}

.zh-contact-wechat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.zh-contact-wechat-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.zh-contact-overview {
  padding: 56px 64px;
}

.zh-contact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.zh-contact-table tr {
  border-bottom: 1px solid var(--border);
}

.zh-contact-table tr:last-child {
  border-bottom: none;
}

.zh-contact-table-key {
  padding: 14px 0;
  color: var(--text-muted);
  width: 40%;
}

.zh-contact-table-val {
  padding: 14px 0;
  color: var(--text);
  font-weight: 600;
}

.zh-offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.zh-office-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zh-office-region {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.zh-office-city {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.zh-office-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
}

.zh-office-divider {
  width: 32px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.zh-office-addr {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.zh-office-email {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  margin-top: auto;
  text-decoration: none;
}

.zh-office-email:hover {
  text-decoration: underline;
}

/* ─── ZH Page Hero (inner pages) ────────────────────────────────── */
.zh-page-hero {
  background: var(--bg);
  padding: 140px 60px 60px;
  border-bottom: 1px solid var(--border);
}

.zh-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zh-page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.zh-page-hero-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}

/* ─── Team page ──────────────────────────────────────────────────── */
.team-main {
  background-color: #f8f6f6;
}

.team-members {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.team-member {
  padding: 56px 0;
  border-bottom: 1px solid #e8e8e8;
}

.team-member:last-child {
  border-bottom: none;
}

.team-member-inner {
  width: 100%;
}

.team-member-nameblock {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
}

.team-member-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.team-member-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.04em;
  margin: 0;
}

.team-member-grid {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.team-member:nth-child(even) .team-member-grid {
  flex-direction: row-reverse;
}

.team-member:nth-child(even) .team-member-meta {
  text-align: right;
  align-items: flex-end;
}

.team-member-meta {
  width: 25%;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-member-photo {
  position: relative;
  margin-bottom: 24px;
}

.team-member-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}

.team-member-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  background-color: transparent;
  padding: 4px 0;
  color: #999;
  white-space: nowrap;
}

.team-badge .material-symbols-outlined {
  color: #bbb;
  font-size: 16px;
}

.team-member-bio {
  flex: 1;
}

.team-member-bio p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 400;
  margin: 0;
}

.team-brand {
  font-weight: 600;
  color: var(--text);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
    height: 64px;
  }

  .nav-logo {
    height: 38px;
  }

  .nav-menu,
  .nav-lang {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer {
    padding: 60px 20px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Inner page hero */
  .zh-page-hero {
    padding: 100px 20px 40px;
  }
  .zh-page-hero-title {
    font-size: 36px;
  }

  /* Team */
  .team-members {
    padding: 0 20px;
  }
  .team-member {
    padding: 36px 0;
  }
  .team-member-name {
    font-size: 1.25rem;
  }
  .team-member-grid {
    flex-direction: column !important;
    gap: 32px;
  }
  .team-member-meta {
    width: 100%;
    align-items: center !important;
    text-align: center !important;
  }

  /* Contact */
  .zh-contact-section {
    padding: 40px 20px;
  }
  .zh-offices-section {
    padding: 0 20px 40px;
  }
  .zh-contact-card {
    grid-template-columns: 1fr;
  }
  .zh-contact-wechat {
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .zh-contact-wechat-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .zh-contact-overview {
    padding: 36px 24px;
  }
  .zh-offices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .zh-contact-section {
    padding: 60px 40px;
  }
  .zh-offices-section {
    padding: 0 40px 60px;
  }
  .zh-contact-wechat,
  .zh-contact-overview {
    padding: 40px 40px;
  }
  .zh-offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =================================================================
   HOMEPAGE SECTIONS — exact port of marketing-homepage-gentle.html
   ================================================================= */

/* --- Hero --------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  display: flex;
  align-items: center;
  padding: var(--nav-height, 100px) 0 0;
}

.hero-inner {
  max-width: 1440px;
  padding: 0 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(199, 62, 58, 0.08);
  color: var(--brand);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-title em {
  color: var(--brand);
  font-style: normal;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(199, 62, 58, 0.2);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199, 62, 58, 0.3);
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F5F5F5 0%, #EEEEEE 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(199, 62, 58, 0.03) 20px,
    rgba(199, 62, 58, 0.03) 40px
  );
  animation: zh-slide 20s linear infinite;
}

@keyframes zh-slide {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-image-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero-image-content .number {
  font-size: 120px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  opacity: 0.15;
}

.hero-image-content .label {
  font-size: 18px;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-stats-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 25px 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 40px;
}

.stat-float {
  text-align: center;
}

.stat-float-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.stat-float-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 1px;
}

/* --- About -------------------------------------------------------- */
.about {
  padding: 120px 60px;
  background: white;
  position: relative;
  overflow: hidden;
}

.about-seal {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  opacity: 0.05;
  pointer-events: none;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content {
  text-align: center;
}

.about-text {
  font-size: 20px;
  line-height: 2;
  color: var(--text-light);
}

.about-text p + p {
  margin-top: 30px;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

/* --- Section Header (shared) ------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 0;
}

.section-label {
  font-size: 13px;
  color: var(--brand);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
}

/* --- Services ---------------------------------------------------- */
.services {
  padding: 120px 60px;
  background: var(--bg);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 40px;
  align-items: center;
  background: white;
  padding: 35px 45px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.service-row:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateX(10px);
}

.service-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.service-row:hover .service-num {
  color: var(--brand);
}

.service-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.service-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.service-arrow {
  width: 45px;
  height: 45px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.service-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
}

.service-row:hover .service-arrow {
  background: var(--brand);
  border-color: var(--brand);
}

.service-row:hover .service-arrow svg {
  stroke: white;
}

/* --- Solutions --------------------------------------------------- */
.solutions {
  padding: 120px 60px;
  background: white;
}

.solutions-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.solution-card {
  background: var(--bg);
  padding: 45px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform 0.3s;
}

.solution-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.solution-card-link:hover,
.solution-card-link:hover .solution-card {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.solution-card-link:hover::before,
.solution-card-link:hover .solution-card::before {
  transform: scaleY(1);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(199, 62, 58, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.solution-icon .material-symbols-outlined {
  font-size: 28px;
  color: var(--brand);
}

.solution-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.solution-subtitle {
  font-size: 14px;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Cases ------------------------------------------------------- */
.cases {
  padding: 120px 60px;
  background: var(--bg);
}

.cases-container {
  max-width: 1200px;
  margin: 0 auto;
}

.case-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.case-item:last-child {
  margin-bottom: 0;
}

.case-item:nth-child(even) {
  direction: rtl;
}

.case-item:nth-child(even) > * {
  direction: ltr;
}

.case-content {
  padding: 20px 0;
}

.case-tag {
  display: inline-block;
  background: rgba(199, 62, 58, 0.1);
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.case-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.case-title-link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.case-title-link:hover {
  opacity: 0.65;
}

.case-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.case-stats {
  display: flex;
  gap: 40px;
}

.case-stat {
  text-align: left;
}

.case-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.case-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
}

.case-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.case-link:hover {
  opacity: 0.75;
}

/* Mockup visual */
.case-visual {
  position: relative;
}

.mockup-browser {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  background: #f5f5f5;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-content {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f8f8f8 0%, #eeeeee 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.mockup-decoration-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(199,62,58,0.15) 0%, rgba(199,62,58,0.05) 100%);
  top: 20%;
  left: 10%;
}

.mockup-decoration-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(199,62,58,0.1) 0%, transparent 100%);
  bottom: 15%;
  right: 15%;
}

.mockup-text {
  font-size: 48px;
  font-weight: 800;
  color: rgba(199, 62, 58, 0.15);
  letter-spacing: 4px;
}

.mockup-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.mockup-float-1 {
  top: -20px;
  right: -30px;
  width: 140px;
}

.mockup-float-2 {
  bottom: -15px;
  left: -25px;
  width: 120px;
}

.mockup-float-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mockup-float-bar:nth-child(1) { width: 100%; background: var(--brand); }
.mockup-float-bar:nth-child(2) { width: 70%; }
.mockup-float-bar:nth-child(3) { width: 85%; }

/* --- Media ------------------------------------------------------- */
.media {
  padding: 100px 60px;
  background: white;
  border-top: 1px solid var(--border);
}

.media-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.media-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 35px 50px;
  background: var(--bg);
  border-radius: 16px;
  transition: all 0.3s;
  cursor: pointer;
}

.media-card:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.media-logo {
  width: 60px;
  height: 60px;
  background: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.media-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.media-info p {
  font-size: 14px;
  color: var(--text-light);
}

/* --- Company News ------------------------------------------------ */
.zh-news {
  padding: 100px 60px;
  background: white;
  border-top: 1px solid var(--border);
}

.zh-news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.zh-news-header {
  margin-bottom: 48px;
  text-align: center;
}

.zh-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}

.zh-news-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  transition: background 0.2s;
}

.zh-news-item:hover {
  background: var(--bg);
}

.zh-news-date {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}

.zh-news-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.zh-news-item:hover .zh-news-title {
  color: var(--brand);
}

.zh-news-footer {
  margin-top: 32px;
  text-align: right;
}

.zh-news-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.zh-news-more:hover {
  color: var(--brand);
}

/* --- English CTA ------------------------------------------------- */
.english-cta {
  background: var(--brand);
  padding: 100px 60px;
  text-align: center;
}

.english-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.english-cta-inner p {
  font-size: 24px;
  color: white;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
}

.english-cta-link {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 35px;
  border: 2px solid white;
  border-radius: 4px;
  transition: all 0.3s;
}

.english-cta-link:hover {
  background: white;
  color: var(--brand);
}

/* =================================================================
   RESPONSIVE — HOMEPAGE
   ================================================================= */
@media (max-width: 1100px) {
  .hero {
    padding: 120px 40px 0;
  }
  .hero-inner {
    padding: 0 40px;
    gap: 60px;
  }
  .about {
    padding: 80px 40px;
  }
  .services {
    padding: 80px 40px;
  }
  .solutions {
    padding: 80px 40px;
  }
  .cases {
    padding: 80px 40px;
  }
  .media {
    padding: 80px 40px;
  }
  .english-cta {
    padding: 80px 40px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 100px 30px 80px;
    min-height: auto;
  }
  .hero-inner {
    padding: 0 30px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-stats-float {
    position: static;
    margin-top: 1.5rem;
    display: inline-flex;
    border-radius: 12px;
  }
  .about {
    padding: 80px 30px;
  }
  .about-seal {
    display: none;
  }
  .about-text {
    font-size: 17px;
  }
  .section-title {
    font-size: 30px;
  }
  .services {
    padding: 80px 30px;
  }
  .service-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    padding: 25px 30px;
    gap: 15px;
  }
  .service-desc {
    grid-column: 2;
  }
  .service-arrow {
    display: none;
  }
  .service-row:hover {
    transform: none;
  }
  .solutions {
    padding: 80px 30px;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    padding: 30px;
  }
  .cases {
    padding: 80px 30px;
  }
  .case-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    direction: ltr;
  }
  .case-item:nth-child(even) {
    direction: ltr;
  }
  .case-title {
    font-size: 26px;
  }
  .case-visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
  .media {
    padding: 60px 30px;
  }
  .media-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .media-card {
    padding: 25px 30px;
  }
  .zh-news {
    padding: 60px 30px;
  }
  .zh-news-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .zh-news-item {
    padding: 22px 0;
    border-left: none;
    border-right: none;
  }
  .english-cta {
    padding: 60px 30px;
  }
  .english-cta-inner p {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-stats-float {
    gap: 20px;
    padding: 18px 20px;
  }
  .stat-float-number {
    font-size: 24px;
  }
  .case-stats {
    gap: 25px;
  }
  .case-stat-number {
    font-size: 26px;
  }
}

/* ── ZH News Listing Page ─────────────────────────────────────────── */

.zh-newslist-section {
  padding: 80px 60px;
  background: #fff;
}

.zh-newslist-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e4e4e4;
}

.zh-newslist-row {
  display: flex;
  align-items: baseline;
  gap: 48px;
  padding: 22px 0;
  border-bottom: 1px solid #ebebeb;
  text-decoration: none;
  transition: background 0.15s;
}

.zh-newslist-row:hover {
  background: #fafafa;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.zh-newslist-date {
  font-size: 13px;
  color: #999;
  min-width: 110px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.zh-newslist-row--pinned {
  background: #fdfaf7;
}

.zh-newslist-pin {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #b85c38;
  border: 1px solid #e8c4b0;
  border-radius: 3px;
  padding: 1px 6px;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.zh-newslist-title {
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.zh-newslist-row:hover .zh-newslist-title {
  color: var(--brand);
}

.zh-newslist-empty {
  padding: 40px 0;
  color: #999;
  font-size: 14px;
}

/* ── ZH News Article Page ─────────────────────────────────────────── */

.zh-article-header {
  padding: 140px 60px 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.zh-article-header-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zh-article-back {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  margin-bottom: 28px;
}

.zh-article-back:hover {
  color: var(--text);
}

.zh-article-date {
  display: block;
  font-size: 13px;
  color: #aaa;
  letter-spacing: 0.02em;
}

.zh-article-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  max-width: 760px;
  margin: 0;
}

.zh-article-body {
  background: #fff;
  padding: 0;
}

.zh-article-body-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 60px 80px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
}

.zh-article-body-inner p {
  margin: 0 0 1.3em;
}

.zh-article-body-inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.4em 0 0.7em;
}

.zh-article-body-inner h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2em 0 0.6em;
}

.zh-article-body-inner ul,
.zh-article-body-inner ol {
  padding-left: 1.5em;
  margin: 0 0 1.3em;
}

.zh-article-body-inner li {
  margin-bottom: 0.5em;
}

.zh-article-body-inner strong {
  font-weight: 600;
  color: #2a2a2a;
}

.zh-article-body-inner em {
  font-style: italic;
  color: #555;
}

.zh-article-body-inner blockquote {
  border-left: 3px solid #ddd;
  margin: 1.8em 0;
  padding: 0.5em 0 0.5em 1.5em;
  color: #666;
  font-style: italic;
}

.zh-article-body-inner a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.zh-article-end {
  border-top: 1px solid var(--border);
  padding: 32px 60px 60px;
  background: #fff;
}

.zh-article-end-inner {
  max-width: 780px;
  margin: 0 auto;
}

.zh-article-back-btn {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.zh-article-back-btn:hover {
  color: var(--text);
}

/* ── ZH Case Study Page ───────────────────────────────────────────── */

.zh-case {
  background: #fff;
}

.zh-case-header {
  padding: 140px 60px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.zh-case-header-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.zh-case-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding-top:30px;
}

.zh-case-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
}

.zh-case-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0;
}

.zh-case-meta {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 32px;
}

.zh-case-meta-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 36px;
}

.zh-case-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 36px 0 0;
  flex-shrink: 0;
  align-self: center;
}

.zh-case-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}

.zh-case-meta-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.zh-case-body {
  background: #fff;
  padding: 0;
}

.zh-case-body-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 80px 80px 120px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text);
}

.zh-case-body-inner img {
  display: block;
  width: calc(100% + 100px);
  margin-left: -120px;
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.zh-case-body-inner p {
  margin: 0 0 1.3em;
}

.zh-case-body-inner h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.4em 0 0.7em;
}

.zh-case-body-inner h2:first-child {
  margin-top: 0;
}

.zh-case-body-inner h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2em 0 0.6em;
}

.zh-case-body-inner ul,
.zh-case-body-inner ol {
  padding-left: 1.5em;
  margin: 0 0 1.3em;
}

.zh-case-body-inner li {
  margin-bottom: 0.5em;
}

.zh-case-body-inner strong {
  font-weight: 600;
  color: #2a2a2a;
}

.zh-case-body-inner em {
  font-style: italic;
  color: #555;
}

.zh-case-body-inner blockquote {
  border-left: 3px solid #ddd;
  margin: 1.8em 0;
  padding: 0.5em 0 0.5em 1.5em;
  color: #666;
  font-style: italic;
}

.zh-case-body-inner a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── ZH News responsive ───────────────────────────────────────────── */

@media (max-width: 900px) {
  .zh-newslist-section {
    padding: 60px 24px;
  }

  .zh-newslist-row {
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
  }

  .zh-newslist-date {
    min-width: auto;
  }

  .zh-article-header {
    padding: 120px 24px 40px;
  }

  .zh-article-title {
    font-size: 1.5rem;
  }

  .zh-article-body-inner {
    padding: 40px 24px 60px;
    font-size: 15px;
  }

  .zh-article-end {
    padding: 28px 24px 48px;
  }

  .zh-case-header {
    padding: 120px 24px 40px;
  }

  .zh-case-header-inner {
    height: auto;
    min-height: 0;
    gap: 24px;
  }

  .zh-case-title {
    font-size: 1.5rem;
  }

  .zh-case-meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .zh-case-meta-divider {
    display: none;
  }

  .zh-case-meta-col {
    padding-right: 0;
    min-width: 120px;
  }

  .zh-case-body-inner {
    padding: 40px 24px 60px;
    font-size: 15px;
  }

  .zh-case-body-inner img {
    width: 100%;
    margin-left: 0;
  }
}

/* ── Tips Card (.zh-sol-tips-*) ──────────────────────────────── */

.zh-sol-tips-section {
  background: #F7F7F7;
  padding: 60px 0;
}

.zh-sol-tips-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.zh-sol-tips-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.zh-sol-tips-left {
  background: #EDE7E0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 52px 40px;
}

.zh-sol-tips-icon-box {
  width: 64px;
  height: 64px;
  background: #C73E3A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zh-sol-tips-icon-box svg {
  width: 34px;
  height: 34px;
}

.zh-sol-tips-title {
  font-size: 19px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
}

.zh-sol-tips-sub {
  font-size: 10px;
  font-weight: 600;
  color: #AAAAAA;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.zh-sol-tips-right {
  background: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 52px 72px;
}

.zh-sol-tips-para {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 900px) {
  .zh-sol-tips-inner {
    padding: 0 24px;
  }

  .zh-sol-tips-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .zh-sol-tips-left {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 4px;
    align-items: center;
    padding: 36px 24px;
  }

  .zh-sol-tips-icon-box {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
  }

  .zh-sol-tips-title {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    font-size: 17px;
  }

  .zh-sol-tips-sub {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .zh-sol-tips-right {
    padding: 32px 24px;
  }
}

/* ============================================================
   ZH Solution Pages (.zh-sol-*)
   ============================================================ */

/* Hero */
.zh-sol-hero {
  background: #fff;
  padding: 140px 0 80px;
  border-bottom: 1px solid #eee;
}

.zh-sol-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.zh-sol-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C73E3A;
  margin-bottom: 20px;
}

.zh-sol-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1.2;
  margin: 0 0 24px;
}

.zh-sol-hero-desc {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* Section base */
.zh-sol-section {
  padding: 80px 0;
}

.zh-sol-section--gray {
  background: #F5F5F5;
}

.zh-sol-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Two-column row */
.zh-sol-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.zh-sol-row--flip > *:nth-child(1) { order: 2; }
.zh-sol-row--flip > *:nth-child(2) { order: 1; }

.zh-sol-text {
  /* column width handled by grid */
}

.zh-sol-visual {
  width: 100%;
  min-width: 0;
}

.zh-sol-visual-placeholder {
  display: block;
  background: #e8e8e8;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  width: 100%;
  min-height: 160px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* Icon + title inline */
.zh-sol-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.zh-sol-icon {
  font-size: 28px;
  color: #C73E3A;
  flex-shrink: 0;
}

.zh-sol-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0;
  line-height: 1.3;
}

.zh-sol-section-desc {
  font-size: 0.975rem;
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px;
}

/* Checklist */
.zh-sol-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zh-sol-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #444;
  padding: 6px 0;
}

.zh-sol-checklist-item::before {
  content: '\e86c'; /* check material icon codepoint */
  font-family: 'Material Symbols Outlined';
  font-size: 18px;
  color: #C73E3A;
  flex-shrink: 0;
}

/* Centered section */
.zh-sol-section--centered .zh-sol-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.zh-sol-centered-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.zh-sol-section-desc--centered {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.zh-sol-visual--centered {
  flex: none;
  width: 100%;
  max-width: 700px;
  margin-top: 32px;
}

/* CTA Band */
.zh-sol-cta {
  background: #C73E3A;
  padding: 72px 40px;
  text-align: center;
}

.zh-sol-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.zh-sol-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.35;
}

.zh-sol-cta-desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 0 0 32px;
}

.zh-sol-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.zh-sol-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.zh-sol-cta-btn:hover {
  opacity: 0.85;
}

.zh-sol-cta-btn--primary {
  background: #fff;
  color: #C73E3A;
}

.zh-sol-cta-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 900px) {
  .zh-sol-hero-inner {
    padding: 0 24px;
  }

  .zh-sol-hero-title {
    font-size: 2rem;
  }

  .zh-sol-section-inner {
    padding: 0 24px;
  }

  .zh-sol-section {
    padding: 56px 0;
  }

  .zh-sol-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zh-sol-row--flip > *:nth-child(1) { order: 0; }
  .zh-sol-row--flip > *:nth-child(2) { order: 0; }

  .zh-sol-visual--centered {
    max-width: 100%;
  }
}

/* ── Service Pages (.svc-*) ──────────────────────────────────────── */

/* Features Grid — Section 1 */
.svc-features {
  background: #fff;
  padding: 48px 0 72px;
}

.svc-features-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.svc-features-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.svc-features-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 40px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #FAFAFA;
  border-radius: 14px;
  padding: 28px 24px;
}

.svc-card-icon {
  width: 46px;
  height: 46px;
  background: #FEF1F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.svc-card-icon .material-symbols-outlined {
  font-size: 22px;
  color: #C73E3A;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.svc-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.svc-card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* Section 2 — Image / Points */
.svc-section2 {
  background: #F7F5F2;
  padding: 64px 0;
}

.svc-section2-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.svc-section2-header {
  margin-bottom: 48px;
}

.svc-section2-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.svc-section2-sub {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.svc-section2-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.svc-section2-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.svc-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.svc-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #FEF1F0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-point-icon .material-symbols-outlined {
  font-size: 20px;
  color: #C73E3A;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.svc-point-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.svc-point-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.svc-section2-screens {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.svc-screen-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.svc-screen-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  object-fit: cover;
  display: block;
}

.svc-screen-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
}

.svc-screen-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.svc-screen-thumb {
  aspect-ratio: 16 / 10;
  min-height: 88px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ede6de 0%, #ddd6ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.8rem;
}

.svc-screen-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Case Study */
.svc-case {
  background: #F7F5F2;
  padding: 72px 0;
}

.svc-case-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-case-image {
  min-width: 0;
}

.svc-case-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 230px;
  background: linear-gradient(135deg, #e0d8d0 0%, #ccc4bc 100%);
  border-radius: 16px;
}

.svc-case-image img {
  width: 100%;
  min-height: 230px;
  border-radius: 16px;
  object-fit: cover;
}

.svc-case-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C73E3A;
  display: block;
  margin-bottom: 16px;
}

.svc-case-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.4;
}

.svc-case-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin: 0 0 32px;
}

.svc-case-stats {
  display: flex;
  gap: 32px;
}

.svc-case-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #C73E3A;
  line-height: 1;
}

.svc-case-stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

/* CTA Band */
.svc-cta {
  background: #C73E3A;
  padding: 64px 0;
  text-align: center;
}

.svc-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.svc-cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.svc-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 32px;
}

.svc-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #C73E3A;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.svc-cta-btn:hover {
  opacity: 0.9;
}

.svc-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.svc-cta-btn--outline:hover {
  border-color: #fff;
}

/* ── Service Pages — Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .svc-features-inner,
  .svc-section2-inner,
  .svc-case-inner,
  .svc-cta-inner {
    padding: 0 24px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-section2-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* prevent grid children from overflowing */
  .svc-section2-points,
  .svc-section2-screens {
    min-width: 0;
    width: 100%;
  }

  .svc-screen-main {
    min-width: 0;
    width: 100%;
  }

  .svc-screen-main img,
  .svc-screen-placeholder {
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .svc-screen-thumbs {
    width: 100%;
    min-width: 0;
  }

  .svc-screen-thumb {
    min-width: 0;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .svc-case-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* prevent grid children from overflowing */
  .svc-case-image,
  .svc-case-content {
    min-width: 0;
    width: 100%;
  }

  .svc-case-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .svc-case-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
  }

  .svc-case-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .svc-cta-title {
    font-size: 1.3rem;
  }
}
