/* ====== HOME PAGE ====== */

/* ═══════════════════════════════════════════════════════
   LUXURY EDITORIAL - 21offer Beautified Version
   Design Direction: Premium, Refined, Memorable
══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  /* Ghost font settings (can be overridden in Ghost Admin) */
  --gh-font-heading: 'Noto Serif SC', Georgia, serif;
  --gh-font-body: 'Noto Sans SC', -apple-system, sans-serif;

  /* Primary - Refined Emerald */
  --primary:       #064E3B;
  --primary-dark: #022C22;
  --primary-light: #059669;

  /* Accent - Warm Gold */
  --accent:       #B8860B;
  --accent-light: #D4A853;
  --accent-pale:  #F5E6C8;

  /* Neutrals */
  --cream:        #FAF9F7;
  --warm-white:   #F7F5F2;
  --stone:        #E8E4DD;
  --charcoal:     #1C1917;
  --slate:        #57534E;
  --slate-light:  #A8A29E;

  /* Semantic */
  --bg-primary:   #FFFFFF;
  --bg-secondary: var(--cream);
  --text-primary: var(--charcoal);
  --text-secondary: var(--slate);
  --border:       #E5E0D8;
}

body {
  font-family: var(--gh-font-body);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gh-font-heading);
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION - Glassmorphism with refined typography
══════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
nav.scrolled {
  height: 64px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1px;
}
.nav-logo .logo-num { color: var(--primary); }
.nav-logo .logo-word { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  border-radius: 6px;
  text-decoration: none !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6,78,59,0.25);
}

/* ═══════════════════════════════════════════════════════
   HERO - Dramatic with depth
══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 60%, #06574B 100%);
  padding: 120px 48px 80px;
}

/* Decorative orbs */
.hero-orb {
  position: absolute;
  right: -200px; top: -10%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, rgba(212,168,83,0.04) 30%, transparent 70%);
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  left: -100px; bottom: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,168,83,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-topline {
  position: absolute;
  top: 72px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.eyebrow-text {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}
.hero h1 .gold {
  color: var(--accent-light);
  position: relative;
}
.hero h1 .gold::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-light), transparent);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
  font-weight: 400;
}
.hero-sub strong {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.btn-primary {
  background: var(--accent);
  color: var(--charcoal);
  padding: 14px 32px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(184,134,11,0.3);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.4);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
  background: rgba(255,255,255,0.08);
}

/* Hero card - refined glass effect */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 36px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 20px 60px rgba(0,0,0,0.2);
}

.hero-card-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
  margin-bottom: 28px;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -1.5px;
}
.stat-num sup {
  font-size: 18px;
  vertical-align: super;
  letter-spacing: 0;
  opacity: 0.7;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-weight: 400;
}

.hero-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin-bottom: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.badge:last-child { margin-bottom: 0; }
.badge-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS - Shared styles
══════════════════════════════════════════════════════ */
section { padding: 100px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.label-line { width: 32px; height: 2px; background: var(--accent); flex-shrink: 0; }
.label-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 500px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   SERVICES - Elevated cards
══════════════════════════════════════════════════════ */
.services { background: white; }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  display: block;
  border-radius: 12px;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: rgba(6,78,59,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,78,59,0.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(6,78,59,0.2);
  color: white;
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 400;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.service-tag {
  background: white;
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--slate);
  border-radius: 4px;
  font-weight: 500;
}

.service-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-arrow { transition: transform 0.3s; display: inline-block; }
.service-card:hover .service-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   WHY - Icon cards with subtle hover
══════════════════════════════════════════════════════ */
.why { background: var(--cream); }

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

.why-item {
  background: white;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  cursor: default;
  border-radius: 12px;
  text-align: center;
}
.why-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(6,78,59,0.2);
}
.why-item:hover .why-icon {
  background: rgba(255,255,255,0.15);
}
.why-item:hover .why-title { color: white; }
.why-item:hover .why-desc { color: rgba(255,255,255,0.7); }

.why-icon {
  width: 48px; height: 48px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all 0.35s;
  border-radius: 10px;
}

.why-item:hover .why-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}
.why-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  transition: color 0.35s;
}
.why-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  transition: color 0.35s;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   CASES - Refined card design
══════════════════════════════════════════════════════ */
.cases { background: white; }

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

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

.case-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  border-radius: 12px;
  background: var(--cream);
  text-decoration:none;
}
.case-card:hover {
  border-color: rgba(6,78,59,0.15);
  transform: translateY(-4px);
}

.case-top {
  background: linear-gradient(135deg, var(--primary) 0%, #06574B 100%);
  padding: 32px 28px 28px;
  position: relative;
}
.case-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(212,168,83,0.1) 0%, transparent 40%);
}

