@charset "UTF-8";

/* ============================================
   SECTION 1: Global Stats (연한 회색 배경 - rgb(239, 239, 239))
   ============================================ */

.global-stats-section {
  padding: 100px 40px;
  background: #F1F2F3;
  position: relative;
}

.global-stats-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgb(13, 35, 59), rgb(20, 50, 80));
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.stats-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #495057;
  max-width: 900px;
  margin: 0 auto;
}

.stats-description .highlight {
  font-weight: 700;
  color: rgb(13, 35, 59);
  position: relative;
  display: inline-block;
}

.stats-description .highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(13, 35, 59), rgb(20, 50, 80));
  border-radius: 2px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  border: 2px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(13, 35, 59), rgb(20, 50, 80));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 35, 59, 0.2);
  border-color: rgb(13, 35, 59);
}

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

/* Number */
.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgb(13, 35, 59);
  margin-bottom: 10px;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-number.counting {
  background: linear-gradient(135deg, rgb(13, 35, 59) 0%, rgb(20, 50, 80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label */
.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Icon */
.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(13, 35, 59) 0%, rgb(20, 50, 80) 100%);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(13, 35, 59, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: rotateY(360deg);
  box-shadow: 0 12px 30px rgba(13, 35, 59, 0.4);
}

.stat-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
}

/* Animation delays */
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   SECTION 2: AI Platform (진한 네이비 배경 - rgb(13, 35, 59))
   ============================================ */

.ai-assessment-platform {
  padding: 100px 40px;
  background: linear-gradient(135deg, rgb(13, 35, 59) 0%, rgb(10, 25, 45) 100%);
  color: white;
  position: relative;
}

.ai-assessment-platform::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgb(239, 239, 239), rgb(220, 220, 220));
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Platform Header Styles */
.platform-header {
  text-align: center;
  margin-bottom: 60px;
}

.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.platform-title .subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.platform-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-top: 20px;
}

/* Benchmark Section */
.benchmark-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.benchmark-header {
  flex: 1;
}

.benchmark-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.benchmark-badge {
  display: flex;
  gap: 12px;
}

.badge-text {
  padding: 12px 28px;
  background: linear-gradient(135deg, rgb(20, 50, 80) 0%, rgb(13, 35, 59) 100%);
  color: white;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.3);
}

