
/* ============================================
   印尼企服通 - Indonesia Business Services
   Premium Corporate Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700;900&family=Noto+Sans+SC:wght@300;400;500;600;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --navy-deep: #0A1F44;
  --navy-primary: #102A5C;
  --navy-mid: #1A3A7C;
  --navy-light: #2C4B8E;
  --navy-soft: #E8EDF5;
  --navy-mist: #F4F7FB;

  --gold-primary: #C9A55C;
  --gold-bright: #D4B26A;
  --gold-deep: #A8853F;
  --gold-soft: #F5EDD8;

  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE3EC;
  --gray-300: #BCC5D4;
  --gray-400: #8A95A8;
  --gray-500: #5A6478;
  --gray-600: #3D4658;
  --gray-700: #2A3245;

  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.04), 0 2px 4px rgba(10, 31, 68, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 31, 68, 0.06), 0 2px 6px rgba(10, 31, 68, 0.04);
  --shadow-lg: 0 12px 36px rgba(10, 31, 68, 0.08), 0 4px 12px rgba(10, 31, 68, 0.04);
  --shadow-xl: 0 24px 60px rgba(10, 31, 68, 0.12), 0 8px 20px rgba(10, 31, 68, 0.06);

  /* Typography */
  --font-display: 'Noto Serif SC', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-latin: 'Cormorant Garamond', Georgia, serif;
  --font-latin-body: 'Inter', sans-serif;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 40px;
  --section-py: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.display-1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

.heading-1 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
}

.heading-2 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: inline-block;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-latin);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 16px;
}

.eyebrow-line::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-primary);
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

p {
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-py) 0;
}

.section-tight {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-bright));
}

.section-header.left .section-title::after {
  left: 0;
  transform: none;
}

.section-subtitle {
  margin-top: 30px;
  font-size: 15px;
  color: var(--gray-500);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.left .section-subtitle {
  margin-left: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}

.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-mid));
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
}

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

.brand-cn {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
}

.brand-en {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-links a.active {
  color: var(--navy-deep);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-lang {
  font-family: var(--font-latin-body);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-lang:hover {
  border-color: var(--gold-primary);
  color: var(--navy-deep);
}

.nav-lang .active-lang {
  color: var(--navy-deep);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10, 31, 68, 0.25);
}

.btn-primary:hover {
  background: var(--navy-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(168, 133, 63, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 133, 63, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
}

.btn-outline:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

.btn-link {
  background: transparent;
  color: var(--navy-primary);
  padding: 8px 0;
  font-weight: 500;
}

.btn-link::after {
  content: '→';
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 15px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  position: relative;
  padding-top: 76px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-mist) 0%, var(--white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-title .accent {
  color: var(--gold-deep);
  font-style: italic;
  font-family: var(--font-display);
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-id {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-deep);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Hero map background pattern */
.hero-map-bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--navy-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-mist), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-deep));
}

.card:hover .card-icon svg {
  stroke: var(--white);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy-primary);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.card-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.card:hover .card-arrow {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
  color: var(--white);
  transform: translateX(4px);
}

/* Service cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

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

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ============================================
   STATS BAND
   ============================================ */

.stats-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.15), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.stat-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-family: var(--font-latin);
  font-style: italic;
}

/* ============================================
   PROCESS / FLOW
   ============================================ */

.process {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid-5 { grid-template-columns: repeat(5, 1fr); }
.process-grid-6 { grid-template-columns: repeat(6, 1fr); }
.process-grid-7 { grid-template-columns: repeat(7, 1fr); }

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

.process-step::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

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

.process-step-arrow {
  position: absolute;
  top: 38px;
  right: -18px;
  color: var(--gold-primary);
  font-size: 14px;
}

.process-step:last-child .process-step-arrow {
  display: none;
}

.process-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mist), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.process-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy-primary);
  fill: none;
  stroke-width: 1.5;
}

.process-num {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  font-family: var(--font-latin-body);
}

.process-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.process-desc {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ============================================
   ADVANTAGES
   ============================================ */

.advantage {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.advantage:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.advantage-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-mist);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy-primary);
  fill: none;
  stroke-width: 1.5;
}

.advantage-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.advantage-content p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: var(--navy-soft);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-deep);
  list-style: none;
  font-family: var(--font-display);
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-q {
  display: flex;
  gap: 14px;
  align-items: center;
}

