/* ======================================================
   TALLY GLOBAL — DESIGN SYSTEM & STYLES
   Brand: Violet #6047ff | Orange #ff8248 | Green #49d475 | Cyan #5ed7ff
   Font: DM Sans
   ====================================================== */

/* --- CSS Custom Properties --- */
:root {
  --violet: #6047ff;
  --violet-light: #7b66ff;
  --violet-glow: rgba(96, 71, 255, 0.25);
  --orange: #ff8248;
  --orange-light: #ff9966;
  --green: #49d475;
  --cyan: #5ed7ff;
  --black: #212121;
  --dark: #212121;
  --dark-surface: #2a2a2a;
  /* Aliases for service page inline styles */
  --accent: #6047ff;
  --accent-light: #7b66ff;
  --bg-light: #fefcf8;
  --off-white: #fefcf8;
  --text-primary: #212121;
  --text-secondary: #6B7280;
  --text-on-dark: #E5E7EB;
  --text-muted-dark: #9CA3AF;
  --bg-white: #ffffff;
  --bg-off-white: #fefcf8;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --border-light: #e8e8e8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --max-width: 1200px;
  --nav-height: 72px;
  --section-gap: 120px;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  /* China Desk accent — now orange */
  --china-accent: #ff8248;
  --china-accent-light: #ff9966;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 130, 72, 0.3);
  position: relative;
}

.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 4px 20px rgba(255, 130, 72, 0.5), 0 0 40px rgba(255, 130, 72, 0.15);
  transform: translateY(-2px);
}

.btn-xl {
  animation: ctaPulse 3s ease-in-out infinite;
}

.btn-xl:hover {
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(255, 130, 72, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(255, 130, 72, 0.45), 0 0 48px rgba(255, 130, 72, 0.12); }
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--violet);
  color: var(--violet);
}

.btn-ghost-dark:hover {
  background: rgba(96, 71, 255, 0.05);
  border-color: var(--violet-light);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 500;
}

.btn-xl.btn-xl {
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  letter-spacing: -0.01em;
}

/* --- Visual Strip (full-width image with overlay text) --- */
.visual-strip {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.visual-strip img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease-out;
}

.visual-strip:hover img {
  transform: scale(1.03);
}

.visual-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(33, 33, 33, 0.85), rgba(33, 33, 33, 0.3));
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.visual-strip-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  max-width: 500px;
  line-height: 1.35;
}

.visual-strip-text span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 8px;
}

/* --- Visual Split (image + text side by side) --- */
.visual-split {
  padding: 80px 0;
  overflow: hidden;
}

.visual-split-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.visual-split--reverse .visual-split-container {
  direction: rtl;
}

.visual-split--reverse .visual-split-container > * {
  direction: ltr;
}

.visual-split-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.visual-split-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.25;
}

.visual-split-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.visual-split-content p + p {
  margin-top: 12px;
}

/* --- China Desk Visual --- */
.china-visual {
  margin: 0 auto 56px;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.china-visual img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.china-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 130, 72, 0.15), transparent);
  pointer-events: none;
}

/* --- Social Proof Bento Grid --- */
.social-proof-section {
  padding: var(--section-gap) 0;
  background: var(--bg-off-white);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Card 1: Countries stat (cyan) */
.bento-stat-card {
  background: linear-gradient(135deg, #5ed7ff 0%, #3ec4f0 100%);
  color: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.bento-stat-number {
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.4;
}

/* Card 2: Video (spans right column, both rows) */
.bento-video-card {
  grid-column: 2;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #f0ecff 0%, #e8e0ff 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.bento-video-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 280px;
}

.bento-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.bento-video-label {
  text-align: right;
}

.bento-video-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.bento-video-title span {
  color: var(--violet);
}

.bento-video-stars {
  font-size: 1.25rem;
  color: var(--orange);
  margin-top: 4px;
}

/* Card 3: GROWVE case study */
.bento-case-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-case-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bento-case-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.bento-case-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #008250;
  background: rgba(0, 130, 80, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}

.bento-case-body {
  font-size: 1.0625rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}

.bento-case-body strong {
  color: #0d4f3d;
}

.bento-case-products {
  display: flex;
  gap: 8px;
  align-items: center;
}

.bento-case-product-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.bento-case-products span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Bottom row: two cards side by side */
.bento-bottom-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Card 4: Speed stat */
.bento-speed-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.bento-speed-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--violet);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.bento-speed-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.4;
}

/* Card 5: Partnerships (dark) */
.bento-partners-card {
  background: var(--black);
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.bento-partners-text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-on-dark);
}

