* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #0f172a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
}
.mainheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-content {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.container-wrapper {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.slide-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  z-index: 10;
  flex: 1;
  display: flex;
  width: 100%;
}
.visual-section {
  flex: 0.9;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accent-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.mockup-container {
  width: 100%;
  height: 480px;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.chart-card {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.badge-new {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}
.feature-icon {
  min-width: 56px;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
#sec1 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec1 .glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
#sec1 .accent-circle {
  filter: blur(80px);
}
#sec1 .circle-1 {
  width: 400px;
  height: 400px;
  background-color: #2563eb;
  top: -100px;
  right: -50px;
  opacity: 0.4;
}
#sec1 .circle-2 {
  width: 300px;
  height: 300px;
  background-color: #7c3aed;
  bottom: -50px;
  left: -100px;
  opacity: 0.3;
}
#sec1 .hero-content {
  padding: 0 20px;
  flex-direction: column;
  text-align: center;
}
#sec1 .text-content {
  max-width: 600px;
}
#sec1 .visual-content {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin-top: 40px;
  position: relative;
}
#sec1 .mockup-card {
  background-color: #1e293b;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid #334155;
  position: absolute;
  overflow: hidden;
}
#sec1 .btn-primary {
  background-color: #3b82f6;
  color: white;
  transition: all 0.3s ease;
}
#sec1 .btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all 0.3s ease;
}
@keyframes float1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
#sec2 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
#sec2 .accent-circle {
  filter: blur(100px);
  opacity: 0.25;
}
#sec2 .circle-1 {
  width: 500px;
  height: 500px;
  background-color: #2563eb;
  top: -200px;
  left: -100px;
}
#sec2 .circle-2 {
  width: 400px;
  height: 400px;
  background-color: #7c3aed;
  bottom: -100px;
  right: -100px;
}
#sec2 .circle-3 {
  width: 300px;
  height: 300px;
  background-color: #059669;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}
#sec2 .content-wrapper {
  flex-direction: column;
  padding: 40px 80px;
  justify-content: center;
}
#sec2 .card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  align-items: flex-start; /* 자식 요소들을 왼쪽으로 붙임 */
  text-align: left; /* 텍스트 좌측 정렬 */
}
#sec2 .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
#sec2 .card-blue::before {
  background-color: #3b82f6;
}
#sec2 .card-violet::before {
  background-color: #8b5cf6;
}
#sec2 .card-emerald::before {
  background-color: #10b981;
}
#sec2 .icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
#sec2 .icon-blue {
  background-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
#sec2 .icon-violet {
  background-color: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}
#sec2 .icon-emerald {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
#sec2 .feature-list li {
  display: flex;
  align-items: start;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}
#sec2 .feature-list li i {
  margin-top: 4px;
  margin-right: 10px;
  font-size: 0.8rem;
}
#sec3 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
}
#sec3 .accent-circle {
  filter: blur(120px);
  opacity: 0.2;
}
#sec3 .circle-1 {
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  top: -300px;
  right: -100px;
}
#sec3 .circle-2 {
  width: 500px;
  height: 500px;
  background-color: #8b5cf6;
  bottom: -200px;
  left: -100px;
}
#sec3 .content-wrapper {
  flex-direction: column;
  padding: 20px 80px 40px;
  justify-content: center;
}
#sec3 .persona-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
#sec3 .persona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}
#sec3 .card-header {
  width: 100%;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#sec3 .avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 36px;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