.faq-q-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-latin-body);
  flex-shrink: 0;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--navy-primary);
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[open] .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-body {
  padding: 0 28px 24px 68px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #06122B 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' fill='none'%3E%3Cpath d='M0 200V160L60 145L120 165L180 130L240 150L300 110L360 140L420 100L480 130L540 95L600 120L660 80L720 110L780 75L840 105L900 65L960 95L1020 60L1080 90L1140 70L1200 100L1260 75L1320 100L1380 80L1440 110V200Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

.footer-brand .footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-brand .brand-cn { color: var(--white); }
.footer-brand .brand-en { color: var(--gold-bright); }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold-primary);
  margin-top: 2px;
}

.footer-qr {
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-qr-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: var(--font-latin);
  font-style: italic;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: var(--gold-bright);
}

/* ============================================
   PAGE HERO (smaller for sub-pages)
   ============================================ */

.page-hero {
  position: relative;
  padding-top: 76px;
  background: linear-gradient(180deg, var(--navy-mist) 0%, var(--white) 100%);
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0 90px;
  position: relative;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 12px;
  max-width: 480px;
}

.page-hero-id {
  font-family: var(--font-latin);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  margin-bottom: 32px;
}

.page-hero-visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200' fill='none'%3E%3Cpath d='M0 200L800 0V200H0Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
}

.cta-content h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.form-label .required {
  color: #C9A55C;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(16, 42, 92, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 10px;
}

/* ============================================
   UTILITIES
   ============================================ */

.bg-mist { background: var(--navy-mist); }
.bg-soft { background: var(--gray-50); }
.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.75); }

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

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

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

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
    --container-padding: 24px;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero-visual,
  .page-hero-visual {
    min-height: 320px;
    height: 320px;
  }

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

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

  .process-grid,
  .process-grid-5,
  .process-grid-6,
  .process-grid-7 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .process-step::after { display: none; }
  .process-step-arrow { display: none; }

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

  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }

  .nav { padding: 0 20px; }

  .brand-cn { font-size: 16px; }
  .brand-en { font-size: 10px; }
}

/* Decorative skyline silhouette */
.skyline-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100px;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 100' fill='%23C9A55C'%3E%3Crect x='10' y='40' width='30' height='60'/%3E%3Crect x='50' y='30' width='25' height='70'/%3E%3Crect x='85' y='50' width='40' height='50'/%3E%3Crect x='135' y='20' width='20' height='80'/%3E%3Crect x='165' y='35' width='35' height='65'/%3E%3Crect x='210' y='10' width='15' height='90'/%3E%3Cpath d='M218 0 L222 10 L214 10 Z'/%3E%3Crect x='240' y='45' width='30' height='55'/%3E%3Crect x='280' y='25' width='40' height='75'/%3E%3Crect x='330' y='40' width='25' height='60'/%3E%3Crect x='365' y='15' width='30' height='85'/%3E%3Crect x='405' y='35' width='35' height='65'/%3E%3Crect x='450' y='25' width='20' height='75'/%3E%3Crect x='480' y='45' width='40' height='55'/%3E%3Crect x='530' y='30' width='25' height='70'/%3E%3Crect x='565' y='40' width='30' height='60'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

/* Indonesia map decoration */
.indo-map-decoration {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

/* Grain texture overlay */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* ===========================================================================
   ADDITIONS for process / about / contact pages
   =========================================================================== */

/* Hero variants used by new pages */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.85) 0%, rgba(16,42,92,0.7) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 90px;
}
.hero-compact .hero-inner {
  padding: 100px 0 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold-primary);
}
.hero-eyebrow .eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold-primary);
}
.hero-eyebrow .eyebrow-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.hero-content .hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-primary);
  font-size: 0.5em;
  display: inline-block;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,165,92,0.3);
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* Section eyebrow / head variants */
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(201,165,92,0.08);
  border-radius: 100px;
}
.section-desc {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600, #5A6477);
}
.section-title-sm {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 8px 0 16px;
  line-height: 1.3;
}
.section-head-light .section-eyebrow {
  background: rgba(201,165,92,0.15);
  color: var(--gold-primary);
}
.section-head-light .section-title {
  color: var(--white);
}