.bento-partners-text strong {
  color: #fff;
  font-weight: 700;
}

.bento-partners-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bento-partners-logos img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* Bento responsive — tablet */
@media (max-width: 1199px) {
  .bento-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .bento-video-wrapper {
    min-height: 240px;
  }
}

/* Bento responsive — mobile */
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-video-card {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-video-wrapper {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .bento-bottom-row {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .bento-stat-card {
    min-height: 160px;
  }
}

/* ======================================================
   NAVIGATION
   ====================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(33, 33, 33, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-slow);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 30%, var(--orange) 70%, transparent);
  opacity: 0.4;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  z-index: 1001;
}

.logo-svg {
  height: 52px;
  width: auto;
  display: block;
  transform: translateY(-8px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-muted-dark);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .nav-cta,
.nav-right .nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
}

.nav-links .nav-cta:hover,
.nav-right .nav-cta:hover {
  background: var(--orange-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 40px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.lang-switcher a {
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}

.lang-switcher a:hover,
.lang-switcher .lang-active {
  color: #fff;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================================================
   HERO
   ====================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: calc(var(--nav-height) + 40px) 0 80px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 0%, var(--black) 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted-dark);
  font-weight: 400;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

/* Trust Strip */
.trust-strip {
  width: 100%;
  max-width: 800px;
  margin-bottom: 48px;
}

.trust-label {
  font-size: 13px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo-img {
  opacity: 0.75;
  transition: opacity var(--transition-base);
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.partner-logo-img:hover {
  opacity: 1;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 48px;
  width: 100%;
  max-width: 900px;
  justify-content: center;
}

.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-number-text {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 8px;
  max-width: 180px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Section Dividers --- */
.problem-section,
.how-section,
.faq-section {
  position: relative;
}

.problem-section::before,
.how-section::before,
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* --- Bento Grid Polish --- */
.bento-stat-card {
  position: relative;
  overflow: hidden;
}

.bento-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bento-video-card {
  border: 1px solid rgba(96, 71, 255, 0.12);
}

/* ======================================================
   PROBLEM SECTION
   ====================================================== */
.problem-section {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

.problem-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.problem-intro p + p {
  margin-top: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 130, 72, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-closing {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto;
}

/* ======================================================
   SERVICES SECTION
   ====================================================== */
.services-section {
  padding: var(--section-gap) 0;
  background: var(--bg-off-white);
}

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

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

/* Color-coded top borders */
.service-card--violet {
  border-top-color: var(--violet);
}

.service-card--violet:hover {
  border-color: var(--violet);
  border-top-color: var(--violet);
}

.service-card--orange {
  border-top-color: var(--orange);
}

.service-card--orange:hover {
  border-color: var(--orange);
  border-top-color: var(--orange);
}

.service-card--green {
  border-top-color: var(--green);
}

.service-card--green:hover {
  border-color: var(--green);
  border-top-color: var(--green);
}

.service-card--cyan {
  border-top-color: var(--cyan);
}

.service-card--cyan:hover {
  border-color: var(--cyan);
  border-top-color: var(--cyan);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon--violet { background: rgba(96, 71, 255, 0.08); color: var(--violet); }
.service-icon--orange { background: rgba(255, 130, 72, 0.08); color: var(--orange); }
.service-icon--green { background: rgba(73, 212, 117, 0.08); color: var(--green); }
.service-icon--cyan { background: rgba(94, 215, 255, 0.08); color: var(--cyan); }

.service-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Additional Services */
.services-additional {
  max-width: 720px;
  margin: 0 auto;
}

.additional-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.services-additional-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card--compact {
  padding: 24px;
}

.service-card--compact .service-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-card--compact p {
  font-size: 0.875rem;
}

/* ======================================================
   HOW IT WORKS
   ====================================================== */
.how-section {
  padding: var(--section-gap) 0;
  background: var(--bg-off-white);
}

.stepper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
}

.stepper-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #E5E7EB;
  border-radius: 2px;
}

.stepper-line-fill {
  width: 100%;
  height: 0%;
  background: var(--violet);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.stepper-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.step-badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E5E7EB;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 1;
}

.step.active .step-badge {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 0 0 6px var(--violet-glow);
}

.step-content {
  padding-top: 8px;
}

.step-timeline {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  margin-bottom: 4px;
  display: block;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 560px;
}

.timeline-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(96, 71, 255, 0.06);
  border: 1px solid rgba(96, 71, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-callout svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.timeline-callout strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.timeline-callout span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ======================================================
   WHY TALLY
   ====================================================== */
.why-section {
  padding: var(--section-gap) 0;
  background: var(--bg-white);
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-bottom: 64px;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table thead {
  background: var(--bg-off-white);
}

.comparison-table th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: left;
}

.comp-example {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.comparison-feature-col {
  min-width: 220px;
}

.comparison-table td.comparison-tally-col,
.comparison-table th.comparison-tally-col {
  background: rgba(96, 71, 255, 0.04);
}

.comparison-table th.comparison-tally-col {
  color: var(--violet);
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #F3F4F6;
  text-align: center;
  transition: background var(--transition-fast);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table tr:hover td {
  background: rgba(0, 0, 0, 0.01);
}

.comparison-table tr:hover td.comparison-tally-col {
  background: rgba(96, 71, 255, 0.07);
}

.check { font-size: 16px; }
.xmark { font-size: 16px; }
.partial { font-size: 12px; color: var(--text-secondary); font-style: italic; }

/* Differentiator Cards */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all var(--transition-base);
}

.diff-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.02);
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.diff-icon--violet {
  background: rgba(96, 71, 255, 0.06);
  color: var(--violet);
}

.diff-icon--orange {
  background: rgba(255, 130, 72, 0.06);
  color: var(--orange);
}

.diff-icon--green {
  background: rgba(73, 212, 117, 0.06);
  color: var(--green);
}

.diff-icon--cyan {
  background: rgba(94, 215, 255, 0.08);
  color: var(--cyan);
}

.diff-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ======================================================
   MARKET OPPORTUNITY
   ====================================================== */
.market-section {
  padding: var(--section-gap) 0;
  background: var(--black);
  color: #fff;
}

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

.market-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

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

.market-stat .stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.market-stat .stat-number-text {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.market-stat .stat-label {
  color: var(--text-muted-dark);
  max-width: 200px;
  margin: 8px auto 0;
}

.market-body {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.market-body p {
  color: var(--text-on-dark);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.market-body p + p {
  margin-top: 16px;
  font-weight: 500;
}

.market-sources {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted-dark);
  font-style: italic;
}

/* ======================================================
   CHINA DESK
   ====================================================== */
.china-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #fff5ed 0%, #ffe8d6 30%, #fff 70%);
  border-top: 4px solid var(--china-accent);
}

.china-title-zh {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--china-accent);
  display: block;
  margin-top: 8px;
}

.china-body {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.china-body p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.china-body p + p {
  margin-top: 16px;
}

.china-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.china-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.china-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.china-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 130, 72, 0.08);
  color: var(--china-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.china-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.china-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* China Contact Card */
.china-contact-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
}

.china-contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.china-contact-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  border: 2px dashed #D1D5DB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-secondary);
  animation: qr-pulse 3s ease-in-out infinite;
}

@keyframes qr-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 130, 72, 0); }
  50% { box-shadow: 0 0 0 8px rgba(255, 130, 72, 0.08); }
}

.qr-placeholder span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.china-contact-info {
  text-align: left;
}

.china-contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-icon {
  margin-right: 8px;
}

.china-full-page-link {
  color: var(--china-accent);
  font-weight: 500;
}

.china-full-page-link:hover {
  text-decoration: underline;
}

.china-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.china-ctas .btn-primary {
  background: var(--china-accent);
}

.china-ctas .btn-primary:hover {
  background: var(--china-accent-light);
}

/* ======================================================
   TESTIMONIALS CAROUSEL
   ====================================================== */
.testimonials-section {
  padding: var(--section-gap) 0 80px;
  background: var(--bg-white);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 24px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
}

.carousel-card-inner {
  background: var(--black);
  border-radius: 20px;
  padding: 36px 32px 28px;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.carousel-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -12px rgba(0, 0, 0, 0.4);
}

.carousel-company-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.carousel-company-logo-placeholder {
  height: 28px;
  margin-bottom: 16px;
}

.carousel-stars {
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.carousel-quote {
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
  flex: 1;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.carousel-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.carousel-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.carousel-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.carousel-author-info strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.carousel-author-info span {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
}

.carousel-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--violet);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.carousel-flag {
  position: absolute;
  bottom: 28px;
  right: 32px;
  width: 36px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-section {
  padding: var(--section-gap) 0;
  background: var(--bg-off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  text-align: left;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--violet);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 12px;
}

/* ======================================================
   FINAL CTA
   ====================================================== */
.cta-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #3a2daa 0%, var(--violet) 50%, #7b66ff 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-bg-effect {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(94, 215, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cta-section .btn-primary {
  background: var(--orange);
  box-shadow: 0 2px 12px rgba(255, 130, 72, 0.4);
}

.cta-section .btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 4px 20px rgba(255, 130, 72, 0.5);
}

.cta-section .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-section .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* Lead Form */
.lead-form {
  max-width: 680px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

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

.form-grid .form-group:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  transition: all var(--transition-base);
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 130, 72, 0.25);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--black);
  color: #fff;
}

.form-submit {
  width: 100%;
}

/* Trust Signals */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.trust-signal svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--black);
  color: var(--text-muted-dark);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 20px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-lang a {
  color: var(--text-muted-dark);
  transition: color var(--transition-fast);
}