#sec3 .theme-blue .avatar-circle {
  background-color: #2563eb;
  color: white;
}
#sec3 .theme-blue .highlight-text {
  color: #60a5fa;
}
#sec3 .theme-blue .check-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}
#sec3 .theme-blue .card-top-accent {
  background-color: #3b82f6;
}
#sec3 .theme-violet .avatar-circle {
  background-color: #7c3aed;
  color: white;
}
#sec3 .theme-violet .highlight-text {
  color: #a78bfa;
}
#sec3 .theme-violet .check-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
}
#sec3 .theme-violet .card-top-accent {
  background-color: #8b5cf6;
}
#sec3 .theme-emerald .avatar-circle {
  background-color: #059669;
  color: white;
}
#sec3 .theme-emerald .highlight-text {
  color: #34d399;
}
#sec3 .theme-emerald .check-icon {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}
#sec3 .theme-emerald .card-top-accent {
  background-color: #10b981;
}
#sec3 .card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}
#sec3 .benefit-list {
  width: 100%;
  padding: 10px 30px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#sec3 .benefit-item {
  display: flex;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#sec3 .check-icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-right: 12px;
}
#sec3 .benefit-text {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.feature-item div {
  text-align: left; /* 설명 문구들 좌측 정렬 */
}
#sec4 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec4 .accent-circle {
  filter: blur(100px);
  opacity: 0.15;
}
#sec4 .circle-1 {
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  top: -200px;
  right: -200px;
}
#sec4 .circle-2 {
  width: 400px;
  height: 400px;
  background-color: #06b6d4;
  bottom: -100px;
  left: -100px;
}
#sec4 .content-wrapper {
  padding: 20px 80px 60px;
  gap: 60px;
  align-items: center;
}
#sec4 .feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}
#sec4 .feature-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}
#sec4 .blueprint-grid {
  background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#sec4 .badge-new {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
#sec5 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec5 .accent-circle {
  filter: blur(100px);
  opacity: 0.15;
}
#sec5 .circle-1 {
  width: 600px;
  height: 600px;
  background-color: #8b5cf6;
  top: -200px;
  right: -200px;
}
#sec5 .circle-2 {
  width: 400px;
  height: 400px;
  background-color: #3b82f6;
  bottom: -100px;
  left: -100px;
}
#sec5 .content-wrapper {
  padding: 20px 80px 60px;
  gap: 60px;
  align-items: center;
}
#sec5 .feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}
#sec5 .feature-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
}
#sec5 .doc-list-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}
#sec5 .doc-list-item:last-child {
  border-bottom: none;
}
#sec5 .doc-status {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 12px;
  font-weight: 600;
}
#sec5 .status-done {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
#sec5 .status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
#sec5 .stamp-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 16px;
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#sec5 .digital-stamp {
  width: 100px;
  height: 100px;
  border: 3px solid #ef4444;
  border-radius: 12px;
  color: #ef4444;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  opacity: 0.8;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}