/* Background utility variants */
.bg-mist { background: #F4F6FA; }
.bg-soft { background: #F8F9FB; }
.bg-navy {
  background: var(--navy-deep);
  color: var(--white);
}
.bg-navy .section-title { color: var(--white); }

/* Card variants */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  background: rgba(201,165,92,0.1);
  color: var(--gold-deep);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 16px 0 10px;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600, #5A6477);
}

/* Dark cards (on navy bg) */
.cards-on-dark .card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,165,92,0.2);
  border-radius: 12px;
  padding: 36px 30px;
  color: var(--white);
  position: relative;
  transition: all 0.3s ease;
}
.cards-on-dark .card-dark.featured {
  background: rgba(201,165,92,0.08);
  border-color: var(--gold-primary);
}
.cards-on-dark .card-dark:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 600;
}
.card-dark h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--white);
}
.card-dark p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(-45deg);
}

/* Benefit cards */
.benefit-card {
  text-align: center;
  padding: 32px 24px;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 32px;
  height: 32px;
}
.benefit-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600, #5A6477);
}

/* Two-column layout */
.two-col-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text .section-eyebrow { margin-bottom: 16px; }
.two-col-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.two-col-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--gray-700, #3F4756);
  margin-bottom: 16px;
}
.two-col-visual { position: relative; }

/* Value pills */
.value-pills {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: white;
  border: 1px solid rgba(201,165,92,0.2);
  border-radius: 12px;
  flex: 1;
  min-width: 170px;
}
.pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-primary);
  font-weight: 600;
}
.pill-text {
  font-size: 14px;
  color: var(--navy-deep);
  font-weight: 600;
  line-height: 1.4;
}
.pill-text em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--gray-500, #8993A4);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* Team section */
.team-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.team-group-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-primary);
  display: inline-block;
}
.team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  border: 1px solid #EDEFF3;
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.08);
  border-color: var(--gold-primary);
}
.team-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}
.team-avatar svg { width: 100%; height: 100%; }
.team-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.team-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.team-bio {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-600, #5A6477);
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap .section-eyebrow { margin-bottom: 12px; }
.form-intro {
  font-size: 14px;
  color: var(--gray-600, #5A6477);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-form {
  background: white;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #EDEFF3;
  box-shadow: 0 4px 20px rgba(10,31,68,0.04);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-group { margin-bottom: 20px; }
.form-note {
  font-size: 12px;
  color: var(--gray-500, #8993A4);
  margin: 8px 0 20px;
  font-style: italic;
}

/* Contact info cards */
.contact-info-wrap .section-eyebrow { margin-bottom: 12px; }
.contact-info-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  margin-bottom: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #EDEFF3;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(4px);
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.contact-info-text p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-600, #5A6477);
}

/* QR codes */
.contact-qr-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.contact-qr {
  flex: 1;
  background: white;
  border: 1px solid #EDEFF3;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.contact-qr svg {
  border: 1px solid #EDEFF3;
  border-radius: 6px;
  background: white;
}
.qr-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--navy-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Map info cards */
.map-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.map-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: white;
  border-radius: 12px;
  border: 1px solid #EDEFF3;
}
.map-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,165,92,0.1);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-info-icon svg { width: 20px; height: 20px; }
.map-info-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.map-info-card p {
  font-size: 13px;
  color: var(--gray-600, #5A6477);
}

/* FAQ wrap and content */
.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-content {
  padding-top: 16px;
}
.faq-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray-600, #5A6477);
  margin-bottom: 10px;
}
.faq-content p:last-child { margin-bottom: 0; }

/* Btn variants */
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}
.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-primary);
}

/* CTA-band actions wrapper if absent */
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Process step adjustments for new pages */
.process-step h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 16px 0 8px;
}
.process-step p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-600, #5A6477);
}
.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gold-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
  z-index: 2;
}

/* CTA-band content tweaks */
.cta-content h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 0;
}

/* Stats band stat-num used by about page */
.stat-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .two-col-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-stats { gap: 32px; }
  .team-members { grid-template-columns: repeat(2, 1fr); }
  .map-info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 80px 0 60px; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .team-members { grid-template-columns: 1fr; }
  .value-pills { flex-direction: column; }
  .contact-qr-row { flex-direction: column; }
  .cta-content h2 { font-size: 28px; }
}