.footer-lang a:hover,
.footer-lang .lang-active {
  color: #fff;
}

/* ======================================================
   ANIMATIONS
   ====================================================== */

/* Fade up on scroll — staggered */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.services-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.services-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }

.problem-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.problem-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.problem-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.problem-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.diff-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.diff-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.diff-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.diff-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Scale-in variant for stats */
.market-stat.animate-on-scroll {
  transform: translateY(24px) scale(0.95);
}

.market-stat.animate-on-scroll.visible {
  transform: translateY(0) scale(1);
}

/* Hero intro animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

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

  .partner-logos {
    gap: 28px;
  }

  .partner-logo-img {
    height: 20px !important;
  }
}

/* ======================================================
   SERVICE PAGES — SHARED STYLES
   ====================================================== */
.service-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
  color: #fff;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet) 30%, var(--orange) 70%, transparent);
  opacity: 0.3;
}

.service-hero .breadcrumb {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-bottom: 16px;
}

.service-hero .breadcrumb a {
  color: var(--violet-light);
  transition: color var(--transition-fast);
}

.service-hero .breadcrumb a:hover {
  color: #fff;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.15;
}

.service-hero p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  max-width: 700px;
  line-height: 1.7;
}

.sp-section {
  padding: 80px 0;
}

.sp-section:nth-child(even) {
  background: var(--bg-off-white);
}