#sec5 .badge-new {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}
#sec6 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec6 .accent-circle {
  filter: blur(100px);
  opacity: 0.15;
}
#sec6 .circle-1 {
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  top: -200px;
  right: -200px;
}
#sec6 .circle-2 {
  width: 400px;
  height: 400px;
  background-color: #06b6d4;
  bottom: -100px;
  left: -100px;
}
#sec6 .content-wrapper {
  padding: 20px 80px 60px;
  gap: 60px;
  align-items: center;
}
#sec6 .feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}
#sec6 .feature-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}
#sec6 .badge-new {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
#sec6 .phone-mockup {
  width: 320px;
  height: 600px;
  border-radius: 40px;
  border: 8px solid #334155;
  background-color: #0f172a;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#sec6 .phone-status-bar {
  height: 32px;
  background-color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  font-size: 10px;
  color: white;
  z-index: 20;
}
#sec6 .phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background-color: #334155;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 30;
}
#sec6 .app-content {
  flex: 1;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#sec6 .app-card {
  background: #1e293b;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#sec6 .app-icon-btn {
  background: #1e293b;
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
#sec6 .floating-badge {
  position: absolute;
  background: white;
  color: #0f172a;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float6 3s ease-in-out infinite;
}
@keyframes float6 {
  0% {
    transform: translateY(0px) rotate(6deg);
  }
  50% {
    transform: translateY(-10px) rotate(6deg);
  }
  100% {
    transform: translateY(0px) rotate(6deg);
  }
}
#sec7 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec7 .accent-circle {
  filter: blur(100px);
  opacity: 0.2;
}
#sec7 .circle-1 {
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
  top: -300px;
  left: 20%;
}
#sec7 .circle-2 {
  width: 500px;
  height: 500px;
  background-color: #10b981;
  bottom: -200px;
  right: 10%;
}
#sec7 .content-wrapper {
  flex-direction: column;
  padding: 20px 80px 50px;
}
#sec7 .kpi-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
#sec7 .kpi-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(30, 41, 59, 0.6);
  transform: translateY(-5px);
}
#sec7 .card-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
#sec7 .theme-blue .card-header-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
#sec7 .theme-blue .metric-value {
  color: #60a5fa;
}
#sec7 .theme-emerald .card-header-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
#sec7 .theme-emerald .metric-value {
  color: #34d399;
}
#sec7 .theme-violet .card-header-icon {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}
#sec7 .theme-violet .metric-value {
  color: #a78bfa;
}
#sec7 .chart-container {
  flex: 1;
  width: 100%;
  min-height: 180px;
  position: relative;
}
#sec7 .metric-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
#sec7 .comparison-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}
#sec7 .badge-up {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
#sec7 .badge-down {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
#sec7 .list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #94a3b8;
}
#sec7 .list-item i {
  margin-top: 4px;
  margin-right: 8px;
  font-size: 0.8rem;
}
#sec8 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec8 .accent-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
#sec8 .glow-1 {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -200px;
  left: 20%;
  opacity: 0.15;
}
#sec8 .glow-2 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  bottom: -150px;
  right: 20%;
  opacity: 0.15;
}
#sec8 .content-wrapper {
  flex-direction: column;
  padding: 20px 80px 60px;
}
#sec8 .guide-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
#sec8 .guide-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}
#sec8 .card-header {
  padding: 24px 24px 0;
}
#sec8 .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
#sec8 .card-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}
#sec8 .visual-area {
  height: 140px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec8 .checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #cbd5e1;
}
#sec8 .checklist-item:last-child {
  margin-bottom: 0;
}
#sec8 .check-box {
  min-width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 10px;
  margin-top: 2px;
}
#sec8 .theme-blue .step-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
#sec8 .theme-blue .check-box {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}
#sec8 .theme-blue .highlight {
  color: #60a5fa;
}
#sec8 .theme-indigo .step-badge {
  background: rgba(129, 140, 248, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(129, 140, 248, 0.3);
}
#sec8 .theme-indigo .check-box {
  background: rgba(129, 140, 248, 0.2);
  color: #a5b4fc;
}
#sec8 .theme-indigo .highlight {
  color: #a5b4fc;
}
#sec8 .theme-cyan .step-badge {
  background: rgba(34, 211, 238, 0.15);
  color: #67e8f9;
  border: 1px solid rgba(34, 211, 238, 0.3);
}
#sec8 .theme-cyan .check-box {
  background: rgba(34, 211, 238, 0.2);
  color: #67e8f9;
}
#sec8 .theme-cyan .highlight {
  color: #67e8f9;
}
#sec8 .ui-report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin-bottom: 8px;
}
#sec8 .ui-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  flex: 1;
  margin: 0 10px;
  overflow: hidden;
}
#sec8 .ui-bar-fill {
  height: 100%;
  border-radius: 3px;
}
#sec8 .chat-bubble {
  background: white;
  color: #0f172a;
  padding: 12px 16px;
  border-radius: 12px;
  border-bottom-left-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  position: relative;
}
#sec8 .chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  border-width: 6px 6px 0 0;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
#sec9 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec9 .content-wrapper {
  flex-direction: column;
  padding: 20px 80px 50px;
}
#sec9 .main-layout {
  display: flex;
  gap: 40px;
  height: 100%;
}
#sec9 .faq-section {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#sec9 .contact-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#sec9 .faq-item {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#sec9 .faq-item:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(5px);
}
#sec9 .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
}
#sec9 .faq-answer {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  padding-left: 34px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
#sec9 .faq-item.active {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(59, 130, 246, 0.6);
}
#sec9 .faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}
#sec9 .faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #3b82f6;
}
#sec9 .q-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 10px;
}
#sec9 .contact-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
}
#sec9 .contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
#sec9 .contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
#sec9 .contact-info-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#sec9 .contact-label {
  width: 80px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}
