/* ===================================
   身份规划大牛出国 - 全局样式
   =================================== */

:root {
  /* 琥珀橙主题配色 - 活力创新风格 */
  --primary: #E67E22;        /* 琥珀橙主色 */
  --primary-light: #F5B041;  /* 浅琥珀 */
  --primary-dark: #D35400;   /* 深琥珀 */
  --primary-pale: #FDEBD0;  /* 淡琥珀（浅色背景用） */
  --accent: #F39C12;         /* 金黄色强调 */
  
  /* 背景色（保持深色基调） */
  --deep: #0D1117;           /* 深色背景 */
  --deep2: #161B22;          /* 次深背景 */
  --ink: #21262D;            /* 卡片/面板背景 */
  
  /* 文字色 */
  --text-primary: #FFFFFF;
  --text-secondary: #C9D1D9;
  --text-muted: #8B949E;
  
  /* 功能色 */
  --success: #2ECC71;
  --danger: #E74C3C;
  --border: rgba(230, 126, 34, 0.3);
  
  /* 兼容性变量（保留部分金色用于过渡） */
  --gold: var(--primary);
  --gold-light: var(--primary-light);
  --gold-pale: var(--primary-pale);
  --smoke: var(--text-muted);
  --cream: var(--primary-pale);
  --white: var(--text-primary);
  --red-accent: var(--danger);
}

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

html { scroll-behavior: smooth; }

body {
  background: 
    /* 美国主题渐变：从自由女神蓝到琥珀色调 */
    linear-gradient(135deg, #0a1628 0%, #1a1a2e 25%, #16213e 50%, #1a1a2e 75%, #0f1923 100%);
  color: var(--text-primary);
  font-family: 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(180deg, rgba(10,14,26,0.97) 0%, rgba(10,14,26,0) 100%);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

.logo-icon {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  flex-shrink: 0;
}

.logo-text { color: var(--white); }
.logo-text .brand { font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 700; letter-spacing: 2px; }
.logo-text .sub { font-size: 10px; color: var(--gold); letter-spacing: 3px; font-weight: 300; }

nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s;
  font-weight: 400;
  white-space: nowrap;
}
nav a:hover { color: var(--primary-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(230, 126, 34, 0.4); color: #fff !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(28,35,64,0.8) 0%, transparent 60%),
    linear-gradient(135deg, #0A0E1A 0%, #111827 50%, #0D1220 100%);
}

.globe-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 0 80px rgba(201,168,76,0.06), inset 0 0 80px rgba(201,168,76,0.03);
}
.globe-deco::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.globe-deco::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 .line1 { display: block; }
.hero h1 .accent { color: var(--gold); }

.hero-en {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 1s 0.25s ease both;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 44px;
  animation: fadeUp 1s 0.4s ease both;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--smoke); letter-spacing: 1px; margin-top: 4px; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230, 126, 34, 0.4); }

.btn-ghost {
  border: 1px solid rgba(230, 126, 34, 0.6);
  color: var(--primary-light);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(230, 126, 34, 0.1); border-color: var(--primary); }

/* ─── SECTIONS ─── */
section { position: relative; z-index: 1; }
.section-pad { padding: 100px 48px; }

.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-head .label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.section-head h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 15px;
  color: var(--smoke);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── SERVICES ─── */
.services-section { 
  background: linear-gradient(180deg, 
    rgba(26, 26, 46, 0.95) 0%, 
    rgba(10, 22, 40, 0.98) 50%, 
    rgba(26, 26, 46, 0.95) 100%
  ); 
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(230, 126, 34, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(245, 176, 65, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(230, 126, 34, 0.15);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(230, 126, 34, 0.5); transform: translateY(-2px); }

.service-tag {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(230, 126, 34, 0.12);
  letter-spacing: 2px;
  position: absolute;
  top: 24px;
  right: 28px;
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.25), rgba(230, 126, 34, 0.08));
  border: 1px solid rgba(230, 126, 34, 0.35);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.service-card h3 span { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; margin-left: 8px; font-family: 'Noto Sans SC'; }
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 5px 14px;
  background: rgba(230, 126, 34, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.25);
  border-radius: 2px;
  font-size: 12px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

/* ─── BENEFITS ─── */
.benefits-section { 
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.9) 0%, 
    rgba(26, 26, 46, 0.85) 50%, 
    rgba(10, 22, 40, 0.9) 100%
  );
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 10% 50%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passport-card {
  width: 320px;
  background: linear-gradient(135deg, #1C2340 0%, #0F1628 100%);
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.25);
  padding: 36px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1);
  position: relative;
  z-index: 2;
}
.passport-card::before {
  content: 'UNITED STATES OF AMERICA';
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.passport-eagle {
  font-size: 56px;
  text-align: center;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
}
.passport-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 4px;
}
.passport-type {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 2px;
}
.passport-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 20px 0;
}
.passport-info { display: flex; flex-direction: column; gap: 8px; }
.passport-row { display: flex; justify-content: space-between; font-size: 12px; }
.passport-key { color: var(--smoke); font-size: 10px; letter-spacing: 1px; }
.passport-val { color: var(--gold-light); font-weight: 500; font-size: 12px; }

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 16px 40px rgba(201,168,76,0.35);
}
.floating-badge:nth-child(2) { top: 40px; right: -20px; }
.floating-badge:nth-child(3) { bottom: 80px; left: -20px; }

