/* ============================================
   Pure Jade Capital — Goldman Sachs Inspired
   Refined Corporate Financial Design System
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  /* Brand Colors */
  --navy: #006D3F;
  --navy-dark: #0A3D28;
  --navy-mid: #0D4D33;
  --blue-primary: #4A9B6B;
  --blue-light: #7BC49A;
  --blue-pale: #E4F0E9;
  --blue-wash: #F4FAF6;
  
  /* Goldman-style gold accent */
  --gold: #C9A961;
  --gold-light: #DCC88A;
  --gold-dark: #A68A44;
  
  /* Neutrals */
  --black: #1A1A1A;
  --gray-900: #231F20;
  --gray-800: #333333;
  --gray-700: #58575A;
  --gray-600: #6E6E6E;
  --gray-500: #8A8A8A;
  --gray-400: #AEAEAE;
  --gray-300: #D4D4D4;
  --gray-200: #E8E8E8;
  --gray-100: #F5F5F5;
  --gray-50: #FAFAFA;
  --white: #FFFFFF;
  
  /* Typography */
  --font-serif: 'Georgia', 'Times New Roman', 'Songti SC', 'STSong', 'Noto Serif CJK SC', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1160px;
  --container-padding: 0 28px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.35s var(--ease-out);
  --transition-slow: all 0.55s var(--ease-out);
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.07);
  
  /* Borders */
  --border-hairline: 1px solid var(--gray-200);
  --border-light: 1px solid rgba(0,0,0,0.06);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.28;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: 3.25rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.625rem; font-weight: 400; }
h4 { font-size: 1.1875rem; font-weight: 400; }

p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
  font-size: 1rem;
}

p.lead {
  font-size: 1.1875rem;
  line-height: 1.85;
  color: var(--gray-600);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: inline-block;
}

.eyebrow-white {
  color: var(--gold-light);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 28px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--gold);
}

.section-title.center { text-align: center; }
.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-intro p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.85;
}

/* ---- Separator ---- */
.hr {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 0;
}

.hr-fade {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,169,97,0.3);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,109,63,0.25);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--gold);
  transition: var(--transition);
}

.btn-text:hover {
  gap: 14px;
  border-color: var(--navy);
}

/* ============================================= */
/*  NAVIGATION                                   */
/* ============================================= */

/* ---- Main Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: var(--border-hairline);
}

.navbar.scrolled {
  top: 0;
  height: 68px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-logo .logo-img {
  height: 58px;
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo .logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Legacy text logo styles (kept for footer compatibility) */
.nav-logo .logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
}

.nav-logo .logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 8px 8px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-logo .logo-text span:first-child {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 2px;
}

.nav-logo .logo-text .en {
  font-size: 0.625rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-menu a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Language Toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  padding: 5px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.lang-toggle .lang-current {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================= */
/*  HERO SECTION                                 */
/* ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  margin-top: 36px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 75% 30%, rgba(74,155,107,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(201,169,97,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(0,109,63,0.3) 0%, var(--navy-dark) 100%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 4px, var(--white) 4px, var(--white) 5px),
    repeating-linear-gradient(90deg, transparent, transparent 4px, var(--white) 4px, var(--white) 5px);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.15s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 64px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.75s forwards;
}

.hero-stat .hero-stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

.hero-stat .hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.1s forwards;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 48px;
  background: var(--white);
  animation: scrollDown 2.4s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -48px; }
  100% { top: 48px; }
}

/* ---- Hero Geometric Graphic ---- */
.hero-graphic {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.06;
  width: 600px;
  height: 600px;
}

/* ============================================= */
/*  INNER PAGE HERO                              */
/* ============================================= */

.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
  margin-top: 36px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 40%, rgba(74,155,107,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(201,169,97,0.05) 0%, transparent 50%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .eyebrow {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.page-hero .eyebrow::before {
  display: none;
}

.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.page-hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { margin: 0 10px; }

/* ============================================= */
/*  SECTIONS                                     */
/* ============================================= */

.section { padding: var(--section-padding); }
.section-sm { padding: 80px 0; }
.section-gray { background: var(--gray-50); }
.section-wash { background: var(--blue-wash); }
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
  color: var(--white);
}
.section-navy p { color: rgba(255, 255, 255, 0.72); }
.section-navy .section-title::after { background: var(--gold); }

/* ============================================= */
/*  TWO-COLUMN LAYOUT                            */
/* ============================================= */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-layout-wide { gap: 100px; }

.split-content p {
  font-size: 1.0625rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============================================= */
/*  IMAGE PLACEHOLDER (Geometric)                */
/* ============================================= */

.img-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
  border: var(--border-hairline);
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, var(--navy) 0%, transparent 60%),
    linear-gradient(225deg, rgba(201,169,97,0.15) 0%, transparent 50%);
  opacity: 0.7;
  z-index: 1;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.04) 40px, rgba(255,255,255,0.04) 41px);
  z-index: 2;
}