#sec9 .contact-value {
  color: #e2e8f0;
  font-weight: 500;
}
#sec9 .inquiry-box {
  background-color: #1e40af;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  border: 1px solid #3b82f6;
}
#sec9 .inquiry-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
}
#sec9 .btn-white {
  background-color: white;
  color: #1e40af;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 20px;
  transition: all 0.2s;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#sec9 .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
#sec10 {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
#sec10 .accent-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.15;
}
#sec10 .blob-1 {
  width: 600px;
  height: 600px;
  background: #2563eb;
  top: -200px;
  right: -100px;
}
#sec10 .blob-2 {
  width: 500px;
  height: 500px;
  background: #0891b2;
  bottom: -200px;
  left: -100px;
}
#sec10 .content-wrapper {
  flex-direction: column;
  padding: 20px 100px 60px;
}
#sec10 .roadmap-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 50px;
  padding: 0 20px;
  width: 100%;
}
#sec10 .roadmap-line {
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
#sec10 .step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}
#sec10 .step-item:hover .step-icon-circle {
  transform: translateY(-5px);
  border-color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
#sec10 .step-number {
  font-size: 0.75rem;
  color: #60a5fa;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
#sec10 .step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
#sec10 .step-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.4;
}
#sec10 .bottom-grid {
  display: flex;
  gap: 30px;
  flex: 1;
}
#sec10 .resource-card {
  flex: 1;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
#sec10 .resource-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
#sec10 .resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
}
#sec10 .resource-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}
#sec10 .download-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}
#sec10 .resource-item:hover .download-btn {
  background: #3b82f6;
  color: white;
}
#sec10 .cta-card {
  flex: 1.2;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -12px rgba(30, 64, 175, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.5);
}
#sec10 .cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  z-index: 0;
}
#sec10 .main-btn {
  background: white;
  color: #1e40af;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  z-index: 10;
}
#sec10 .main-btn:hover {
  transform: scale(1.05);
}
#sec10 .secondary-links {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  z-index: 10;
}
#sec10 .sec-link {
  color: #bfdbfe;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
#sec10 .sec-link:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .header-content,
  .slide-container {
    width: 100% !important;
    padding: 0 20px !important;
  }

  .content-wrapper {
    flex-direction: column !important;
    padding: 40px 0 !important;
    align-items: center !important;
    text-align: center;
  }

  h1,
  h2,
  .text-3xl {
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .text-section {
    width: 100% !important;
    padding: 0 !important;
    align-items: center !important;
  }

  #sec1 .hero-content {
    padding-top: 40px !important;
  }

  #sec1 .visual-content {
    max-width: 100% !important;
    height: auto !important;
    min-height: 250px;
    margin-top: 30px;
  }

  #sec1 .mockup-card {
    position: relative !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    left: 0 !important;
    top: 0 !important;
  }

  #sec9 .main-layout {
    flex-direction: column !important;
    gap: 30px;
    width: 100% !important;
  }

  #sec9 .faq-section,
  #sec9 .contact-section {
    width: 100% !important;
  }

  #sec10 .roadmap-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px;
  }

  #sec10 .roadmap-line {
    display: none;
  }

  #sec10 .step-item {
    width: 100% !important;
  }

  #sec10 .bottom-grid {
    flex-direction: column !important;
    width: 100% !important;
  }

  .grid-cols-3 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .mockup-container,
  .phone-mockup {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
  }
}