.case-school {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.case-program {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.case-result-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--accent);
  padding: 4px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  z-index: 1;
  border-radius: 4px;
}

.case-body {
  padding: 24px 28px 28px;
  background: white;
}
.case-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.case-meta-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--slate);
  border-radius: 4px;
  font-weight: 500;
}
.case-story {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}
.case-read {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile Burger Button */
.gh-burger {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    appearance: none;
}
.gh-burger::before,
.gh-burger::after {
    position: absolute;
    left: 3px;
    width: 24px;
    height: 2px;
    background: var(--primary);
    content: "";
    transition: all 0.2s;
}
.gh-burger::before { top: 9px; }
.gh-burger::after { bottom: 9px; }
.gh-head-open .gh-burger::before { top: 14px; transform: rotate(45deg); }
.gh-head-open .gh-burger::after { bottom: 13px; transform: rotate(-45deg); }

/* Mobile Menu */
@media (max-width: 767px) {
    .gh-burger { display: block; }
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .gh-head-open .nav-links { display: flex; }
    .nav-links a { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════
   PROCESS - Elegant steps
══════════════════════════════════════════════════════ */
.process {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 100px 48px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 0%, rgba(212,168,83,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 100%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.process .section-heading { color: white; }
.process .section-sub { color: rgba(255,255,255,0.55); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  border-radius: 12px;
  transition: all 0.35s;
  position: relative;
}
.step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,168,83,0.15);
  border: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL - Enhanced cards with hover effects
══════════════════════════════════════════════════════ */
.testimonial {
  background: linear-gradient(180deg, var(--accent-pale) 0%, #FDF8EF 100%);
  border-top: 1px solid rgba(184,134,11,0.15);
  border-bottom: 1px solid rgba(184,134,11,0.15);
  padding: 80px 48px;
}
.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.testi-card {
  background: white;
  border: 1px solid rgba(184,134,11,0.15);
  padding: 36px 32px 32px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6,78,59,0.12);
  border-color: var(--accent);
}
.testi-card:hover::before {
  transform: scaleX(1);
}
.testi-quote {
  font-size: 52px;
  color: var(--accent);
  font-family: 'Georgia', serif;
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.7;
  font-weight: 700;
}
.testi-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 3px rgba(6,78,59,0.1);
}
.testi-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}
.testi-meta {
  font-size: 12px;
  color: var(--slate-light);
  margin-top: 3px;
}
.testi-meta strong {
  color: var(--primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-banner {
  background: white;
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -1.2px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-sub {
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 400;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.wechat-qr {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.btn-green {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(6,78,59,0.25);
}
.btn-green:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,78,59,0.3);
}
.cta-note {
  font-size: 12px;
  color: var(--slate-light);
  text-align: center;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER - Refined dark
══════════════════════════════════════════════════════ */
footer {
  background: var(--charcoal);
  padding: 72px 48px 44px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.footer-contact a:hover { color: var(--accent); }
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-badge {
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.2);
  padding: 6px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered animation delays */
.reveal.delay-1.visible { transition-delay: 0.1s; }
.reveal.delay-2.visible { transition-delay: 0.2s; }
.reveal.delay-3.visible { transition-delay: 0.3s; }
.reveal.delay-4.visible { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  section { padding: 72px 24px; }
  .hero { padding: 100px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-card { display: none; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-intro .section-sub { align-self: start; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonial-inner { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-actions { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { letter-spacing: -1px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-links { display: none; }
  .footer-col-title { margin-bottom: 0; }
}

/* ═══════════════════════════════════════════════════════
   GHOST CARD COMPONENTS (required by Ghost)
══════════════════════════════════════════════════════ */
.kg-width-wide { width: 100vw; margin-left: calc(50% - 50vw); }
.kg-width-full { width: 100vw; margin-left: calc(50% - 50vw); }

.kg-gallery-container { display: flex; flex-direction: column; gap: 16px; max-width: 100%; }
.kg-gallery-row { display: flex; gap: 16px; flex-wrap: wrap; }
.kg-gallery-image img { width: 100%; height: auto; display: block; }
.kg-gallery-image:not(:first-of-type) { flex: 1 1 33%; }
.kg-gallery-image:first-of-type:not(:only-child) { flex: 1 1 100%; }

.kg-bookmark-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 20px; flex: 1 1 auto; }
.kg-bookmark-title { font-weight: 600; margin-bottom: 6px; }
.kg-bookmark-description { font-size: 13px; color: var(--slate); line-height: 1.5; margin-bottom: 8px; }
.kg-bookmark-metadata { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--slate-light); }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-thumbnail { width: 120px; object-fit: cover; }

/* Ghost image captions */
figcaption { font-size: 13px; color: var(--slate-light); text-align: center; margin-top: 8px; }

.kg-bookmark-author, .kg-bookmark-publisher { font-size: 12px; color: var(--slate-light); }

/* ═══════════════════════════════════════════════════════
   OTHER PAGES - Isolated styles to avoid conflicts
══════════════════════════════════════════════════════ */

/* Page Hero - simpler than home hero */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 60%, #06574B 100%);
  padding: 120px 48px 60px;
}
.page-hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
.page-hero h1 span { color: var(--accent-light); }
.page-hero .hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.study-h2, .contact-h2, .course-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   STUDY ABROAD PAGE SERVICES GRID
══════════════════════════════════════════════════════ */


.study-services {
  background: white;
  border-bottom: 1px solid var(--border);
}

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

.study-service-item {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.study-service-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(6,78,59,0.1);
}

.study-service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--primary);
}

.study-service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.study-service-desc {
  font-size: 13px;
  color: var(--text-secondary);
}



/* ═══════════════════════════════════════════════════════
   STUDY ABROAD PAGE DESTINATIONS
══════════════════════════════════════════════════════ */
.study-destinations {
  background: white;
}

.study-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.study-dest-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.study-dest-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 12px 30px rgba(6,78,59,0.1);
}

.study-dest-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.study-dest-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.study-dest-header span {
  font-size: 13px;
  color: var(--accent-light);
}

.study-dest-body {
  padding: 24px 28px;
}

.study-dest-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 14px 0 10px;
  font-weight: 500;
}

.study-dest-subtitle:first-child {
  margin-top: 0;
}

.study-dest-unis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.study-dest-uni {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 8px;
}

.study-dest-uni.prime {
  background: var(--accent-pale);
  border-color: var(--accent-light);
  color: var(--text-primary);
  font-weight: 600;
}

/* Carousel - Destinations & Pricing */
/* Desktop: 2x2 grid for destinations, 3 cols for pricing */
@media (min-width: 769px) {
  .dest-carousel,
  .pricing-carousel {
    display: block;
    margin-top: 48px;
  }
  .dest-carousel-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow-x: visible;
  }
  .dest-carousel-track .study-dest-card {
    flex: none;
    max-width: none;
  }
  .pricing-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    overflow-x: visible;
  }
  .pricing-carousel-track .study-price-card {
    flex: none;
    max-width: none;
  }
  .dest-carousel-arrows,
  .pricing-carousel-arrows {
    display: none;
  }
}

/* Mobile: Side arrows + dot indicators, one card at a time */
@media (max-width: 768px) {
  .dest-carousel,
  .pricing-carousel {
    position: relative;
    padding: 20px 0 40px 0;
    margin-top: 32px;
  }

  /* Side arrows as text, no button wrapper */
  .dest-carousel-btn,
  .pricing-carousel-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    color: var(--primary);
    border: none;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s ease;
    flex-shrink: 0;
  }

  .dest-carousel-btn:hover,
  .pricing-carousel-btn:hover {
    color: var(--primary-dark);
  }

  .dest-carousel-btn:disabled,
  .pricing-carousel-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
  }

  /* Arrows + dots in a row */
  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .carousel-nav .carousel-dots {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .dest-carousel-track,
  .pricing-carousel-track {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 16px 12px;
    scrollbar-width: none;
    justify-content: center;
  }

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

  .dest-carousel-track .study-dest-card,
  .pricing-carousel-track .study-price-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-height: 540px;
    overflow-y: auto;
    scroll-snap-align: start;
  }


  /* Featured badges on mobile - top left angled ribbon */
  .study-price-card.featured::before {
    font-size: 14px;
    padding: 6px 14px;
    z-index: 100;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
  }

  .carousel-dot:hover {
    background: var(--primary-light);
  }

  .carousel-dot.is-active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
  }
}

/* ═══════════════════════════════════════════════════════
   STUDY ABROAD PAGE PRICING
══════════════════════════════════════════════════════ */
.study-pricing {
  background: var(--bg-secondary);
}

.study-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.study-price-card {
  background: white;
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.study-price-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6,78,59,0.12);
}

