/* ResearchProcessSection.css - Premium Implementation */

/* Main Research Process Section */
.research-process-section {
  padding: var(--section-padding-primary);
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Research Process Section Background Pattern */
.research-process-section__background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
}

.research-process-section__background-pattern-inner {
  position: absolute;
  inset: 0;
  background-image: none;
}

/* CSS Variables System */
:root {
  /* Primary Colors */
  --color-primary: #f97316;        /* orange-500 */
  --color-primary-hover: #ea580c;  /* orange-600 */
  --color-primary-light: #fed7aa;  /* orange-200 */
  
  /* Background Colors */
  --color-background: #ffffff;     /* white */
  --color-background-alt: #f8fafc; /* slate-50 */
  --color-background-muted: #f1f5f9; /* slate-100 */
  
  /* Text Colors */
  --color-foreground: #0f172a;     /* slate-900 */
  --color-foreground-muted: #475569; /* slate-600 */
  --color-foreground-light: #64748b; /* slate-500 */
  
  /* Slate Scale */
  --color-slate-50: #f8fafc;
  --color-slate-100: #f1f5f9;
  --color-slate-200: #e2e8f0;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-500: #64748b;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  
  /* Gray Scale */
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  
  /* Spacing Scale */
  --spacing-0: 0;
  --spacing-1: 0.25rem;  /* 4px */
  --spacing-2: 0.5rem;   /* 8px */
  --spacing-3: 0.75rem;  /* 12px */
  --spacing-4: 1rem;     /* 16px */
  --spacing-5: 1.25rem;  /* 20px */
  --spacing-6: 1.5rem;   /* 24px */
  --spacing-8: 2rem;     /* 32px */
  --spacing-10: 2.5rem;  /* 40px */
  --spacing-12: 3rem;    /* 48px */
  --spacing-16: 4rem;    /* 64px */
  --spacing-20: 5rem;    /* 80px */
  --spacing-24: 6rem;    /* 96px */
  
  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Border Radius */
  --radius-sm: 0.125rem;  /* 2px */
  --radius: 0.25rem;      /* 4px */
  --radius-md: 0.375rem;  /* 6px */
  --radius-lg: 0.5rem;    /* 8px */
  --radius-xl: 0.75rem;   /* 12px */
  --radius-2xl: 1rem;     /* 16px */
  --radius-3xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-colors: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  --transition-all: all 0.2s ease-in-out;
  --transition-transform: transform 0.2s ease-in-out;
}

/* Research Process Section (과목탐구보고서) */
.research-process-section {
  padding: var(--spacing-24) 0 calc(var(--spacing-24) + var(--spacing-8));
  position: relative;
  overflow-x: hidden;
}

.research-process-section__background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(107, 114, 128, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.research-process-section__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-6);
  position: relative;
  z-index: 10;
}

.research-process-section__header {
  text-align: center;
  margin-bottom: var(--spacing-20);
  padding-top: 1.25rem;
  transition: all 1s ease;
}

.research-process-section__header--visible {
  opacity: 1;
  transform: translateY(0);
}

.research-process-section__header--hidden {
  opacity: 0;
  transform: translateY(var(--spacing-2));
}

.research-process-section__badge {
  background-color: var(--color-gray-100);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-full);
  padding: var(--spacing-2) var(--spacing-8);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  margin-bottom: var(--spacing-6);
}

.research-process-section__badge-text {
  color: var(--color-primary-hover);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.research-process-section__title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-8);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
}

.research-process-section__title-gradient {
  background: linear-gradient(90deg, #fb923c, #f97316, #ea580c, #f97316, #ea580c, #f97316, #fb923c);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* animation: gradientShift 4s ease-in-out infinite; - 자동 애니메이션 제거 */
}

/* @keyframes gradientShift - 제거됨
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
*/

.research-process-section__description {
  font-size: var(--text-lg);
  color: var(--color-foreground-muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
  font-weight: 300;
}

.research-process-section__description-highlight {
  color: var(--color-primary-hover);
  font-weight: var(--font-semibold);
}

/* Process Steps */
.research-process-section__steps {
  position: relative;
  margin-bottom: var(--spacing-20);
}

.research-process-section__flow-arrow {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  height: 0.75rem;
  z-index: 0;
  transform: translateY(-50%);
  right: 2rem;
}

.research-process-section__flow-arrow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.research-process-section__flow-arrow-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fb923c, #ea580c);
  border-radius: var(--radius-full);
  transform-origin: left;
  /* animation: flowArrowGlow 3s ease-in-out infinite; - 자동 애니메이션 제거 */
}

/* @keyframes flowArrowGlow - 제거됨
@keyframes flowArrowGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.3); }
  50% { box-shadow: 0 0 15px rgba(249, 115, 22, 0.6); }
}
*/

/* .research-process-section__flow-arrow-shimmer 및 @keyframes shimmer 완전 제거됨 - 성능 최적화 */

.research-process-section__flow-arrow-head {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid #ea580c;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.research-process-section__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-8);
  position: relative;
  z-index: 10;
}

.research-process-section__step-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-gray-100);
  border-radius: 2.5rem;
  padding: var(--spacing-8);
  transition: all 0.7s ease;
  position: relative;
  z-index: 10;
  overflow: hidden;
  min-height: 20rem;
}