.sp-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.sp-section .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 650px;
}

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

.svc-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social proof bar */
.sp-proof {
  background: linear-gradient(135deg, var(--bg-off-white) 0%, #fff 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--violet);
  color: var(--text-primary);
  padding: 28px 32px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.sp-proof-stat {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--violet);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sp-proof-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sp-proof-text strong {
  color: var(--text-primary);
}

/* Pricing CTA */
.sp-pricing-cta {
  background: linear-gradient(135deg, rgba(96, 71, 255, 0.06) 0%, rgba(96, 71, 255, 0.02) 100%);
  border: 1px solid rgba(96, 71, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}

.sp-pricing-cta h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.sp-pricing-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Service page FAQ */
.sp-faq-item {
  border-bottom: 1px solid var(--border-light);
}

.sp-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--text-primary);
  font-family: inherit;
}

.sp-faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--violet);
}

.sp-faq-q.open::after {
  content: '\2212';
}

.sp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sp-faq-a p {
  padding: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Service page final CTA */
.sp-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.sp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
}

.sp-cta p {
  color: var(--text-on-dark);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Service page responsive */
@media (max-width: 767px) {
  .service-hero {
    padding: calc(var(--nav-height) + 32px) 0 48px;
  }

  .sp-section {
    padding: 56px 0;
  }

  .sp-proof {
    flex-direction: column;
    text-align: center;
  }

  .sp-proof-stat {
    font-size: 2rem;
  }
}

/* ======================================================
   SERVICE PAGE — UNIQUE STYLES
   ====================================================== */

/* --- Legal Formation: Included Grid & Entity Table --- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.included-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.included-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.included-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.entity-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.95rem;
}

.entity-table th,
.entity-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.entity-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}

.entity-table th.rec {
  background: var(--violet);
  color: #fff;
}

.entity-table tr:hover {
  background: #f0f0ff;
}

.entity-table td.rec {
  background: rgba(96, 71, 255, 0.06);
  font-weight: 600;
}

/* --- Legal Formation: Timeline Steps --- */
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
  position: relative;
  padding-left: 48px;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--orange));
}

