@charset "UTF-8";
:root {
  --tp-black: #000000;
  --tp-dark: #1a1a1a;
  --tp-charcoal: #2d2d2d;
  --tp-gray-dark: #4a4a4a;
  --tp-gray: #666666;
  --tp-gray-light: #999999;
  --tp-silver: #cccccc;
  --tp-light: #e5e5e5;
  --tp-off: #f5f5f5;
  --tp-white: #ffffff;
  --gold-primary: #FFD700;
  --gold-light: #FFAA00;
  --gold-dark: #E6B800;
  --gold-pale: #FFFBEB;
  --max: 1050px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 12px rgba(255, 215, 0, 0.3);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  color: #1a1a1a;
  line-height: 1.8;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lead {
  color: #4a4a4a;
}

.muted {
  color: #4a4a4a;
}

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

.local-only {
  display: block;
}

.expat-only {
  display: none;
}

span.local-only {
  display: inline;
}

span.expat-only {
  display: none;
}

body.expat-mode .local-only {
  display: none !important;
}

body.expat-mode .expat-only {
  display: block;
}

body.expat-mode span.expat-only {
  display: inline;
}

.lang-toggle-banner {
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 0.5rem 20px;
  position: relative;
  z-index: 1001;
}

.lang-toggle-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lang-toggle-label {
  font-size: 0.8rem;
  color: #cccccc;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
  background: transparent;
  color: #cccccc;
  font-family: inherit;
}

.lang-btn:hover {
  color: #ffffff;
  border-color: #FFD700;
}

.lang-btn.active {
  background: #FFD700;
  color: #000000;
  border-color: #FFD700;
  font-weight: 700;
}

.lang-dropdown {
  position: relative;
  display: none;
}

.lang-dropdown-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid #666666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-dropdown-btn::after {
  content: '▼';
  font-size: 0.6rem;
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  min-width: 180px;
  display: none;
  z-index: 1002;
  overflow: hidden;
  margin-top: 0.5rem;
}

.lang-dropdown-menu.show {
  display: block;
}

.lang-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #1a1a1a;
  font-size: 0.85rem;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s;
}

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

.lang-dropdown-item:hover {
  background: #FFFBEB;
}

.lang-dropdown-item.active {
  background: #FFD700;
  color: #000000;
  font-weight: 600;
}

.lang-dropdown-item.active small {
  color: #2d2d2d;
}

.lang-dropdown-item small {
  display: block;
  font-size: 0.7rem;
  color: #666666;
  margin-top: 0.2rem;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0.75rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
}

.brand-tagline {
  font-size: 0.7rem;
  color: #666666;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  position: relative;
  transition: all 0.3s;
  padding: 0.2rem 0;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease;
}

nav a:hover::after, nav a:focus::after {
  width: 100%;
}

nav a[aria-current="page"] {
  font-weight: 600;
}

nav a[aria-current="page"]::after {
  width: 100%;
}

nav a:focus {
  outline: 2px solid #FFD700;
  outline-offset: 4px;
  border-radius: 2px;
}

.apply-btn {
  background: #FFD700;
  color: #000000;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid #FFD700;
  transition: all 0.3s;
}

.apply-btn:hover, .apply-btn:focus {
  background: #000000;
  color: #FFD700;
}

.apply-btn::after {
  display: none;
}

.mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid #000000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #000000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.mobile-toggle span:nth-child(1) {
  top: 10px;
}

.mobile-toggle span:nth-child(2) {
  top: 17px;
}

.mobile-toggle span:nth-child(3) {
  bottom: 10px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 17px;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 17px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0.875rem 0;
}

.mobile-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.3s;
}

.mobile-menu a:hover, .mobile-menu a:focus {
  background: #f5f5f5;
}

.mobile-menu a::after {
  display: none;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  padding: 3.6rem 20px;
  text-align: center;
  color: #ffffff;
}

.hero-dark::before {
  content: '华';
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: clamp(150px, 25vw, 350px);
  font-weight: 900;
  font-family: 'Noto Serif SC', serif;
  opacity: 0.03;
  transform: translateY(-50%);
  pointer-events: none;
  color: #FFD700;
}

.hero-dark h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-family: 'Noto Serif SC', serif;
}