.research-process-section__step-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.research-process-section__step-card--hidden {
  opacity: 0;
  transform: translateY(var(--spacing-12));
}

.research-process-section__step-card:hover {
  border-color: #fed7aa;
  box-shadow: 0 25px 70px rgba(0,0,0,0.1);
  transform: translateY(-0.5rem);
}

.research-process-section__step-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.research-process-section__step-card:hover .research-process-section__step-card-gradient {
  opacity: 1;
}

.research-process-section__step-decorations {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #fed7aa, #fbbf24);
  border-radius: var(--radius-full);
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

.research-process-section__step-card:hover .research-process-section__step-decorations {
  opacity: 0.4;
}

.research-process-section__step-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.research-process-section__step-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-8);
}

.research-process-section__step-icon-wrapper {
  position: relative;
}

.research-process-section__step-icon-hexagon {
  width: 7rem;
  height: 7rem;
  position: relative;
}

.research-process-section__step-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fb923c, var(--color-primary), #ea580c);
  transform: rotate(45deg);
  border-radius: 1.2rem;
  box-shadow: 0 15px 35px rgba(249,115,22,0.3);
  transition: all 0.7s ease;
}

.research-process-section__step-card:hover .research-process-section__step-icon-bg {
  box-shadow: 0 20px 45px rgba(249,115,22,0.4);
  transform: rotate(50deg) scale(1.1);
}

.research-process-section__step-icon-inner {
  position: absolute;
  inset: 0.75rem;
  background-color: white;
  transform: rotate(45deg);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-process-section__step-icon {
  transform: rotate(-45deg);
  color: var(--color-primary-hover);
  transform: scale(1.5) rotate(-45deg);
}

.research-process-section__step-icon-ring {
  position: absolute;
  inset: -0.75rem;
  border: 2px solid #fed7aa;
  transform: rotate(45deg);
  border-radius: 1.5rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.research-process-section__step-card:hover .research-process-section__step-icon-ring {
  opacity: 1;
  transform: rotate(45deg) scale(1.1);
}

.research-process-section__step-text {
  text-align: center;
  flex-grow: 1;
}

.research-process-section__step-title {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-6);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}

.research-process-section__step-card:hover .research-process-section__step-title {
  color: var(--color-primary-hover);
}

.research-process-section__step-description {
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-medium);
  margin-bottom: var(--spacing-6);
  font-size: var(--text-lg);
}

.research-process-section__step-detail {
  color: var(--color-foreground-muted);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--spacing-8);
  font-weight: 300;
  min-height: 75px; /* 3줄 텍스트 기준으로 충분한 공간 확보 */
}