.benefits-list { display: flex; flex-direction: column; gap: 28px; }
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  transition: all 0.3s;
  background: rgba(255,255,255,0.01);
}
.benefit-item:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
  transform: translateX(4px);
}
.benefit-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  min-width: 40px;
}
.benefit-content h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.benefit-content p { font-size: 13px; color: var(--smoke); line-height: 1.7; }

/* ─── PROCESS ─── */
.process-section { 
  background: linear-gradient(180deg, 
    rgba(26, 26, 46, 0.95) 0%, 
    rgba(10, 22, 40, 0.9) 50%, 
    rgba(15, 25, 45, 0.95) 100%
  );
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 90% 20%, rgba(245, 176, 65, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.25;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 2px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-circle {
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.1));
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.step-icon { font-size: 26px; }
.process-step h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p { font-size: 12px; color: var(--smoke); line-height: 1.7; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { 
  background: linear-gradient(180deg, 
    rgba(15, 25, 45, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 50%, 
    rgba(10, 22, 40, 0.95) 100%
  );
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(230, 126, 34, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); }
.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 72px;
  color: rgba(201,168,76,0.15);
  line-height: 0.8;
  margin-bottom: 20px;
  display: block;
}
.testimonial-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-info { font-size: 12px; color: var(--gold); margin-top: 2px; }

/* ─── CONTACT ─── */
.contact-section { 
  background: linear-gradient(180deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 100%
  );
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(230, 126, 34, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.contact-info > p {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: all 0.3s;
}
.contact-item:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.contact-item-icon { font-size: 22px; flex-shrink: 0; }
.contact-item-label { font-size: 11px; color: var(--smoke); letter-spacing: 1px; margin-bottom: 4px; }
.contact-item-val { font-size: 16px; color: var(--white); font-weight: 500; }
.contact-item-val a { color: var(--gold-light); text-decoration: none; }

.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 48px;
}
.contact-form-wrap h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  margin-bottom: 32px;
  color: var(--gold);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--smoke);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,0.5); }
.form-group select option { background: var(--deep2); }
.form-group textarea { height: 100px; resize: none; }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep);
  border: none;
  padding: 16px;
  border-radius: 2px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,168,76,0.4); }

/* ─── FOOTER ─── */
footer {
  background: 
    linear-gradient(180deg, rgba(7, 10, 19, 0.98) 0%, rgba(5, 8, 15, 1) 100%);
  padding: 60px 48px 40px;
  border-top: 1px solid rgba(230, 126, 34, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo-text .brand { font-size: 19px; }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}
.footer-domain {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--primary);
  opacity: 0.6;
  letter-spacing: 2px;
  margin-top: 12px;
}

.footer-col h5 {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── FLOATING PHONE ─── */
.float-phone {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  text-decoration: none;
  transition: all 0.3s;
}
.float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(201,168,76,0.7);
}

/* ─── GUARANTEE STRIP ─── */
.guarantee-strip {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 48px;
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.guarantee-item span { font-size: 22px; }
.guarantee-item strong { color: var(--gold); }

/* ─── SCROLL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── COMPARISON ─── */
.comparison-section { 
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 50%, 
    rgba(10, 22, 40, 0.95) 100%
  );
  position: relative;
}
.comparison-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.comparison-table {
  max-width: 1200px;
  margin: 0 auto 60px;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 900px;
}

.compare-table th,
.compare-table td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

.compare-table thead th {
  background: rgba(230, 126, 34, 0.12);
  color: var(--primary);
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.compare-table .highlight-col {
  background: rgba(230, 126, 34, 0.1) !important;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.compare-table tbody tr {
  background: rgba(255,255,255,0.01);
  transition: background 0.3s;
}

.compare-table tbody tr:hover {
  background: rgba(230, 126, 34, 0.04);
}

.compare-table .row-label {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255,255,255,0.03) !important;
}

.compare-table td strong {
  color: var(--primary-light);
}

.comparison-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.highlight-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.1);
}

.highlight-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.highlight-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.6;
}

/* ─── EDUCATION ─── */
.education-section { 
  background: linear-gradient(180deg, 
    rgba(26, 26, 46, 0.95) 0%, 
    rgba(15, 25, 45, 0.9) 50%, 
    rgba(26, 26, 46, 0.95) 100%
  );
  position: relative;
}
.education-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 30%, rgba(230, 126, 34, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.education-intro h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.education-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 24px;
}