/* === Language switcher enhancement === */
.nav-lang {
  user-select: none;
  cursor: default;
}
.nav-lang [data-lang] {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}
.nav-lang [data-lang]:hover {
  background: rgba(201, 165, 92, 0.15);
  color: var(--gold-primary, #C9A55C);
}
.nav-lang [data-lang].active-lang {
  background: var(--gold-primary, #C9A55C);
  color: white;
}
.nav-lang [data-lang].active-lang:hover {
  background: var(--gold-deep, #A8853F);
  color: white;
}


/* === Hero contrast fix: 修复深蓝背景 hero 区文字看不见的问题 === */
.hero-inner .hero-title,
.hero-inner h1.hero-title,
.hero-inner h2.hero-title {
  color: #FFFFFF !important;
}
.hero-inner .hero-title em,
.hero-inner .hero-title .accent {
  color: var(--gold-primary, #C9A55C) !important;
  font-style: italic;
}
.hero-inner .hero-desc,
.hero-inner p.hero-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}
.hero-inner .hero-id {
  color: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .hero-eyebrow,
.hero-inner .eyebrow-text {
  color: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .eyebrow-line {
  background: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .hero-stats .num,
.hero-inner .hero-stat .num {
  color: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .hero-stats .label,
.hero-inner .hero-stat .label {
  color: rgba(255, 255, 255, 0.75) !important;
}
.hero-inner .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
}
.hero-inner .btn-ghost {
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.hero-inner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--gold-primary, #C9A55C) !important;
  color: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .btn-primary {
  background: var(--gold-primary, #C9A55C) !important;
  color: #FFFFFF !important;
  border-color: var(--gold-primary, #C9A55C) !important;
}
.hero-inner .btn-primary:hover {
  background: var(--gold-deep, #A8853F) !important;
  border-color: var(--gold-deep, #A8853F) !important;
}


/* ============ 浮动联系按钮样式 ============ */
.float-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  outline: none;
  color: white;
  user-select: none;
}

.fc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.fc-whatsapp {
  background: #25D366;
}
.fc-whatsapp:hover {
  background: #1ebd5b;
}

.fc-wechat {
  background: #07C160;
}
.fc-wechat:hover {
  background: #06a553;
}

/* 悬停时的小标签提示 */
.fc-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(10, 31, 68, 0.92);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}
.fc-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(10, 31, 68, 0.92);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.fc-btn:hover .fc-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* 微信二维码弹层 */
.fc-qr-popup {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%) translateX(8px);
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  min-width: 240px;
}
.fc-qr-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  filter: drop-shadow(2px 0 2px rgba(0,0,0,0.06));
}

/* 桌面端:鼠标悬停或获得焦点显示二维码 */
@media (hover: hover) {
  .fc-wechat:hover .fc-qr-popup,
  .fc-wechat:focus .fc-qr-popup,
  .fc-wechat:focus-within .fc-qr-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(50%) translateX(0);
  }
}

/* 通过 JS 控制的展开类(用于手机端点击切换) */
.fc-wechat.qr-active .fc-qr-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(50%) translateX(0);
}

.fc-qr-content {
  text-align: center;
}
.fc-qr-image {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  margin: 0 auto 14px;
  object-fit: contain;
  background: white;
}
.fc-qr-title {
  font-size: 14px;
  font-weight: 600;
  color: #0A1F44;
  margin-bottom: 4px;
}
.fc-qr-subtitle {
  font-size: 12px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: #A8853F;
}

/* 手机端 */
@media (max-width: 640px) {
  .float-contact {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .fc-btn {
    width: 48px;
    height: 48px;
  }
  .fc-btn svg {
    width: 22px !important;
    height: 22px !important;
  }
  /* 手机上隐藏 hover tooltip(因为没有 hover) */
  .fc-tooltip {
    display: none;
  }
  /* 手机上二维码弹层:底部居中弹出
     用 margin-left:-160px(负边距)做水平居中,这是 iOS Safari 最稳的方案
     比 transform:translateX 和 margin:auto 都更可靠
     bottom: 140px 高过 WhatsApp 按钮顶部(距底 122px) */
  .fc-qr-popup {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: 140px !important;
    top: auto !important;
    width: 320px !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: -160px !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    transform: translateY(20px);
  }
  .fc-qr-arrow {
    display: none;
  }
  .fc-wechat.qr-active .fc-qr-popup {
    transform: translateY(0);
  }
  .fc-qr-image {
    width: 180px;
    height: 180px;
  }
}

/* 点击外部关闭弹层时,加个半透明黑色遮罩 */
.fc-qr-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.fc-qr-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 641px) {
  .fc-qr-backdrop { display: none; }
}