.research-process-section__step-time-container {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.research-process-section__step-time-badge {
  background: linear-gradient(90deg, var(--color-primary-light), #fed7aa);
  border: 2px solid #fed7aa;
  border-radius: 1.5rem;
  padding: var(--spacing-4) var(--spacing-8);
  box-shadow: 0 4px 15px rgba(249,115,22,0.1);
  transition: all 0.3s ease;
}

.research-process-section__step-card:hover .research-process-section__step-time-badge {
  background: linear-gradient(90deg, #fed7aa, #fbbf24);
  border-color: #fb923c;
  box-shadow: 0 6px 20px rgba(249,115,22,0.15);
}

.research-process-section__step-time-text {
  color: #c2410c;
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  letter-spacing: -0.025em;
}

/* Carousel Navigation - 중앙 인디케이터 */
.research-process-section__carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-6);
}

/* Slide Container - 네비게이션 버튼 절대 위치 */
.research-process-section__slide-container {
  position: relative;
}

/* 절대 위치 네비게이션 버튼 - 참고 이미지와 동일한 스타일 */
.research-process-section__nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(107, 114, 128, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.research-process-section__nav-button:hover {
  background: rgba(107, 114, 128, 1);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.research-process-section__nav-button--prev {
  left: 1rem;
}

.research-process-section__nav-button--next {
  right: 1rem;
}

.research-process-section__nav-icon {
  color: #374151;
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.3s ease;
}



.research-process-section__carousel-indicators {
  display: flex;
  gap: var(--spacing-2);
}

.research-process-section__carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(156, 163, 175, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.research-process-section__carousel-indicator:hover {
  background: rgba(156, 163, 175, 0.8);
  transform: scale(1.1);
}

.research-process-section__carousel-indicator--active {
  background: #f97316;
  transform: scale(1.2);
}


/* Career Section Navigation Styles - Same as Research Section */
.career-process-section__carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-6);
}

.career-process-section__slide-container {
  position: relative;
}

.career-process-section__nav-button {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.career-process-section__nav-button:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-45%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.career-process-section__nav-button--prev {
  left: 1rem;
}

.career-process-section__nav-button--next {
  right: 1rem;
}

.career-process-section__nav-icon {
  color: #374151;
  width: 1.25rem;
  height: 1.25rem;
  transition: all 0.3s ease;
}

.career-process-section__nav-button:hover .career-process-section__nav-icon {
  color: #3b82f6;
  transform: scale(1.1);
}

.career-process-section__carousel-indicators {
  display: flex;
  gap: var(--spacing-2);
}

.career-process-section__carousel-indicator {
  width: 1rem;
  height: 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
}

.career-process-section__carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.career-process-section__carousel-indicator--active {
  background: #3b82f6;
  transform: scale(1.2);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Demo Section */
.research-process-section__demo {
  background: linear-gradient(135deg, var(--color-background), rgba(255, 237, 213, 0.3), var(--color-background));
  border: 1px solid var(--color-gray-200);
  border-radius: 3rem;
  padding: var(--spacing-16) var(--spacing-20);
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.research-process-section__demo--visible {
  opacity: 1;
  transform: translateY(0);
}

.research-process-section__demo--hidden {
  opacity: 0;
  transform: translateY(var(--spacing-2));
}

.research-process-section__demo:hover {
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

.research-process-section__demo-decoration {
  position: absolute;
  inset: 0;
  opacity: 0.02;
}

.research-process-section__demo-decoration-circle-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  background: linear-gradient(225deg, #fb923c, var(--color-gray-600));
  border-radius: var(--radius-full);
  transform: translate(6rem, -6rem);
}

.research-process-section__demo-decoration-circle-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: linear-gradient(45deg, var(--color-gray-400), #ea580c);
  border-radius: var(--radius-full);
  transform: translate(-5rem, 5rem);
}

.research-process-section__demo-content {
  position: relative;
  z-index: 10;
}

.research-process-section__demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-16);
  align-items: center;
}

.research-process-section__demo-text {
  text-align: center;
}

.research-process-section__demo-title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-8);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
}

.research-process-section__demo-title-highlight {
  /* 크로스 브라우저 색상 호환성 강화 */
  color: #ea580c !important;
  color: var(--color-primary-hover);
  -webkit-text-fill-color: #ea580c;
  -moz-text-fill-color: #ea580c;
  
  /* 폰트 렌더링 일관성 확보 */
  font-weight: 700 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* 기존 효과 유지 */
  filter: drop-shadow(0 4px 12px rgba(249,115,22,0.3));
}

.research-process-section__demo-description {
  font-size: var(--text-xl);
  color: var(--color-foreground-muted);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-medium);
  margin-bottom: var(--spacing-12);
  max-width: 32rem;
}

.research-process-section__demo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-12);
}

.research-process-section__demo-stat {
  background-color: white;
  border: 2px solid #fed7aa;
  border-radius: 2rem;
  padding: var(--spacing-8);
  text-align: center;
  box-shadow: 0 15px 40px rgba(249,115,22,0.1);
  transition: all 0.3s ease;
}


.research-process-section__demo-stat-number {
  font-size: var(--text-3xl);
  font-weight: 900;
  margin-bottom: var(--spacing-3);
  transition: transform 0.3s ease;
}


.research-process-section__demo-stat-number--primary {
  color: var(--color-primary-hover);
}

.research-process-section__demo-stat-number--muted {
  color: var(--color-gray-700);
}

.research-process-section__demo-stat-label {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-gray-700);
}

.research-process-section__demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--spacing-6) var(--spacing-12);
  font-size: var(--text-xl);
  border-radius: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-hover));
  color: white;
  box-shadow: 0 15px 40px rgba(249,115,22,0.3);
  transition: all 0.3s ease;
  transform: translateY(0);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-decoration: none;
}

