/* =====================================================
   창업메이트 - Main Stylesheet
   Color Palette: Navy Blue #1B3A6B, White #FFFFFF, 
                  Accent #2A5FC1, Light Gray #F5F7FA
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2A5FC1;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0d1b2a;
  margin-bottom: 1.2rem;
}
.section-title span { color: #2A5FC1; }
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 600px;
  line-height: 1.85;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
section { padding: 100px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #1B3A6B;
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,58,107,0.3);
}
.btn-primary:hover {
  background: #2A5FC1;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,95,193,0.4);
}
.btn-outline {
  background: transparent;
  color: #1B3A6B;
  border: 2px solid #1B3A6B;
}
.btn-outline:hover {
  background: #1B3A6B;
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #1B3A6B;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}
.btn-kakao {
  background: #FEE500;
  color: #3C1E1E;
}
.btn-kakao:hover {
  background: #f5da00;
  transform: translateY(-2px);
}

/* =====================================================
   1. NAVIGATION
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo img { width: 103px !important; height: auto !important; position: relative !important; top: 5px !important; max-width: 103px !important; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
  position: relative;
}
#navbar.scrolled .nav-links a { color: #1a1a1a; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #2A5FC1;
  transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  background: #2A5FC1 !important;
  color: #fff !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: #1B3A6B !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
#navbar.scrolled .nav-hamburger span { background: #1a1a1a; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1.5rem 5%;
  gap: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
}

/* =====================================================
   2. HERO
   ===================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1B3A6B 50%, #2A5FC1 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,95,193,0.25) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(6px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero-title .highlight {
  color: #60a5fa;
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.4rem;
  line-height: 1.9;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-image img {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   3. PAIN POINTS (공감 섹션)
   ===================================================== */
#pain {
  background: #F5F7FA;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.pain-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 4px solid transparent;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,58,107,0.12);
  border-left-color: #2A5FC1;
}
.pain-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: #EEF3FF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.15rem;
}
.pain-check svg { width: 14px; height: 14px; stroke: #2A5FC1; }
.pain-card p {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

/* =====================================================
   4. PROBLEM (정보 비대칭)
   ===================================================== */
#problem {
  background: #0d1b2a;
  color: #fff;
}
#problem .section-title { color: #fff; }
#problem .section-desc { color: rgba(255,255,255,0.65); }
#problem .section-tag { color: #60a5fa; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.problem-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(96,165,250,0.4);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.problem-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}
.problem-highlight {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #1B3A6B, #2A5FC1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}
.problem-highlight p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}
.problem-highlight span { color: #93c5fd; }

/* =====================================================
   5. WHY STARTUPMATE (핵심 원칙)
   ===================================================== */
#why {
  background: #fff;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.principle-card {
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.principle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, #1B3A6B, #2A5FC1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.principle-card:hover::before { transform: scaleX(1); }
.principle-card:hover {
  box-shadow: 0 12px 40px rgba(27,58,107,0.12);
  transform: translateY(-4px);
}
.principle-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #2A5FC1;
  margin-bottom: 0.6rem;
}
.principle-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.principle-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 0.8rem;
}
.principle-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.8;
}
.principle-quote {
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  background: #F5F7FA;
  border-radius: 10px;
  font-size: 0.82rem;
  color: #1B3A6B;
  font-style: italic;
  font-weight: 600;
}

/* =====================================================
   6. SERVICES
   ===================================================== */
#services {
  background: #F5F7FA;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(27,58,107,0.15);
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #EEF3FF;
  color: #2A5FC1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.service-free { background: #e6fff0; color: #16a34a; }
.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2A5FC1;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card > p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 1.4rem;
  line-height: 1.75;
  flex: 1;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: #444;
}
.service-list li::before {
  content: '→';
  color: #2A5FC1;
  font-weight: 700;
  min-width: 1rem;
  margin-top: 0.05rem;
}
.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #f0f0f0;
}
.service-price-label {
  font-size: 0.78rem;
  color: #999;
}
.service-price-value {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1B3A6B;
}
.service-price-note {
  font-size: 0.75rem;
  color: #aaa;
}
.service-free-tag {
  font-size: 1.2rem;
  font-weight: 900;
  color: #16a34a;
}