.badge-text:hover {
  background: linear-gradient(135deg, rgb(30, 70, 110) 0%, rgb(20, 50, 80) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Pillar Card */
.pillar-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #333;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(20, 50, 80), rgb(13, 35, 59));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

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

.pillar-card.featured {
  border: 2px solid rgb(13, 35, 59);
  background: rgba(255, 255, 255, 1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: rgb(13, 35, 59);
}

.pillar-header {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pillar-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

/* Tech Stack */
.tech-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  min-height: 180px;
}

.tech-item {
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #495057;
  text-align: center;
  transition: all 0.2s ease;
}

.tech-item:hover {
  background: #e9ecef;
  transform: translateX(4px);
}

/* Pillar Footer - 네이비 배경 적용 */
.pillar-footer {
  border-top: none;
  padding: 24px 20px;
  margin: 30px -30px -40px -30px;
  text-align: center;
  background: linear-gradient(135deg, rgb(13, 35, 59) 0%, rgb(20, 50, 80) 100%);
  border-radius: 0 0 16px 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.role-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.role-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

/* CTA Section */
.platform-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.cta-button {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

/* 벤치마크 플랫폼 바로가기 버튼 - 네이비 배경 */
.cta-button.primary {
  padding: 12px 32px;
  font-size: 1rem;
  background: linear-gradient(135deg, rgb(20, 50, 80) 0%, rgb(13, 35, 59) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-button.primary:hover {
  background: linear-gradient(135deg, rgb(30, 70, 110) 0%, rgb(20, 50, 80) 100%);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* 샘플 플랫폼 경험하기 버튼 */
.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: rgb(13, 35, 59);
}

/* Responsive Design */
@media (max-width: 768px) {
  .global-stats-section,
  .ai-assessment-platform {
    padding: 60px 20px;
  }
  
  .stats-title,
  .platform-title {
    font-size: 1.8rem;
  }
  
  .platform-title .subtitle {
    font-size: 1.5rem;
  }
  
  .stats-description,
  .platform-description {
    font-size: 1rem;
  }
  
  .benchmark-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .benchmark-badge {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stats-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-button.primary {
    padding: 12px 32px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .global-stats-section,
  .ai-assessment-platform {
    padding: 40px 15px;
  }
  
  .stats-title,
  .platform-title {
    font-size: 1.5rem;
  }
  
  .pillar-card,
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-icon,
  .pillar-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .pillar-footer {
    margin: -10px -20px -30px -20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(13, 35, 59) 0%, rgb(20, 50, 80) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.scroll-top.visible {
  display: flex;
}

/* ============================================
   SECTION: STRATEDGE AI AGENT (Dark Strategy Theme)
   ============================================ */
.stratedge-section {
  position: relative;
  padding: 120px 40px;
  background: #0b0e14;
  color: #f5f7fb;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stratedge-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(111, 157, 255, 0.12), transparent 60%),
    radial-gradient(900px 500px at 95% 100%, rgba(126, 90, 255, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stratedge-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  z-index: 0;
}

.stratedge-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 760px;
  height: 760px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(93, 130, 255, 0.18) 0%, transparent 60%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

.stratedge-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Column */
.stratedge-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.stratedge-logo-mark {
  width: 56px;
  height: 56px;
  color: #f5f7fb;
  filter: drop-shadow(0 0 12px rgba(147, 175, 255, 0.35));
}

.stratedge-logo-mark svg {
  width: 100%;
  height: 100%;
}

.stratedge-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stratedge-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.stratedge-subtitle {
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: #8a94a8;
  font-weight: 500;
}

.stratedge-headline {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}

.stratedge-headline strong {
  font-weight: 800;
  background: linear-gradient(120deg, #ffffff 0%, #b8c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stratedge-accent {
  position: relative;
  color: #ffffff;
  font-weight: 700;
}

.stratedge-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: linear-gradient(90deg, rgba(111, 157, 255, 0.4), rgba(126, 90, 255, 0.4));
  border-radius: 6px;
  z-index: -1;
}

.stratedge-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c1c8d4;
  max-width: 560px;
  margin-bottom: 40px;
}

.stratedge-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.stratedge-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffffff 0%, #e8eeff 100%);
  color: #0b0e14;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.2px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(147, 175, 255, 0.25);
}

.stratedge-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(147, 175, 255, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #d5dfff 100%);
}

.stratedge-cta-primary svg {
  transition: transform 0.3s ease;
}

.stratedge-cta-primary:hover svg {
  transform: translateX(4px);
}

.stratedge-cta-note {
  font-size: 0.85rem;
  color: #8a94a8;
  letter-spacing: -0.2px;
}

/* Right Column - Mock UI */
.stratedge-mock {
  position: relative;
  background: linear-gradient(160deg, #1a1f2b 0%, #10131b 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}

.stratedge-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stratedge-mock-header {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stratedge-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.stratedge-mock-dot:nth-child(1) { background: #ff5f57; opacity: 0.7; }
.stratedge-mock-dot:nth-child(2) { background: #febc2e; opacity: 0.7; }
.stratedge-mock-dot:nth-child(3) { background: #28c840; opacity: 0.7; }

.stratedge-mock-body {
  padding: 40px 32px 36px;
  text-align: center;
}

.stratedge-mock-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: #f5f7fb;
}

.stratedge-mock-logo svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px rgba(147, 175, 255, 0.3));
}

.stratedge-mock-brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffffff;
}

.stratedge-mock-tag {
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: #8a94a8;
}

.stratedge-mock-prompt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 24px;
  text-align: left;
}

.stratedge-mock-placeholder {
  color: #7a8393;
  font-size: 0.92rem;
  letter-spacing: -0.2px;
}

.stratedge-mock-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c1c8d4;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  margin-left: 10px;
}

.stratedge-mock-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stratedge-mock-chips .chip {
  font-size: 0.78rem;
  color: #d5dbe6;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: -0.2px;
  transition: all 0.25s ease;
  cursor: default;
}

.stratedge-mock-chips .chip:hover {
  background: rgba(147, 175, 255, 0.12);
  border-color: rgba(147, 175, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

.stratedge-mock-chips .chip em {
  font-style: normal;
  color: #8a94a8;
  margin-right: 4px;
}

.stratedge-mock-chips .chip:hover em {
  color: #b8c8ff;
}

/* Responsive */
@media (max-width: 1024px) {
  .stratedge-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .stratedge-left {
    text-align: center;
  }

  .stratedge-logo-wrap {
    justify-content: center;
  }

  .stratedge-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .stratedge-cta-wrap {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .stratedge-section {
    padding: 70px 20px;
  }

  .stratedge-headline {
    font-size: 1.9rem;
  }

  .stratedge-title {
    font-size: 1.4rem;
    letter-spacing: 6px;
  }

  .stratedge-desc {
    font-size: 0.95rem;
  }

  .stratedge-mock-body {
    padding: 28px 20px 24px;
  }

  .stratedge-mock-prompt {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .stratedge-mock-hint {
    margin-left: 0;
  }

  .stratedge-cta-primary {
    padding: 14px 26px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stratedge-headline {
    font-size: 1.5rem;
  }

  .stratedge-mock-chips .chip {
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}