.research-process-section__demo-button-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.research-process-section__demo-button:hover {
  box-shadow: 0 20px 50px rgba(249,115,22,0.4);
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--color-primary-hover), #ea580c);
  border-color: #fb923c;
}

.research-process-section__demo-button:hover .research-process-section__demo-button-icon {
  transform: translateX(4px);
}

/* Career Process Section (진로적성탐구) */
.career-process-section {
  padding: var(--spacing-24) 0 calc(var(--spacing-24) + var(--spacing-8));
  background: linear-gradient(135deg, #dbeafe 0%, var(--color-background) 50%, #e0e7ff 100%);
  position: relative;
  overflow-x: hidden;
}

.career-process-section__background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.career-process-section__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-6);
  position: relative;
  z-index: 10;
}

.career-process-section__header {
  text-align: center;
  margin-bottom: var(--spacing-20);
  padding-top: 1.25rem;
  transition: all 1s ease;
}

.career-process-section__header--visible {
  opacity: 1;
  transform: translateY(0);
}

.career-process-section__header--hidden {
  opacity: 0;
  transform: translateY(var(--spacing-2));
}

.career-process-section__badge {
  background-color: #dbeafe;
  border: 2px solid #3b82f6;
  border-radius: var(--radius-full);
  padding: var(--spacing-2) var(--spacing-8);
  box-shadow: var(--shadow-sm);
  display: inline-block;
  margin-bottom: var(--spacing-6);
}

.career-process-section__badge-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.career-process-section__badge-text {
  color: #1d4ed8;
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.career-process-section__title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-8);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.career-process-section__title-gradient {
  background: linear-gradient(90deg, #60a5fa, #2563eb, #4f46e5, #2563eb, #4f46e5, #2563eb, #60a5fa);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* animation: careerGradientShift 4s ease-in-out infinite; - 자동 애니메이션 제거 */
}

/* @keyframes careerGradientShift - 제거됨
@keyframes careerGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
*/

/* @keyframes hexagonFloat - 제거됨
@keyframes hexagonFloat {
  0%, 100% { 
    transform: rotate(45deg) translateY(0px);
    box-shadow: 0 15px 35px rgba(249,115,22,0.3);
  }
  50% { 
    transform: rotate(45deg) translateY(-5px);
    box-shadow: 0 20px 45px rgba(249,115,22,0.4);
  }
}
*/

/* hexagonRingPulse 애니메이션 제거됨 - 더 이상 사용되지 않음 */

.career-process-section__description {
  font-size: var(--text-xl);
  color: var(--color-foreground-muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
  font-weight: 300;
}

.career-process-section__description-highlight {
  color: #2563eb;
  font-weight: var(--font-semibold);
}

.career-process-section__steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-10);
  position: relative;
  z-index: 10;
  margin-bottom: var(--spacing-20);
}

.career-process-section__step-card {
  background-color: var(--color-background);
  border: 2px solid #dbeafe;
  border-radius: 2rem;
  padding: var(--spacing-6) var(--spacing-8);
  transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.career-process-section__step-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.career-process-section__step-card--hidden {
  opacity: 0;
  transform: translateY(var(--spacing-12));
}

.career-process-section__step-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 20px 60px rgba(59,130,246,0.15);
}

.career-process-section__step-image {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.5s ease;
  margin-bottom: var(--spacing-6);
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.career-process-section__step-card:hover .career-process-section__step-image {
  box-shadow: var(--shadow-xl);
}

.career-process-section__step-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.career-process-section__step-text {
  flex-grow: 1;
  text-align: center;
}

.career-process-section__step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-4);
}

.career-process-section__step-icon-bg {
  flex-shrink: 0;
  margin-right: var(--spacing-3);
  padding: var(--spacing-3);
  background-color: #dbeafe;
  border-radius: var(--radius-full);
  transition: background-color 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-process-section__step-card:hover .career-process-section__step-icon-bg {
  background-color: #93c5fd;
}

.career-process-section__step-icon {
  color: #2563eb;
  transition: color 0.3s ease;
}

.career-process-section__step-card:hover .career-process-section__step-icon {
  color: #1d4ed8;
}

.career-process-section__step-title {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-gray-800);
  transition: color 0.3s ease;
}

.career-process-section__step-card:hover .career-process-section__step-title {
  color: #2563eb;
}

.career-process-section__step-description {
  font-size: var(--text-base);
  color: var(--color-foreground-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--spacing-3);
  font-weight: var(--font-medium);
}