.tl-step {
  position: relative;
  padding: 20px 0;
}

.tl-step .tl-dot {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(96, 71, 255, 0.15);
}

.tl-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tl-step .tl-time {
  font-size: 0.85rem;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 6px;
}

.tl-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- COFEPRIS: Timeline Table --- */
.tl-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.95rem;
}

.tl-table th,
.tl-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.tl-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}

.tl-table .fast {
  color: var(--green);
  font-weight: 600;
}

.tl-table .med {
  color: #D97706;
  font-weight: 600;
}

.tl-table .slow {
  color: #EF4444;
  font-weight: 600;
}

/* --- COFEPRIS: Approach Grid --- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.approach-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
}

.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.approach-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- COFEPRIS: Case Study --- */
.case-study-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 32px;
}

.case-study-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.case-study-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.case-study-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-study-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #008250;
  background: rgba(0, 130, 80, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.case-stat {
  text-align: center;
  padding: 20px;
  background: var(--bg-off-white);
  border-radius: var(--radius-md);
}

.case-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: -0.02em;
}

.case-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.case-study-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.case-study-body p strong {
  color: var(--text-primary);
}

.case-study-products {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.case-study-products img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.case-study-quote {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.case-study-quote blockquote {
  color: #fff;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  border: none;
  padding: 0;
  margin: 0;
}

.case-study-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.case-study-author strong {
  color: #fff;
  font-size: 0.875rem;
}

.case-study-author span {
  color: var(--text-muted-dark);
  font-size: 0.8rem;
}

/* --- Imports: How Grid --- */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.how-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.how-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.how-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Imports: Cost Table --- */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.95rem;
}

.cost-table th,
.cost-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.cost-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}

/* --- Imports: Disclaimer --- */
.disclaimer {
  background: rgba(96, 71, 255, 0.05);
  border: 1px solid rgba(96, 71, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.disclaimer strong {
  color: var(--text-primary);
}

/* --- Banking: Bank Grid --- */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.bank-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all var(--transition-base);
}

.bank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bank-card.featured {
  border-color: var(--violet);
}

.bank-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bank-card .bank-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.bank-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Banking: Status Flow --- */
.status-flow {
  display: flex;
  gap: 0;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.status-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px 12px;
  position: relative;
}

.status-step::after {
  content: '\2192';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--violet);
  font-size: 1.2rem;
  font-weight: 700;
}

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

.status-step .dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.status-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.status-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Marketplace: Compare Grid --- */
.mp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.mp-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  transition: all var(--transition-base);
}

.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mp-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.mp-card .mp-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--violet);
  margin: 16px 0;
}

.mp-card .mp-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mp-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.mp-card ul {
  list-style: none;
  padding: 0;
}

.mp-card li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.mp-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* --- Marketplace: Badge Section --- */
.badge-section {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.badge-card {
  background: rgba(96, 71, 255, 0.05);
  border: 2px solid var(--violet);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: center;
  min-width: 200px;
}

.badge-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--violet);
}

.badge-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* --- Marketplace: Also Grid --- */
.also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.also-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-base);
}

.also-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.08);
}

.also-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.also-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Trademark: Why Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Trademark: Type Grid --- */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.type-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.type-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.type-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Trademark: Horizontal Timeline --- */
.timeline-h {
  display: flex;
  gap: 0;
  margin-top: 32px;
  position: relative;
}

.timeline-h::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
}

.tl-h-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 48px;
}

.tl-h-step .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.tl-h-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.tl-h-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Immigration: Visa Grid --- */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.visa-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
}

.visa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.visa-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.visa-card .duration {
  font-size: 0.85rem;
  color: var(--violet);
  font-weight: 600;
  margin-bottom: 12px;
}