.edu-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.edu-stat {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
}

.edu-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.edu-stat-label {
  font-size: 12px;
  color: var(--smoke);
  margin-top: 6px;
}

.education-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 24px;
  transition: all 0.3s;
}

.edu-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.edu-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.edu-card-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.edu-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.7;
}

/* Education Fund Section */
.edu-fund-section { 
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(22, 33, 62, 0.9) 50%, 
    rgba(10, 22, 40, 0.95) 100%
  );
  padding: 60px 48px;
  position: relative;
}
.edu-fund-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 40% 60%, rgba(245, 176, 65, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.edu-fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.fund-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.fund-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.15);
}

.fund-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.fund-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.fund-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.fund-highlight {
  background: rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 12px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ─── CULTURE ─── */
.culture-section { 
  background: linear-gradient(180deg, 
    rgba(26, 26, 46, 0.95) 0%, 
    rgba(15, 25, 45, 0.9) 50%, 
    rgba(26, 26, 46, 0.95) 100%
  );
  position: relative;
}
.culture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 60% 70%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.culture-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.culture-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.culture-card:hover::before {
  transform: scaleX(1);
}

.culture-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  transform: translateY(-6px);
}

.culture-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.culture-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.culture-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
}

/* ─── MEDICAL ─── */
.medical-section { 
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 50%, 
    rgba(10, 22, 40, 0.95) 100%
  );
  position: relative;
}
.medical-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(230, 126, 34, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.medical-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.medical-intro h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.medical-intro p {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.8;
}

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

.medical-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.medical-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.medical-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.medical-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.medical-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 16px;
}

.medical-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  font-size: 12px;
  color: var(--gold-light);
  margin-right: 6px;
  margin-bottom: 6px;
}

.medical-cta {
  max-width: 600px;
  margin: 60px auto 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.medical-cta h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}

.medical-cta p {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 20px;
}

/* ─── PITFALLS ─── */
.pitfalls-section { 
  background: linear-gradient(180deg, 
    rgba(26, 26, 46, 0.95) 0%, 
    rgba(15, 25, 45, 0.9) 50%, 
    rgba(26, 26, 46, 0.95) 100%
  );
  position: relative;
}
.pitfalls-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pitfalls-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.pitfalls-intro h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.pitfalls-intro p {
  font-size: 15px;
  color: var(--smoke);
  line-height: 1.8;
}

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

.pitfall-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(176,58,46,0.3);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pitfall-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red-accent);
}

.pitfall-card:hover {
  background: rgba(176,58,46,0.08);
  transform: translateX(4px);
}

.pitfall-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pitfall-icon {
  width: 36px;
  height: 36px;
  background: rgba(176,58,46,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pitfall-card h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.pitfall-card p {
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.7;
  margin-bottom: 12px;
}

.pitfall-solution {
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--gold-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pitfall-solution::before {
  content: '✅';
  flex-shrink: 0;
}

.pitfalls-warning {
  max-width: 700px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, rgba(176,58,46,0.15), rgba(176,58,46,0.05));
  border: 1px solid rgba(176,58,46,0.4);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.pitfalls-warning h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  color: var(--red-accent);
  margin-bottom: 12px;
}

.pitfalls-warning p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* ─── PAGE HEADER (for sub-pages) ─── */
.page-header {
  padding: 180px 48px 100px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0A0E1A 0%, #111827 50%, #0D1220 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.page-header .breadcrumb {
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.page-header .breadcrumb span {
  margin: 0 8px;
}

.page-header h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header h1 .accent { color: var(--gold); }

.page-header .subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── CONTENT SECTIONS ─── */
.content-section {
  padding: 80px 48px;
}

.content-section.alt-bg { background: var(--deep2); }

.content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.content-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s;
}

.content-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.content-card .card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.content-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.content-card p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.8;
}

/* ─── FAQ SECTION ─── */
.faq-section { 
  background: linear-gradient(180deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(26, 26, 46, 0.9) 100%
  );
  position: relative;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 100%, rgba(230, 126, 34, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.faq-item h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4::after {
  content: '+';
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 14px;
  color: var(--smoke);
  line-height: 1.8;
  display: none;
}

.faq-item.active p {
  display: block;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 80px 48px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  header { padding: 16px 24px; }
  nav { gap: 16px; }
  nav a { font-size: 12px; }
  .hero { padding: 100px 24px 60px; }
  .globe-deco { display: none; }
  .section-pad { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-visual { display: none; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-track::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .guarantee-strip { gap: 28px; flex-wrap: wrap; }
  .edu-fund-section { padding: 60px 24px; }
  .edu-stats { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-highlights { grid-template-columns: repeat(2, 1fr); }
  .edu-fund-grid { grid-template-columns: 1fr; }
  .medical-grid { grid-template-columns: 1fr; }
  .pitfalls-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.cols-2 { grid-template-columns: 1fr; }
  .page-header { padding: 140px 24px 60px; }
}