/* Career Process Section - Completion (진로 로드맵 완성) */
.career-process-section__completion-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-6);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
}

.career-process-section__completion-title-highlight {
  background: linear-gradient(90deg, #60a5fa, #2563eb, #4f46e5, #2563eb, #4f46e5, #2563eb, #60a5fa);
  background-size: 400% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* animation: careerGradientShift 4s ease-in-out infinite; - 자동 애니메이션 제거 */
}

.career-process-section__completion-description {
  font-size: var(--text-xl);
  color: var(--color-foreground-muted);
  max-width: 56.25rem;
  margin: 0 auto var(--spacing-12) auto;
  line-height: var(--leading-relaxed);
  font-weight: 300;
  text-align: center;
}

/* Career Process Section - CTA (Call to Action) */
.career-process-section__cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.3), transparent);
  border-radius: 2rem;
  padding: var(--spacing-12);
  margin-top: var(--spacing-16);
}

.career-process-section__cta-title {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--color-foreground);
  margin-bottom: var(--spacing-4);
  line-height: var(--leading-tight);
  letter-spacing: -0.025em;
}

.career-process-section__cta-description {
  font-size: var(--text-base);
  color: var(--color-foreground-muted);
  margin-bottom: var(--spacing-6);
  line-height: var(--leading-relaxed);
}

.career-process-section__cta-description-highlight {
  color: #2563eb;
  font-weight: var(--font-semibold);
}

.career-process-section__cta-button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  padding: var(--spacing-4) var(--spacing-8);
  border-radius: var(--radius-2xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.career-process-section__cta-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.career-process-section__cta-button:active {
  transform: translateY(0);
}

/* Mobile First Responsive Design */

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  .research-process-section__container,
  .career-process-section__container {
    padding: 0 var(--spacing-4);
  }
  
  .research-process-section__title,
  .career-process-section__title {
    font-size: var(--text-2xl);
  }
  
  .research-process-section__description,
  .career-process-section__description {
    font-size: var(--text-base);
  }
  
  .research-process-section__step-card {
    padding: var(--spacing-8);
    min-height: 20rem;
  }
  
  .research-process-section__step-icon-hexagon {
    width: 5rem;
    height: 5rem;
  }
  
  .research-process-section__carousel-button,
  .career-process-section__carousel-button {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .research-process-section__carousel-navigation,
  .career-process-section__carousel-navigation {
    gap: var(--spacing-4);
  }
}

/* Large Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .research-process-section__title,
  .career-process-section__title {
    font-size: var(--text-4xl);
  }
  
  .research-process-section__step-card {
    min-height: 18rem;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
  .research-process-section__title {
    font-size: var(--text-5xl);
  }
  
  .research-process-section__description {
    font-size: var(--text-xl);
  }
  
  .research-process-section__steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-10);
  }
  
  .research-process-section__demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .research-process-section__demo-text {
    text-align: left;
  }
  
  .research-process-section__demo-title {
    font-size: var(--text-5xl);
  }
  
  .career-process-section__title {
    font-size: var(--text-5xl);
  }
  
  .career-process-section__steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-12);
  }
  
  .career-process-section__step-text {
    text-align: left;
  }
  
  .career-process-section__step-header {
    justify-content: flex-start;
  }
  
  .career-process-section__step-title {
    font-size: var(--text-2xl);
  }
  
  .career-process-section__step-description {
    font-size: var(--text-lg);
  }

  .career-process-section__completion-title {
    font-size: var(--text-5xl);
  }

  .career-process-section__completion-description {
    font-size: var(--text-xl);
  }

  .career-process-section__cta-title {
    font-size: var(--text-3xl);
  }

  .career-process-section__cta-description {
    font-size: var(--text-lg);
  }
}

/* ==== Career Process Section Styles ==== */
/* Blue-themed version matching research process layout */

/* 1. Section Container */
.career-process-section {
  padding: var(--spacing-20) 0;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}

/* 2. Background Pattern */
.career-process-section__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.career-process-section__background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), 
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

/* 3. Completion Title Section */
.career-process-section__completion-title-section {
  text-align: center;
  margin-top: var(--spacing-20);
  margin-bottom: var(--spacing-16);
}

.career-process-section__completion-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--color-foreground);
  line-height: 1.1;
  margin-bottom: var(--spacing-6);
}

.career-process-section__completion-title-highlight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.career-process-section__completion-description {
  font-size: var(--text-xl);
  color: var(--color-foreground-muted);
  line-height: var(--leading-relaxed);
  max-width: 900px;
  margin: 0 auto;
}