.visa-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Accounting: Tax Table --- */
.tax-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.95rem;
}

.tax-table th,
.tax-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.tax-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 600;
}

/* --- Accounting: Cycle Steps --- */
.cycle-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.cycle-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.cycle-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.cycle-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cycle-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Service Page Unique Styles: Responsive --- */
@media (max-width: 767px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .entity-table {
    display: block;
    overflow-x: auto;
  }

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

  .tl-table {
    display: block;
    overflow-x: auto;
  }

  .case-study-stats {
    grid-template-columns: 1fr;
  }

  .case-study-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study-card {
    padding: 24px;
  }

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

  .cost-table {
    display: block;
    overflow-x: auto;
  }

  .status-flow {
    flex-direction: column;
    align-items: center;
  }

  .status-step::after {
    display: none;
  }

  .mp-compare,
  .also-grid {
    grid-template-columns: 1fr;
  }

  .badge-section {
    flex-direction: column;
  }

  .timeline-h {
    flex-direction: column;
    gap: 16px;
  }

  .timeline-h::before {
    display: none;
  }

  .tl-h-step {
    padding-top: 0;
    text-align: left;
    padding-left: 24px;
  }

  .tl-h-step .dot {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
  }

  .cycle-steps {
    grid-template-columns: 1fr 1fr;
  }

  .tax-table {
    display: block;
    overflow-x: auto;
  }

  .sp-section [style*="grid-template-columns:1.6fr"] {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   RESPONSIVE -- TABLET (768px - 1199px)
   ====================================================== */
@media (max-width: 1199px) {
  :root {
    --section-gap: 96px;
  }

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

  .carousel-card {
    flex: 0 0 340px;
  }

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

  .visual-split-container {
    gap: 40px;
  }

  .market-stats-grid {
    gap: 32px;
  }

  .china-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .china-services-grid .china-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .hero-stats {
    gap: 24px;
    padding: 28px 32px;
  }
}

/* ======================================================
   RESPONSIVE -- MOBILE (<768px)
   ====================================================== */
@media (max-width: 767px) {
  :root {
    --section-gap: 80px;
    --nav-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Nav: show hamburger, hide links, fully opaque on mobile */
  .site-header {
    background: var(--dark);
    backdrop-filter: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 33, 33, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
    z-index: 999;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .nav-links a {
    font-size: 20px;
    color: #fff;
  }

  .nav-cta {
    padding: 12px 32px !important;
    font-size: 18px !important;
  }

  .lang-switcher {
    display: none;
  }

  .nav-right {
    margin-left: auto;
    gap: 12px;
  }

  .nav-right .nav-cta {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }

  /* Hero */
  .hero-section {
    padding-top: calc(var(--nav-height) + 32px);
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

  .trust-strip {
    margin-bottom: 32px;
  }

  /* Visual components */
  .visual-strip {
    height: 200px;
  }

  .visual-strip-overlay {
    padding: 0 24px;
  }

  .visual-strip-text {
    font-size: 1.125rem;
  }

  .visual-split {
    padding: 48px 0;
  }

  .visual-split-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visual-split--reverse .visual-split-container {
    direction: ltr;
  }

  .visual-split-img {
    border-radius: 12px;
  }

  .china-visual img {
    height: 150px;
  }

  .btn-xl {
    padding: 16px 36px;
    font-size: 16px;
  }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
  }

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

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

  /* Why Tally */
  .comparison-table-scroll {
    margin: 0 -20px;
    padding: 0 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

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

  /* Market */
  .market-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* China */
  .china-services-grid {
    grid-template-columns: 1fr;
  }

  .china-services-grid .china-card:last-child {
    max-width: none;
  }

  .china-contact-grid {
    flex-direction: column;
    gap: 24px;
  }

  .china-section .china-team-grid {
    grid-template-columns: 1fr;
  }

  .china-contact-info {
    text-align: center;
  }

  .china-ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Carousel */
  .carousel-card {
    flex: 0 0 280px;
  }

  .carousel-card-inner {
    min-height: 360px;
    padding: 24px 20px 20px;
  }

  .carousel-track {
    padding: 0 20px;
  }

  /* FAQ */
  .faq-question h3 {
    font-size: 0.9375rem;
  }

  /* CTA Form */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .form-trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Extra small */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 1.875rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}