.hero-dark p {
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-light {
  min-height: 75vh;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #FFFBEB 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 20px;
}

.hero-light::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: clamp(240px, 35vw, 520px);
  height: clamp(240px, 35vw, 520px);
  background-image: url("../images/TPLogo11.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  filter: saturate(0);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-light .hero-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-light h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 0.02em;
  min-height: 1.5em;
}

.hero-light .hero-subtitle {
  font-size: 1.05rem;
  color: #4a4a4a;
  max-width: 620px;
  margin-bottom: 1.75rem;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-light .hero-cta {
  margin-bottom: 2rem;
  margin-top: 0;
}

.hero-dark .hero-cta {
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  padding-right: 2rem;
  border-right: 1px solid #e5e5e5;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-family: 'Noto Serif SC', serif;
}

.stat-label {
  font-size: 0.75rem;
  color: #666666;
  letter-spacing: 0.05em;
}

.pill-nav {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  color: #cccccc;
  transition: all 0.3s;
}

.pill:hover {
  border-color: #FFD700;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

.section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}

.section-padded {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.625rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.02em;
  font-family: 'Noto Serif SC', serif;
}

.section-subtitle {
  text-align: center;
  color: #666666;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.section-title-decorated {
  position: relative;
  padding-bottom: 1rem;
}

.section-title-decorated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

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

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

.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-color: #FFD700;
}

.card h3 {
  font-size: 1.05rem;
  color: #000000;
  margin-bottom: 0.35rem;
}

.card p {
  color: #4a4a4a;
  font-size: 0.95rem;
}

.card ul {
  margin-left: 1rem;
  color: #4a4a4a;
}

.card-link {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  display: block;
}

.card-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FFD700;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.card-link:hover::before, .card-link:focus-within::before {
  transform: scaleX(1);
}

.card-link:hover, .card-link:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border-color: #FFD700;
}

.card-link img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card-link .card-content {
  padding: 1rem;
}