/* 4. Demo Section */
.career-process-section__demo {
  background: linear-gradient(135deg, var(--color-background), rgba(255, 237, 213, 0.3), var(--color-background));
  border: 1px solid var(--color-gray-200);
  border-radius: 3rem;
  padding: var(--spacing-16) var(--spacing-20);
  margin-top: var(--spacing-12);
  position: relative;
  overflow: hidden;
  transition: all 0.8s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.career-process-section__demo--hidden {
  opacity: 0;
  transform: translateY(2rem);
}

.career-process-section__demo--visible {
  opacity: 1;
  transform: translateY(0);
}

.career-process-section__demo:hover {
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* 5. Demo Decoration */
.career-process-section__demo-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.career-process-section__demo-decoration-circle-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #2563eb20, #1d4ed820);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.career-process-section__demo-decoration-circle-2 {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f620, #6366f120);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

/* 6. Demo Content */
.career-process-section__demo-content {
  position: relative;
  z-index: 2;
}

.career-process-section__demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-12);
  align-items: center;
}

/* 7. Demo Text */
.career-process-section__demo-text {
  text-align: center;
}

.career-process-section__demo-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-foreground);
  line-height: var(--leading-tight);
  margin-bottom: var(--spacing-6);
}

.career-process-section__demo-title-highlight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.career-process-section__demo-description {
  font-size: 20px;
  color: var(--color-foreground-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--spacing-8);
}

.career-process-section__demo-description-highlight {
  color: #2563EB;
  font-weight: var(--font-semibold);
}

/* 8. Demo Stats */
.career-process-section__demo-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-8);
}

.career-process-section__demo-stat {
  text-align: center;
}

.career-process-section__demo-stat-number {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--spacing-1);
  display: block;
}

.career-process-section__demo-stat-number--primary {
  color: #2563eb;
}

.career-process-section__demo-stat-number--muted {
  color: var(--color-foreground-muted);
}

.career-process-section__demo-stat-label {
  font-size: var(--text-sm);
  color: var(--color-foreground-muted);
  font-weight: var(--font-medium);
}

/* 9. Demo Button */
.career-process-section__demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: var(--spacing-6) var(--spacing-12);
  font-size: var(--text-xl);
  border-radius: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  transform: translateY(0);
  border: 2px solid #2563eb;
  cursor: pointer;
  text-decoration: none;
}

.career-process-section__demo-button:hover {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
  background: linear-gradient(90deg, #1d4ed8, #1e40af);
  border-color: #3b82f6;
}

.career-process-section__demo-button-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.career-process-section__demo-button:hover .career-process-section__demo-button-icon {
  transform: translateX(4px);
}

/* 10. Slide Container */
.career-process-section__slide-container {
  position: relative;
  height: 350px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
  background: white;
}

/* 11. Navigation Buttons */
.career-process-section__nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career-process-section__nav-button--prev {
  left: var(--spacing-4);
}

.career-process-section__nav-button--next {
  right: var(--spacing-4);
}

.career-process-section__nav-button:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.career-process-section__nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-gray-700);
  stroke-width: 2;
}

/* 12. Carousel Navigation */
.career-process-section__carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacing-6);
}

.career-process-section__carousel-indicators {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.career-process-section__carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-slate-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-process-section__carousel-indicator--active {
  background: #2563eb;
  width: 2rem;
  border-radius: var(--radius-full);
}

/* 13. Responsive Design */
@media (min-width: 768px) {
  .career-process-section__completion-title {
    font-size: var(--text-6xl);
  }
  
  .career-process-section__completion-description {
    font-size: var(--text-xl);
  }
  
}

/* 14. Desktop Responsive */
@media (min-width: 768px) {
  .career-process-section__demo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-16);
  }
  
  .career-process-section__demo-text {
    text-align: left;
  }
  
  .career-process-section__demo-stats {
    justify-content: flex-start;
  }
}