.img-placeholder .placeholder-label {
  position: absolute;
  bottom: 32px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  letter-spacing: 2px;
}

/* Large hero-like placeholder */
.img-placeholder-hero {
  aspect-ratio: 16/9;
}

/* ============================================= */
/*  STATS ROW                                    */
/* ============================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 64px 0;
}

.stat-item {
  text-align: center;
  padding: 0 12px;
}

.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-item .stat-divider {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
}

.stat-item .stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-navy .stat-item .stat-number { color: var(--white); }
.section-navy .stat-item .stat-label { color: rgba(255,255,255,0.5); }

/* ============================================= */
/*  BUSINESS CARDS                               */
/* ============================================= */

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.business-card {
  background: var(--white);
  border: var(--border-hairline);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.business-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.business-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
  border-color: transparent;
}

.business-card:hover::after {
  transform: scaleX(1);
}

.business-card .card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}

.business-card:hover .card-number {
  color: var(--gold);
}

.business-card .card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.business-card .card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
}

.business-card h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
  color: var(--navy);
}

.business-card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
  flex: 1;
}

.business-card .card-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: var(--transition);
}

.business-card .card-link:hover {
  gap: 14px;
  color: var(--gold-dark);
}

/* ============================================= */
/*  VALUES / PHILOSOPHY                          */
/* ============================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 60px;
}

.value-item {
  position: relative;
}

.value-item .value-number {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: block;
}

.value-item .value-img {
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-wash) 100%);
  border-radius: 8px;
  border: 1px solid rgba(0, 109, 63, 0.08);
}

.value-item .value-img .placeholder-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 2px;
  color: var(--green-primary);
  text-transform: uppercase;
  font-weight: 500;
}

.value-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--gray-900);
}

.value-item p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* On dark backgrounds (e.g. About page Philosophy section) */
.section-navy .value-item h4,
.section-navy .value-item h4,
.section-navy .value-item p { color: var(--white); }
.section-navy .value-item p { color: rgba(255, 255, 255, 0.75); }

/* ============================================= */
/*  QUOTE BLOCK                                  */
/* ============================================= */

.quote-block {
  position: relative;
  padding: 56px 0;
}

.quote-block .quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--blue-pale);
  line-height: 1;
  position: absolute;
  top: 0;
  left: -8px;
  z-index: 0;
  pointer-events: none;
}

.quote-block blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  margin: 0;
  max-width: 760px;
}

.quote-block .quote-attribution {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gray-500);
  letter-spacing: 1px;
}

.quote-block .quote-attribution::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

/* ============================================= */
/*  HIGHLIGHT BOX                                */
/* ============================================= */

.highlight-box {
  background: var(--blue-wash);
  padding: 48px;
  border-left: 3px solid var(--gold);
}

.highlight-box p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--navy);
  line-height: 1.85;
}

/* ============================================= */
/*  TEAM FEATURES                                */
/* ============================================= */

.team-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.team-feature {
  text-align: center;
  padding: 40px 20px;
  transition: var(--transition);
  border: var(--border-hairline);
}

.team-feature:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: transparent;
}

.team-feature .feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  background: var(--blue-wash);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-feature .feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--navy);
}

.team-feature h4 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.team-feature p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================= */
/*  SERVICE CLIENTS                              */
/* ============================================= */

.client-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.client-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gray-400);
  letter-spacing: 2px;
  transition: var(--transition);
}

.client-logo:hover { color: var(--navy); }

/* ============================================= */
/*  CTA SECTION                                  */
/* ============================================= */