/* PDF Download Section */
.pdf-section {
  margin-top: 4rem;
  background: linear-gradient(135deg, #1B3A6B, #2A5FC1);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pdf-section-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.pdf-section-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.pdf-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s;
  backdrop-filter: blur(6px);
}
.btn-pdf:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-pdf svg { width: 18px; height: 18px; }

/* =====================================================
   7. PRICING
   ===================================================== */
#pricing {
  background: #fff;
}
.pricing-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: #999;
}
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
  background: #F5F7FA;
  border-radius: 50px;
  padding: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-tab {
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #888;
  transition: all 0.25s;
}
.pricing-tab.active {
  background: #1B3A6B;
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,58,107,0.25);
}
.pricing-tab:hover:not(.active) { color: #1B3A6B; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.price-card {
  border: 2px solid #e8edf5;
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  border-color: #2A5FC1;
  box-shadow: 0 10px 35px rgba(27,58,107,0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: #1B3A6B;
  background: linear-gradient(160deg, #f0f5ff 0%, #fff 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1B3A6B;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-card-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2A5FC1;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.price-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.price-card-desc {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.price-card-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1B3A6B;
  margin-bottom: 0.25rem;
}
.price-card-amount.free { color: #16a34a; }
.price-card-vat {
  font-size: 0.75rem;
  color: #bbb;
  margin-bottom: 1.2rem;
}
.price-includes {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.price-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #555;
}
.price-includes li::before {
  content: '✓';
  color: #2A5FC1;
  font-weight: 800;
  min-width: 1rem;
}

/* Package */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}
.package-card {
  border: 2px solid #e8edf5;
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.package-card.best {
  border-color: #1B3A6B;
  background: linear-gradient(160deg, #eef3ff 0%, #fff 100%);
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 45px rgba(27,58,107,0.14);
}
.package-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #1B3A6B, #2A5FC1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.package-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #2A5FC1;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.package-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}
.package-card .package-services {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 1.4rem;
  line-height: 1.7;
  padding: 0.8rem;
  background: #f8faff;
  border-radius: 10px;
}
.package-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1B3A6B;
  margin-bottom: 0.2rem;
}
.package-vat {
  font-size: 0.75rem;
  color: #bbb;
}

.pricing-disclaimer {
  margin-top: 2.5rem;
  padding: 1.2rem 1.6rem;
  background: #F5F7FA;
  border-radius: 12px;
  font-size: 0.82rem;
  color: #777;
  line-height: 1.8;
  text-align: center;
}

/* =====================================================
   8. REVIEWS
   ===================================================== */
#reviews {
  background: #F5F7FA;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.review-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(27,58,107,0.12);
}
.review-quote-icon {
  font-size: 2.5rem;
  color: #e8edf5;
  line-height: 1;
  margin-bottom: 0.8rem;
  font-family: Georgia, serif;
}
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.review-tag {
  background: #EEF3FF;
  color: #2A5FC1;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.review-text {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #1B3A6B, #2A5FC1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}
.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0d1b2a;
}
.review-author-info span {
  font-size: 0.78rem;
  color: #999;
}
.review-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* =====================================================
   9. CEO (대표 소개)
   ===================================================== */
#ceo {
  background: #fff;
}
.ceo-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.ceo-image-wrap {
  position: relative;
}
.ceo-image-wrap img {
  width: 100%;
  max-width: 380px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(27,58,107,0.18);
  position: relative;
  z-index: 1;
}
.ceo-image-bg {
  position: absolute;
  top: 24px; left: 24px;
  width: 100%; height: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, #1B3A6B, #2A5FC1);
  border-radius: 24px;
  z-index: 0;
}
.ceo-name-block {
  margin-bottom: 2rem;
}
.ceo-name-block h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #0d1b2a;
  margin-bottom: 0.3rem;
}
.ceo-name-block span {
  font-size: 0.9rem;
  color: #2A5FC1;
  font-weight: 600;
}
.ceo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.ceo-stat {
  background: #F5F7FA;
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
}
.ceo-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1B3A6B;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.ceo-stat span {
  font-size: 0.75rem;
  color: #888;
}
.ceo-story {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.9;
}
.ceo-story p { margin-bottom: 1rem; }
.ceo-story strong { color: #1B3A6B; }

/* =====================================================
   10. CONTACT
   ===================================================== */
#contact {
  background: linear-gradient(135deg, #0d1b2a 0%, #1B3A6B 100%);
  color: #fff;
}
#contact .section-title { color: #fff; }
#contact .section-tag { color: #60a5fa; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.8rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #60a5fa;
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: #1B3A6B; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #2A5FC1, #1B3A6B);
  color: #fff;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(42,95,193,0.4);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,95,193,0.5);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #4ade80;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Contact Info */
.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.8rem;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: all 0.25s;
  text-decoration: none;
}
.contact-method:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
  border-color: rgba(96,165,250,0.4);
}
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-icon.phone { background: #1d4ed8; }
.contact-method-icon.email { background: #047857; }
.contact-method-icon.kakao { background: #92400e; }
.contact-method-info strong {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}
.contact-method-info span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.contact-notice {
  padding: 1.2rem 1.4rem;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.contact-notice strong { color: #93c5fd; display: block; margin-bottom: 0.3rem; }

/* =====================================================
   11. FOOTER
   ===================================================== */
footer {
  background: #060e1a;
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 36px; opacity: 0.8; }
.footer-info {
  font-size: 0.78rem;
  line-height: 1.9;
}
.footer-info strong { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: #60a5fa; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .ceo-inner { grid-template-columns: 1fr; }
  .ceo-image-wrap { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 60px 0; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-stats { gap: 1.2rem; }
  .pdf-section { flex-direction: column; text-align: center; }
  .pdf-buttons { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .ceo-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .package-grid { grid-template-columns: 1fr; }
  .ceo-stats { grid-template-columns: 1fr 1fr; }
}