.study-price-card.featured {
  border: 2px solid var(--primary);
  position: relative;
  transform: scale(1.02);
}

.study-price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 24px 56px rgba(6,78,59,0.18);
}

/* Ribbon badge at top-left, angled */
.study-price-card.featured::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 20px;
  z-index: 1;
  transform: rotate(-6deg);
  box-shadow: 0 2px 8px rgba(184,134,11,0.3);
}

.study-price-card.featured::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #8B6914;
  transform: rotate(-6deg);
  z-index: 0;
}

.study-price-card.featured:nth-child(1)::before { content: '性价比'; }
.study-price-card.featured:nth-child(2)::before { content: '热门'; }
.study-price-card.featured:nth-child(3)::before { content: '推荐'; }

.study-price-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.study-price-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.study-price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
}

.study-price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: var(--slate-light);
}

.study-price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.study-price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.study-price-features li:last-child {
  border-bottom: none;
}

.study-price-features li i {
  color: var(--primary);
  font-size: 12px;
}

.study-price-btn {
  display: inline-block;
  width: 80%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.study-price-btn-primary {
  background: var(--primary);
  color: white;
}

.study-price-btn-primary:hover {
  background: var(--primary-light);
}

.study-price-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.study-price-btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Price services - single service layout - align with other cards */
.study-price-services {
  margin-bottom: 28px;
}

.study-price-services li {
  justify-content: flex-start;
  gap: 8px;
}

.study-price-services li {
  justify-content: space-between;
  padding: 10px 0;
}

.study-service-name {
  color: var(--text-secondary);
}

.study-service-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary);
}