.card-link .card-content h3 {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.card-link .card-content p {
  color: #666666;
  font-size: 0.8rem;
  line-height: 1.5;
}

.q {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: #ffffff;
  transition: all 0.3s;
}

.q:hover {
  border-color: #FFD700;
}

.q summary {
  cursor: pointer;
  font-weight: 700;
  color: #000000;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.q summary::after {
  content: '+';
  font-size: 1.2rem;
  color: #FFD700;
  transition: transform 0.3s;
}

.q[open] summary::after {
  transform: rotate(45deg);
}

.q p {
  margin-top: 0.75rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  font-size: 0.9rem;
}

.faq-question:hover {
  background: #FFFBEB;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: #FFD700;
}

.faq-item.active .faq-question {
  background: #FFFBEB;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-item.active .faq-answer {
  padding: 0 1rem 1rem;
  max-height: 500px;
}

.faq-answer {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer p {
  color: #4a4a4a;
  line-height: 1.8;
  font-size: 0.85rem;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.6rem 0;
  border: 1px solid #e5e5e5;
}

.mini-table th, .mini-table td {
  border: 1px solid #e5e5e5;
  padding: 0.6rem 0.7rem;
  text-align: left;
}

.mini-table th {
  background: #FFFBEB;
  color: #000000;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.tile {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.tile:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.tile .num {
  font-weight: 900;
  color: #FFD700;
  font-size: 1.1rem;
  font-family: 'Noto Serif SC', serif;
}

.tile h4 {
  margin: 0.25rem 0 0.5rem;
  font-size: 0.95rem;
  color: #000000;
}

.tile p {
  font-size: 0.85rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.process-rail {
  counter-reset: step;
  list-style: none;
  max-width: 1050px;
  margin: 2rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.process-rail::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: linear-gradient(90deg, #e5e5e5, #FFD700, #e5e5e5);
  border-radius: 2px;
  z-index: 0;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 14px 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border-color: #FFD700;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.step-dot {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #FFD700;
  color: #000000;
  font-weight: 800;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.step-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #000000;
}

.step-desc {
  font-size: 0.82rem;
  color: #666666;
  margin: 2px 0 0;
}

.quote-block {
  margin-top: 1rem;
  background: #FFFBEB;
  border-left: 4px solid #FFD700;
  padding: 1rem 1.25rem;
  border-radius: 0 12px 12px 0;
}

.quote-block blockquote {
  margin: 0;
  font-style: italic;
  color: #4a4a4a;
}

.quote-block figcaption {
  color: #666666;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.social-proof-banner {
  background: #000000;
  color: #ffffff;
  padding: 1rem 20px;
  text-align: center;
}

.social-proof-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.proof-item .number {
  color: #FFD700;
  font-weight: 900;
  font-size: 1.1rem;
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  border: 2px solid #000000;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn:focus {
  outline: 2px solid #FFD700;
  outline-offset: 4px;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #FFD700;
  color: #000000;
  border-color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-gold {
  background: #FFD700;
  color: #000000;
  border-color: #FFD700;
}

.btn-gold:hover {
  background: #000000;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.btn-secondary {
  background: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  background: transparent;
  border: 2px solid #000000;
  color: #000000;
}

.btn-ghost:hover {
  background: #000000;
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-sm.btn-gold {
  border-color: #FFD700;
  background: #FFD700;
  color: #000000;
}

.btn-sm.btn-gold:hover {
  background: #000000;
  color: #FFD700;
  border-color: #000000;
}

.btn-sm.btn-ghost {
  border-color: #000000;
}

.btn-sm.btn-ghost:hover {
  background: #000000;
  color: #ffffff;
}

.btn-pill, .btn-pill-solid {
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid #FFD700;
  color: #FFD700;
  transition: 0.2s;
  background: transparent;
  display: inline-block;
  text-decoration: none;
}

.btn-pill:hover, .btn-pill-solid:hover {
  background: #FFD700;
  color: #000000;
}

.btn-pill-solid {
  background: #FFD700;
  color: #000000;
}

.btn-pill-solid:hover {
  background: #000000;
  color: #FFD700;
}

.text-link {
  color: #E6B800;
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.text-link:hover {
  color: #000000;
}

.typewriter-text {
  border-right: 3px solid #FFD700;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.gptw-announcement {
  background: linear-gradient(135deg, #FFFBEB 0%, #fffefa 100%);
  border: 2px solid #FFD700;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 1050px;
}

.gptw-announcement::before {
  content: '🏆';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.1;
  pointer-events: none;
}

.gptw-announcement h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  font-family: 'Noto Serif SC', serif;
}

.gptw-counter {
  color: #E6B800;
  font-size: 2rem;
  font-weight: 900;
}

.gptw-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gptw-gallery img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.priority-menu {
  padding: 60px 20px;
  background: #f5f5f5;
}

.priority-menu .section-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card-image-wrapper {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.card-image-wrapper::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transition: all 0.3s;
}

.card-link[data-emoji="🏢"] .card-image-wrapper::before {
  content: '🏢';
}

.card-link[data-emoji="💼"] .card-image-wrapper::before {
  content: '💼';
}

.card-link[data-emoji="💰"] .card-image-wrapper::before {
  content: '💰';
}

.card-link[data-emoji="✈️"] .card-image-wrapper::before {
  content: '✈️';
}

.card-link[data-emoji="💬"] .card-image-wrapper::before {
  content: '💬';
}

.card-link[data-emoji="🇲🇾🇹🇭"] .card-image-wrapper::before {
  content: '🇲🇾🇹🇭';
  font-size: 4.5rem;
}

.card-link[data-emoji="☕"] .card-image-wrapper::before {
  content: '☕';
}

.card-link[data-emoji="📋"] .card-image-wrapper::before {
  content: '📋';
}

.card-link[data-emoji="👀"] .card-image-wrapper::before {
  content: '👀';
}

.card-link[data-emoji="🎁"] .card-image-wrapper::before {
  content: '🎁';
}

.card-link[data-emoji="📢"] .card-image-wrapper::before {
  content: '📢';
}

.card-link[data-emoji="❓"] .card-image-wrapper::before {
  content: '❓';
}

.card-link:hover .card-image-wrapper::before {
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1.05);
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.card-link:hover .card-image-wrapper img {
  transform: scale(1.05);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1050px;
  margin: 2rem auto;
  padding: 0 20px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.stat-card .stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-card .stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
  font-family: 'Noto Serif SC', serif;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #666666;
  margin-top: 0.25rem;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1050px;
  margin: 0 auto;
}

.icon-item {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.icon-item:hover {
  background: #FFFBEB;
}

.icon-item .icon-emoji {
  font-size: 2rem;
}

.icon-item .icon-label {
  font-size: 0.8rem;
  color: #4a4a4a;
  margin-top: 0.25rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.social-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.social-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.social-card .social-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.social-card .social-name {
  font-weight: 700;
  font-size: 1rem;
}

.social-card .social-desc {
  font-size: 0.85rem;
  color: #666666;
}

.social-card img {
  max-width: 120px;
  margin-top: 0.5rem;
  border-radius: 4px;
}

.world-map {
  text-align: center;
  padding: 2rem 20px;
}

.world-map img {
  max-width: 1050px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1050px;
  margin: 0 auto;
}

.office-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s;
  position: relative;
}

.office-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.office-card.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFD700;
  color: #000000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.office-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.office-features {
  list-style: none;
  padding: 0;
}

.office-features li {
  font-size: 0.85rem;
  color: #4a4a4a;
  padding: 0.2rem 0;
  position: relative;
  padding-left: 1rem;
}

.office-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 700;
}

.office-map-btn {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: #FFD700;
  color: #000000;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 0.5rem;
}

.office-map-btn:hover {
  background: #000000;
  color: #FFD700;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1050px;
  margin: 0 auto;
}

.lifestyle-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.lifestyle-item:hover img {
  transform: scale(1.1);
}

.lifestyle-item .lifestyle-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff;
  padding: 1rem 0.75rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.video-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.video-card .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

.video-card .video-title {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: #ffffff;
}

.testimonials-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.testimonial-card .quote {
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-card .role {
  font-size: 0.8rem;
  color: #666666;
}

.ta-leader-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ta-leader-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.ta-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.ta-member-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.ta-member-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.ta-member-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 2px solid #e5e5e5;
}

.ta-member-card .member-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 2rem;
  border: 2px solid #e5e5e5;
}

.ta-member-card .member-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.ta-member-card .member-cn {
  color: #666666;
  font-size: 0.85rem;
}

.ta-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.6rem;
  background: #0077B5;
  color: #fff;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 0.5rem;
}

.ta-linkedin-btn:hover {
  background: #005885;
  transform: translateY(-1px);
}

.ta-linkedin-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  color: #000000;
}

.contact-card:hover {
  border-color: #FFD700;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

.contact-card .contact-icon {
  font-size: 1.5rem;
}

.contact-card .contact-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-card .contact-arrow {
  margin-left: auto;
  color: #FFD700;
}

footer {
  background: #000000;
  color: #ffffff;
  padding: 3rem 20px 1rem;
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #cccccc;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #FFD700;
}

.footer-bottom {
  max-width: 1050px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #2d2d2d;
  text-align: center;
}

.footer-bottom p {
  color: #666666;
  font-size: 0.8rem;
}

.floating-apply,
.floating-casual {
  position: fixed;
  z-index: 999;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
  white-space: nowrap;
}

.floating-apply {
  bottom: 100px;
  right: 20px;
  background: #FFD700;
  color: #000000;
  padding: 0.75rem 1.25rem;
}

.floating-apply:hover {
  background: #000000;
  color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.floating-casual {
  bottom: 50px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  padding: 0.65rem 1.1rem;
  font-size: 0.8rem;
}

.floating-casual:hover {
  background: #2d2d2d;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.back-to-top {
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  color: #000000;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1020px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ta-members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .lang-toggle-buttons {
    display: none;
  }
  .lang-dropdown {
    display: block;
  }
  .floating-apply {
    right: 12px;
    bottom: 80px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  .floating-casual {
    right: 12px;
    bottom: 35px;
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }
  .back-to-top {
    right: 14px;
    bottom: 130px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .gptw-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gptw-gallery:nth-child(5) {
    grid-column: span 2;
  }
  .testimonials-preview {
    grid-template-columns: 1fr;
  }
  .ta-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-light {
    min-height: 60vh;
    padding: 2rem 16px;
  }
  .hero-light h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  .hero-stats {
    gap: 1rem;
  }
  .stat-item {
    padding-right: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .process-rail {
    grid-template-columns: 1fr;
  }
  .process-rail::before {
    display: none;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .ta-leader-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }
  .ta-members-grid {
    grid-template-columns: 1fr;
  }
  .community-stats {
    grid-template-columns: 1fr;
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
}