/* Desktop (1024px - 1279px) */
@media (min-width: 1024px) {
  .research-process-section__title {
    font-size: var(--text-6xl);
  }
  
  .research-process-section__steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-8);
  }
  
  .research-process-section__flow-arrow {
    display: block;
  }
  
  .research-process-section__demo-title {
    font-size: var(--text-6xl);
  }

  .career-process-section__title {
    font-size: var(--text-6xl);
  }

  .career-process-section__completion-title {
    font-size: var(--text-5xl);
  }

  .career-process-section__cta-title {
    font-size: var(--text-4xl);
  }
  
  .career-process-section__step-title {
    font-size: var(--text-3xl);
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .research-process-section__container,
  .career-process-section__container {
    max-width: var(--container-max-width);
  }
  
  .research-process-section__step-card {
    min-height: 20rem;
  }
  
  .career-process-section__completion-title {
    font-size: var(--text-6xl);
  }

  .career-process-section__cta-title {
    font-size: var(--text-5xl);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .research-process-section__step-card:hover,
  .career-process-section__step-card:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
  }
  
  .research-process-section__carousel-button,
  .career-process-section__carousel-button {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .research-process-section__carousel-button:hover,
  .career-process-section__carousel-button:hover {
    transform: none;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .research-process-section__step-icon-bg,
  .research-process-section__step-icon-inner {
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .research-process-section__step-card,
  .career-process-section__step-card,
  .research-process-section__carousel-button,
  .career-process-section__carousel-button {
    transition: none;
  }
  
  .research-process-section__title-gradient,
  .career-process-section__title-gradient {
    animation: none;
  }
  /* .research-process-section__flow-arrow-shimmer 제거됨 - 성능 최적화 */
  
  .research-process-section__step-icon-bg {
    animation: none;
  }
}

/* Print Styles */
@media print {
  .research-process-section,
  .career-process-section {
    background: white !important;
    box-shadow: none !important;
  }
  
  .research-process-section__carousel-navigation,
  .career-process-section__carousel-navigation {
    display: none !important;
  }
  
  .research-process-section__step-card,
  .career-process-section__step-card {
    page-break-inside: avoid;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
  }
}

/* Animation utilities for visibility */
.research-step {
  transition: all 0.8s ease;
}

.research-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.research-step:not(.visible) {
  opacity: 0;
  transform: translateY(2rem);
}

.career-step {
  transition: all 0.8s ease;
}

.career-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.career-step:not(.visible) {
  opacity: 0;
  transform: translateY(2rem);
}

/* 텍스트 영역 - 참고 이미지와 동일한 스타일 */
.demo-slide-text-section {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 0 0.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.demo-slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.demo-slide-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  min-height: 2.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Demo Slide Styles - 참고 이미지와 동일한 레이아웃 */
.research-process-section__demo-slide {
  width: 100%;
  height: 100%;
}

/* 이미지 영역 - 참고 이미지와 동일한 스타일 */
.demo-slide-image-only {
  width: 418px;
  height: 352px;
  overflow: hidden;
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.demo-slide-image-only img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 화질 최적화 - 선명도 우선 */
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  /* 부드러운 전환 효과 */
  transition: transform 0.3s ease;
}

/* 이미지별 개별 설정 - transform 제거하여 화질 개선 */
.demo-slide-image-only img[src*="resized_"] {
  /* 리사이징된 이미지는 이미 418x352이므로 추가 조정 불필요 */
  object-position: center center;
}

/* 캐러셀 인디케이터 */
.research-process-section__carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.research-process-section__carousel-indicator--active {
  background: #ea580c;
  transform: scale(1.2);
}

.career-process-section__demo-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.career-process-section__demo-slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.career-process-section__demo-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  border-radius: 0 0 1.5rem 1.5rem;
}

.career-process-section__demo-slide-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: white;
}

.career-process-section__demo-slide-description {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
  color: white;
}

/* Carousel Navigation Styling */
.research-process-section__carousel-navigation,
.career-process-section__carousel-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-6);
  margin-top: var(--spacing-6);
}

