/* ============================================
   DESIGN TOKENS
   ============================================ */
* {
  box-sizing: border-box;
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}
:root {
  --font-display: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;

  --gold: #C9A84C;
  --gold-light: #E8C84A;
  --gold-dark: #A07830;
  --gold-pale: #FBF5E0;
  --navy: #0A2463;
  --navy-dark: #061840;
  --navy-mid: #1A3A7A;
  --white: #FFFFFF;
  --off-white: #F7F5F0;
  --gray-light: #F0EDE8;
  --gray-mid: #8A8A8A;
  --text-dark: #1A1A2E;
  --text-mid: #3A3A5C;

  --gradient-dark: linear-gradient(135deg, #1A1040 0%, #0A2463 45%, #1C0E40 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E8C84A 50%, #C9A84C 100%);
  --gradient-hero: linear-gradient(135deg, #06101E 0%, #0A2463 40%, #1A0830 80%, #06101E 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.gold-text { color: var(--gold-light); }
.gold-text-dark { color: var(--gold); }

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-cta.show {
  transform: translateY(0);
  opacity: 1;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
}
.floating-btn:hover {
  transform: translateY(-3px);
}
.floating-icon { font-size: 1.2rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  background: transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(6, 16, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo-badge {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 4px;
}
.logo-badge.small { font-size: 0.65rem; padding: 2px 6px; }
.logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-home { color: var(--gold-light) !important; font-weight: 700 !important; }
.nav-cta {
  background: var(--gradient-gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 1rem !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-title.dark { color: var(--text-dark); }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
.section-sub.dark { color: var(--text-mid); }
.section-sub.light { color: rgba(255,255,255,0.7); }

/* Backgrounds */
.section-light { background: var(--white); }
.section-off-white { background: var(--off-white); }
.section-navy { background: var(--navy-dark); }
.section-gradient-dark { background: var(--gradient-dark); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 18px 40px;
}
.btn-pkg-standard {
  background: var(--off-white);
  color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  display: block;
  text-align: center;
  transition: var(--transition);
  margin-top: auto;
}
.btn-pkg-standard:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-pkg-full {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  display: block;
  text-align: center;
  transition: var(--transition);
  margin-top: auto;
}
.btn-pkg-full:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,48,122,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(100,0,160,0.1) 0%, transparent 50%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,0.5);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 24px 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  backdrop-filter: blur(12px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 120px;
}
.stat-item strong span { font-size: 0.6em; }
.stat-item > span {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  margin: 0 16px;
  flex-shrink: 0;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.1em;
}
.scroll-arrow {
  margin-top: 8px;
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================
   CARD GRIDS
   ============================================ */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-light {
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.card-light:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.card-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.card-dark:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrap svg { width: 28px; height: 28px; }
.card-icon-wrap.gold {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.card-icon-wrap.navy {
  background: #EAF0FA;
  color: var(--navy);
}
.card-icon-wrap.gold-dark {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.card-title.dark { color: var(--text-dark); }
.card-title.light { color: var(--white); }
.card-desc { font-size: 1.05rem; line-height: 1.75; }
.card-desc:not(.light) { color: var(--text-mid); }
.card-desc.light { color: rgba(255,255,255,0.65); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}

/* ============================================
   CATEGORIES / TABS
   ============================================ */
.tabs-wrapper { width: 100%; }
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.tab-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.tab-btn.active {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}
.tabs-content {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInTab 0.4s ease; }
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.award-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08); 
  cursor: pointer;
  position: relative;
}
.award-item span:not(.award-num) {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.award-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
  transform: translateX(4px);
}
/* Tooltip Base */
.award-tooltip {
  position: fixed;
  z-index: 1000;
  background: rgba(10, 24, 99, 0.95);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border: 1px solid var(--gold);
  max-width: 280px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}
.award-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
.award-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--gold) transparent transparent;
}
.award-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  min-width: 28px;
}

/* ============================================
   CASE STUDY CARDS
   ============================================ */
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.case-icon { margin-bottom: 0px; }
.case-icon svg { width: 140px; height: 140px; }
.case-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.25);
  align-self: flex-start;
}
.case-badge.navy-badge {
  background: rgba(10,36,99,0.06);
  color: var(--navy);
  border-color: rgba(10,36,99,0.15);
}
.case-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.case-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.case-quote {
  margin-top: 20px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.package-card {
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
}
.package-standard {
  background: var(--white);
  border: 2px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.package-standard:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.package-full {
  background: var(--navy-dark);
  border: 2px solid var(--gold);
  box-shadow: 0 20px 60px rgba(10,36,99,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.package-full:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(10,36,99,0.5), var(--shadow-gold);
}
.best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 5px 20px;
  border-radius: 50px;
  font-family: 'Noto Sans KR', sans-serif;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.pkg-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-light);
}
.package-full .pkg-header {
  border-bottom-color: rgba(255,255,255,0.1);
}
.pkg-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.pkg-label.light-label {
  color: rgba(255,255,255,0.55);
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pkg-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pkg-amount.gold { color: var(--gold-light); }
.pkg-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-mid);
}
.pkg-unit.gold { color: var(--gold-light); }
.pkg-sub-label {
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.pkg-sub-label.light-sub { color: rgba(255,255,255,0.4); }
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.pkg-features-dark li {
  color: rgba(255,255,255,0.7);
}
.pkg-check {
  color: var(--navy);
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-check.gold-check { color: var(--gold-light); }
.extra-item {
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.extra-item:first-of-type {
  padding-top: 16px;
  border-top: 1px dashed rgba(201,168,76,0.3);
}
.extra-item strong { color: var(--gold-light); }
.pkg-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pkg-note {
  margin-top: 40px;
  padding: 26px 30px 24px;
  background: var(--gold-pale);
  border-radius: 16px;
  font-size: 1.25rem;
  color: var(--gold-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border: 1px solid rgba(201,168,76,0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 12px;
}
.pkg-note::before {
  content: '💡';
  font-size: 1.5rem;
  margin-top: -2px;
}
.pkg-notice p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.pkg-notice strong { color: var(--gold-dark); }

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.step-number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
}
.step-connector {
  position: absolute;
  top: 31px;
  left: calc(50% + 31px);
  right: calc(-50% + 31px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  z-index: 1;
}
.process-step.last .step-connector { display: none; }
.step-content { text-align: center; }
.section-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.step-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* ============================================
   TARGET SECTION
   ============================================ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.target-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.target-card:hover::before { transform: scaleX(1); }
.target-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.target-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.target-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.target-card p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-cta {
  position: relative;
  background: var(--gradient-hero);
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(100,0,200,0.08) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-badge-wrap { margin-bottom: 24px; }
.cta-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 500;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item:first-child {
  border-top: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
  line-height: 1.5;
}
.faq-question:hover {
  color: var(--gold-dark);
}
.faq-question[aria-expanded="true"] {
  color: var(--gold-dark);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 8px 28px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
}
.faq-answer.open {
  display: block;
}
.faq-answer p {
  margin-bottom: 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq-answer ol li {
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 20px 4px;
  }
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 4px 24px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060D1A;
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-text {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.footer-copy {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.footer-disclaimer {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .container { 
    width: 100%;
    padding: 0 24px; 
    margin: 0 auto;
  }
  .section { padding: 60px 0; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(6,16,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  
  .header-inner {
    padding: 0 24px !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo { padding: 0; margin: 0; }
  .hamburger { 
    display: flex;
    padding: 0;
    margin: 0;
  }

  .hero-content { 
    padding: 100px 24px 60px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-badge {
    display: inline-flex;
    margin: 0 auto 24px;
    justify-content: center;
  }
  .hero-title, .hero-sub {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-stats {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 32px;
    padding: 0;
  }
  .stat-item {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-item strong {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
  }
  .stat-item span {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
    width: 100%;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card { padding: 28px 24px; }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .package-card { padding: 36px 28px; }
  .package-full { margin-top: 20px; }

  .target-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .target-card { padding: 28px 20px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 420px;
    margin: 0 auto;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }
  .step-content { text-align: left; }
  .step-connector { display: none; }

  .hero-content { 
    padding: 80px 16px 60px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-badge {
    margin: 0 auto 24px;
  }
  .hero-stats {
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 32px;
  }
  .stat-item {
    width: 100%;
    text-align: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
    position: static;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-item strong {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    margin-bottom: 8px;
    display: block;
    min-width: unset;
  }
  .stat-item > span {
    font-size: 1rem;
    opacity: 0.85;
    color: var(--white);
  }
  .stat-divider { 
    display: none;
  }
  .hero-btns { flex-direction: column; align-items: center; }

  .tabs-nav { gap: 8px; }
  .tab-btn { font-size: 0.78rem; padding: 8px 14px; }
  .tabs-content { padding: 28px 20px; }
  .award-list { grid-template-columns: 1fr; }

  .floating-cta { bottom: 16px; right: 16px; }
  .floating-btn { font-size: 0.82rem; padding: 12px 18px; }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-trust { gap: 16px; }

  .pkg-notice { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 24px !important;
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-content { 
    padding: 80px 24px 40px !important; 
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
  
  .hero-badge {
    display: inline-flex !important;
    margin: 0 auto 24px !important;
    justify-content: center !important;
  }

  .hero-title, .hero-sub {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .hero-stats {
    width: 100% !important;
    max-width: 320px !important;
    margin: 24px auto 32px !important;
    padding: 0 !important;
    display: block !important;
  }
  .stat-item {
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0 !important;
    display: block !important;
    text-align: center !important;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stat-item strong {
    font-size: 1.8rem;
    display: block !important;
    margin-bottom: 4px !important;
    text-align: center !important;
    width: 100% !important;
  }
  .stat-item strong span {
    display: inline-block !important;
    width: auto !important;
    margin-left: 2px;
    font-size: 1rem;
    vertical-align: baseline;
  }
  .stat-item > span {
    display: block !important;
    width: 100% !important;
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center !important;
  }
  
  .hero-scroll-hint { 
    display: none !important;
  }
}
  .target-grid { grid-template-columns: 1fr; }

  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; }
}

.floating-btn-faq {
  background: #1C3A6E !important;
  color: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  box-shadow: none !important;
}
.floating-btn-faq:hover {
  transform: translateY(-3px);
  box-shadow: none !important;
}