.cta-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 40% 30%, rgba(74,155,107,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 70%, rgba(201,169,97,0.08) 0%, transparent 55%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section .eyebrow { margin-bottom: 16px; }
.cta-section .eyebrow::before { display: none; }

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

/* ============================================= */
/*  FOOTER                                       */
/* ============================================= */

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.footer-brand-en {
  font-size: 0.6875rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul li { margin-bottom: 14px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col .contact-item {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 14px;
  line-height: 1.7;
}

.footer-col .contact-item a {
  color: var(--gray-400);
}

.footer-col .contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.footer-bottom .icp-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom .icp-info a:hover { color: var(--gray-300); }

/* ============================================= */
/*  SERVICE DETAIL PAGE                          */
/* ============================================= */

.service-detail {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 140px;
}

.service-sidebar h4 {
  font-size: 0.6875rem;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.service-sidebar ul li { margin-bottom: 2px; }

.service-sidebar ul li a {
  display: block;
  padding: 12px 18px;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-left: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.service-sidebar ul li a:hover,
.service-sidebar ul li a.active {
  color: var(--navy);
  border-left-color: var(--gold);
  background: var(--gray-50);
}

.service-section {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: var(--border-hairline);
}

.service-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-section h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.service-section p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-section ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-section ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--gray-700);
  line-height: 1.75;
  border-bottom: 1px solid var(--gray-100);
}

.service-section ul li:last-child { border-bottom: none; }

.service-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.service-highlight {
  background: var(--blue-wash);
  padding: 36px 40px;
  margin: 32px 0;
  border-left: 3px solid var(--gold);
}

.service-highlight p {
  margin-bottom: 0;
  font-size: 1.0625rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.8;
}

/* ============================================= */
/*  CONTACT PAGE                                 */
/* ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 1.375rem;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 400;
}

.contact-list { margin-bottom: 40px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: var(--border-hairline);
}

.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-list .contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--navy);
}

.contact-list .contact-text { flex: 1; }

.contact-list .contact-text .label {
  font-size: 0.6875rem;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-list .contact-text .value {
  font-size: 1rem;
  color: var(--gray-900);
  line-height: 1.6;
}

/* ---- Contact Form ---- */
.contact-form {
  background: var(--gray-50);
  padding: 52px;
  border: var(--border-hairline);
}

.contact-form h3 {
  font-size: 1.375rem;
  margin-bottom: 32px;
  font-weight: 400;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: var(--border-hairline);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--gray-900);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 16px;
  text-align: center;
}

/* ---- ICON ROW ---- */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 56px 0;
}

.icon-item {
  text-align: center;
  transition: var(--transition);
}

.icon-item .icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.icon-item:hover .icon-circle {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.icon-item svg {
  width: 32px;
  height: 32px;
  fill: var(--navy);
}

.icon-item .icon-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---- Process Steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.process-step {
  background: var(--white);
  padding: 44px 36px;
  border: var(--border-hairline);
  text-align: center;
  transition: var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: transparent;
}

.process-step .step-marker {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.process-step h4 {
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

/* ============================================= */
/*  ANIMATIONS                                   */
/* ============================================= */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }

/* ============================================= */
/*  CONTENT PAGE LAYOUT                          */
/* ============================================= */

.content-centered {
  max-width: 760px;
  margin: 0 auto;
}

.content-centered p {
  font-size: 1.0625rem;
  line-height: 1.9;
}

.text-center { text-align: center; }

/* ============================================= */
/*  RESPONSIVE                                   */
/* ============================================= */

@media (max-width: 1100px) {
  h1 { font-size: 2.75rem; }
  .hero h1 { font-size: 3rem; }
  
  .split-layout, .split-layout-wide {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .service-sidebar {
    position: static;
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  .section-title { font-size: 2rem; }
  
  .hero h1 { font-size: 2.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  
  .page-hero { padding: 140px 0 56px; }
  .page-hero h1 { font-size: 2.5rem; }
  
  .utility-bar { display: none; }
  .navbar { top: 0; }
  .navbar.scrolled { top: 0; }
  .hero { margin-top: 0; }
  .page-hero { margin-top: 0; }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 32px 28px;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
    border-top: var(--border-hairline);
  }
  
  .nav-menu.active { transform: translateX(0); }
  
  .nav-menu a {
    padding: 16px 0;
    border-bottom: var(--border-hairline);
    font-size: 0.875rem;
  }
  
  .nav-toggle { display: flex; }
  
  .business-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .team-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row { grid-template-columns: 1fr; }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-bottom .icp-info {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-form { padding: 36px 24px; }
  
  .quote-block blockquote {
    font-size: 1.375rem;
  }
  
  .cta-section h2 { font-size: 2rem; }
  
  .icon-row {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  .hero h1 { font-size: 1.875rem; }
  .section-title { font-size: 1.625rem; }
  
  .team-features,
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .business-card { padding: 36px 28px; }
}