.career-process-section__carousel-button {
  background-color: var(--color-background);
  border: 2px solid #93c5fd;
  border-radius: var(--radius-full);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.career-process-section__carousel-button:hover {
  background-color: #2563eb;
  border-color: #1d4ed8;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}

.career-process-section__carousel-button:hover .career-process-section__carousel-icon {
  color: white;
}

.career-process-section__carousel-icon {
  color: #2563eb;
  transition: color 0.3s ease;
}

.career-process-section__carousel-indicators {
  display: flex;
  gap: var(--spacing-2);
}

.career-process-section__carousel-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-process-section__carousel-indicator--active {
  background-color: #2563eb;
  transform: scale(1.2);
}

/* ===== Tailwind 클래스 대체 CSS - Demo Visual Section ===== */

/* 데모 비주얼 컨테이너 - Tailwind 'text-center' 대체 */
.demo-visual-container {
  text-align: center;
}

/* 데모 비주얼 래퍼 - 복잡한 Tailwind 클래스들 대체 */
.demo-visual-wrapper {
  background: linear-gradient(135deg, #fef7f0, #fed7aa);
  border: 2px solid #fed7aa;
  border-radius: 3rem;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.1);
  position: relative;
  overflow: hidden;
}

/* 진로 영역용 파란색 테마 래퍼 */
.career-process-section__demo .demo-visual-wrapper {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #dbeafe;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

/* 장식 원형 요소들 - Tailwind absolute 포지셔닝 대체 */
.demo-decoration-circle-1 {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #fed7aa, #fbbf24);
  border-radius: 50%;
  opacity: 0.3;
}

.demo-decoration-circle-2 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: 50%;
  opacity: 0.4;
}

/* 진로 영역용 파란색 테마 장식 요소 */
.career-process-section__demo .demo-decoration-circle-1 {
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
}

.career-process-section__demo .demo-decoration-circle-2 {
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
}

/* 컨텐츠 래퍼 - Tailwind 'relative z-10' 대체 */
.demo-content-wrapper {
  position: relative;
  z-index: 10;
}

/* 슬라이드 컨텐츠 - wrapper 내 직접 배치 */
.demo-slide-content-direct {
  position: relative;
  width: 100%;
  max-width: 418px;
  margin: 0 auto;
  height: 352px;
  margin-bottom: 1.5rem;
}

/* 모바일에서 텍스트 한 줄 표시 최적화 */
@media (max-width: 767px) {
  .demo-slide-text-section {
    padding: 0 0.25rem;
  }
}

/* 반응형 - 태블릿 크기 */
@media (min-width: 768px) {
  .demo-slide-content-direct {
    height: 352px;
  }
}

/* 반응형 - 데스크톱 크기 (화질 최적화) */
@media (min-width: 1024px) {
  .demo-slide-content-direct {
    max-width: 418px;
    height: 352px;
  }
}

/* ===== 크로스 브라우저 호환성 강화 ===== */

/* 백드롭 필터 안전장치 */
.research-process-section__nav-button {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* fallback for unsupported browsers */
  background: rgba(255, 255, 255, 0.98) !important;
}

/* 흰색 배경에서 아이콘 가시성 보장 */
.research-process-section__nav-button .research-process-section__nav-icon {
  color: #374151 !important;
}


/* 데모 래퍼 그라디언트 호환성 강화 */
.demo-visual-wrapper {
  /* 다중 그라디언트 fallback */
  background: #fef7f0;
  background: linear-gradient(135deg, #fef7f0, #fed7aa);
  background: -webkit-linear-gradient(135deg, #fef7f0, #fed7aa);
  background: -moz-linear-gradient(135deg, #fef7f0, #fed7aa);
}

/* 진로 영역용 파란색 테마 그라디언트 호환성 */
.career-process-section__demo .demo-visual-wrapper {
  background: #eff6ff;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  background: -webkit-linear-gradient(135deg, #eff6ff, #dbeafe);
  background: -moz-linear-gradient(135deg, #eff6ff, #dbeafe);
}

/* 장식 원형 요소 그라디언트 호환성 */
.demo-decoration-circle-1 {
  background: #fed7aa;
  background: linear-gradient(135deg, #fed7aa, #fbbf24);
  background: -webkit-linear-gradient(135deg, #fed7aa, #fbbf24);
}

/* 진로 영역용 파란색 테마 장식 요소 호환성 */
.career-process-section__demo .demo-decoration-circle-1 {
  background: #dbeafe;
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
  background: -webkit-linear-gradient(135deg, #dbeafe, #3b82f6);
  background: -moz-linear-gradient(135deg, #dbeafe, #3b82f6);
}

.career-process-section__demo .demo-decoration-circle-2 {
  background: #bfdbfe;
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
  background: -webkit-linear-gradient(135deg, #bfdbfe, #dbeafe);
  background: -moz-linear-gradient(135deg, #bfdbfe, #dbeafe);
  background: -moz-linear-gradient(135deg, #fed7aa, #fbbf24);
}

.demo-decoration-circle-2 {
  background: #fef3c7;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  background: -webkit-linear-gradient(135deg, #fef3c7, #fed7aa);
  background: -moz-linear-gradient(135deg, #fef3c7, #fed7aa);
}

/* 폰트 렌더링 전역 일관성 */
.research-process-section__demo-title,
.research-process-section__demo-description {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 박스 섀도우 일관성 강화 */
.demo-visual-wrapper {
  box-shadow: 
    0 20px 60px rgba(249, 115, 22, 0.1),
    0 10px 25px rgba(0, 0, 0, 0.05);
}