/* STUDY ABROAD PAGE FAQ */
.study-faq {
  background: white;
}

.study-faq-list {
  margin-top: 40px;
}

.study-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.study-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.study-faq-question i {
  color: var(--slate-light);
  transition: transform 0.3s ease;
}

.study-faq-item.active .study-faq-question i {
  transform: rotate(180deg);
}

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

.study-faq-item.active .study-faq-answer {
  max-height: 200px;
}

.study-faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}



/* STUDY ABROAD PAGE CTA 只改背景颜色 */

.study-cta-banner {
  background: var(--accent-pale);
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}


/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */

.contact-section {
  background: white;
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}

.contact-detail {
  padding-top: 2px;
}

.contact-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 400;
}

.contact-value a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--primary);
}

.qr-section {
  margin-top: 12px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.qr-section img {
  width: 80%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 12px;
}


/* Contact Form */
.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-family: var(--gh-font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-light);
}

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

.form-submit {
  width: 100%;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--gh-font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.25);
}

/* Contact FAQ */
.contact-faq {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(165deg, var(--primary-dark) 0%, var(--primary) 60%, #06574B 100%);
  padding: 100px 48px;
  text-align: center;
}

.contact-cta .cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.contact-cta .cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════════════════
   COURSES PAGE
══════════════════════════════════════════════════════ */

/* Teacher Section */
.teacher {
  background: white;
  border-bottom: 1px solid var(--border);
}

.teacher-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.teacher-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--stone);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teacher-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.teacher-title {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.teacher-bio {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}

.teacher-stats {
  display: flex;
  gap: 40px;
}

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

.teacher-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.teacher-stat-label {
  font-size: 12px;
  color: var(--slate-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Course Cards */
.course-section {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

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

.course-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.course-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(6, 78, 59, 0.1);
}

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

.course-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.course-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.course-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.course-price {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-top: auto;
}

.course-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-light);
}

/* Subject Cards */
.course-subjects {
  background: white;
  border-bottom: 1px solid var(--border);
}

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

.subject-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.subject-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(6, 78, 59, 0.08);
}

.subject-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.subject-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.subject-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.subject-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subject-points li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.subject-points li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-light);
  font-size: 11px;
}

/* Course CTA 复用 index cta*/


/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════ */

/* iPad (768px - 1024px) */
@media (max-width: 1024px) {
  .study-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

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

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

  .course-cta .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {

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

  .study-process-steps {
    flex-direction: column;
    align-items: center;
  }


  .study-dest-grid,
  .study-pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    align-items: flex-start;
  }

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

  /* Contact Page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .study-faq-list {
    margin-top: 32px;
  }

  /* Course Page */
  .teacher-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    text-align: center;
    gap: 32px;
  }

  .teacher-photo {
    margin: 0 auto;
  }

  .teacher-stats {
    justify-content: left;
    gap: 32px;
  }
  .teacher-bio {
    text-align: left;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 100px 24px 48px;
  }

  .course-cta {
    padding: 60px 24px;
  }

  .contact-section,
  .contact-cta {
    padding: 60px 24px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .study-services-grid {
    grid-template-columns: 1fr;
  }

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

  .teacher-stats {
    flex-direction: row;
    gap: 32px;
    align-items: center;
  }

  .teacher-stat {
    flex: 1;
    text-align: center;
    padding: 0 12px;
  }

  .teacher-stat:not(:last-child) {
    border-right: 1px solid var(--border);
  }
}