.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 20px 80px;
}

.main-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  font-family: "Pretendard", sans-serif;
}

.service-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-button {
  padding: 15px 30px;
  border: none;
  background: #f5f5f5;
  color: #666;
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.tab-button:hover {
  background: #e0e0e0;
}

.tab-button.active {
  background: #6026f4;
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
}

.service-text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Pretendard", sans-serif;
}

.service-features {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.service-features li {
  text-align: center;
}

.service-features img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.service-features span {
  display: block;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  font-family: "Pretendard", sans-serif;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tab-buttons {
    flex-wrap: wrap;
  }

  .service-content {
    flex-direction: column;
    text-align: center;
  }

  .service-features {
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-text {
    order: 2;
  }

  .service-image {
    order: 1;
  }
}

.service-points {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.point:hover {
  background: #f0f1f2;
  transform: translateY(-2px);
}

.point h4 {
  color: #6026f4;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "Pretendard", sans-serif;
}

.point p {
  color: #666;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
  font-family: "Pretendard", sans-serif;
}

.partner-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partner-logos img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .service-points {
    margin: 20px 0;
  }

  .partner-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .partner-logos img {
    height: 25px;
  }
}

.service-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.process-item .icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-item .icon img {
  width: 30px;
  height: 30px;
}

.process-item span {
  font-family: "Pretendard", sans-serif;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.process-arrow {
  color: #6026f4;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .service-process {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .process-item .icon {
    width: 50px;
    height: 50px;
  }

  .process-item .icon img {
    width: 25px;
    height: 25px;
  }
}

.delivery-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.time-slot {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.time-slot:hover {
  transform: translateY(-5px);
}

.time-slot h4 {
  color: #6026f4;
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
}

.time-slot .time {
  display: block;
  color: #666;
  font-size: 0.9rem;
  font-family: "Pretendard", sans-serif;
}

@media (max-width: 768px) {
  .delivery-times {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .delivery-times {
    grid-template-columns: 1fr;
  }
}

.retail-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.flow-item {
  text-align: center;
}

.flow-icon {
  width: 80px;
  height: 80px;
  background: #e5dbff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.flow-icon:hover {
  transform: translateY(-5px);
}

.flow-icon span {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}

.flow-arrow {
  color: #6026f4;
  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .retail-flow {
    flex-direction: column;
    padding: 15px;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .flow-icon {
    width: 60px;
    height: 60px;
  }
}

.consulting-diagram {
  margin: 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.diagram-center {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.center-circle {
  width: 150px;
  height: 150px;
  border: 2px solid #6026f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  text-align: center;
}

.center-circle span {
  color: #6026f4;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  line-height: 1.4;
}

.consulting-features {
  width: 100%;
  max-width: 500px;
}

.consulting-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consulting-features li {
  background: #f8f9fa;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-family: "Pretendard", sans-serif;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.consulting-features li:hover {
  background: #f0f1f2;
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .center-circle {
    width: 120px;
    height: 120px;
  }

  .center-circle span {
    font-size: 1rem;
  }

  .consulting-features li {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}

.core-values {
  margin-top: 100px;
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 60px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.values-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
  padding: 0 20px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.value-circle {
  width: 160px;
  height: 160px;
  border: 2px solid #6026f4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  transition: transform 0.3s ease;
}

.value-circle:hover {
  transform: translateY(-10px);
}

.value-circle img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.value-circle span {
  color: #6026f4;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}

.value-item p {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.value-connector {
  width: 50px;
  height: 2px;
  background: #6026f4;
  position: relative;
}

.value-connector::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #6026f4;
}

.values-description {
  margin-top: 60px;
  padding: 0 20px;
}

.values-description p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

@media (max-width: 768px) {
  .values-diagram {
    flex-direction: column;
    gap: 20px;
  }

  .value-connector {
    width: 2px;
    height: 30px;
  }

  .value-connector::before {
    top: auto;
    bottom: -2px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }

  .value-circle {
    width: 140px;
    height: 140px;
  }

  .section-title {
    font-size: 1.8rem;
    padding: 0 20px;
  }

  .values-description p {
    font-size: 1rem;
    br {
      display: none;
    }
  }
}

/* Ecommerce 새로운 디자인 스타일 */
.ecommerce-hero {
  background: linear-gradient(135deg, #6026f4 0%, #8b5cf6 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Pretendard", sans-serif;
}

.hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

.stats-section {
  margin: 11rem 0;
  background: white;
  border-radius: 20px;
}

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

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(96, 38, 244, 0.1);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(96, 38, 244, 0.15);
  border-color: #6026f4;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #6026f4;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
  font-family: "Pretendard", sans-serif;
}

.service-highlights {
  margin-bottom: 80px;
  padding: 60px 40px;
  background: #f8f9fa;
  border-radius: 20px;
}

.service-highlights h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  font-family: "Pretendard", sans-serif;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(96, 38, 244, 0.15);
  border-color: #6026f4;
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.highlight-card h4 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
}

.highlight-card p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.partner-section {
  text-align: center;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 15px;
}

.partner-section h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
  font-family: "Pretendard", sans-serif;
}

/* 상세 섹션 스타일 */
.stats-overview h3 {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  font-family: "Pretendard", sans-serif;
}

.detail-sections {
  margin-bottom: 60px;
}

.detail-section {
  margin: 10rem 0;
  padding: 60px 0;
  background: #f8f9fa;
  border-radius: 20px;
}

.detail-section:nth-child(even) {
  background: white;
}

.section-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-content.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
}

.section-text h3 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Pretendard", sans-serif;
}

.section-text p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
  /*margin-bottom: 30px;*/
  font-family: "Pretendard", sans-serif;
}

.section-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 25조원 시장 규모 섹션 */
.market-trends {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trend-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.trend-icon {
  font-size: 1.5rem;
}

.trend-item span:last-child {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}

.market-chart {
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  height: 280px;
  width: 100%;
  justify-content: center;
}

.chart-bar {
  width: 70px;
  background: linear-gradient(135deg, #6026f4 0%, #8b5cf6 100%);
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.chart-bar:nth-child(1) {
  height: 40%;
  animation: growBar1 1.5s ease-out;
}

.chart-bar:nth-child(2) {
  height: 60%;
  animation: growBar2 1.5s ease-out 0.3s both;
}

.chart-bar:nth-child(3) {
  height: 80%;
  animation: growBar3 1.5s ease-out 0.6s both;
}

.chart-bar:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(96, 38, 244, 0.3);
}

.chart-value {
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Pretendard", sans-serif;
  margin-bottom: 5px;
}

.chart-label {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
  position: absolute;
  bottom: -35px;
  white-space: nowrap;
}

.growth-indicator {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Pretendard", sans-serif;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
  animation: fadeInUp 1s ease-out 1.5s both;
  margin-top: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growBar1 {
  from {
    height: 0%;
  }
  to {
    height: 40%;
  }
}

@keyframes growBar2 {
  from {
    height: 0%;
  }
  to {
    height: 60%;
  }
}

@keyframes growBar3 {
  from {
    height: 0%;
  }
  to {
    height: 80%;
  }
}

/* 6시간 배송 섹션 */
.delivery-timeline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(96, 38, 244, 0.1);
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.time-point {
  width: 80px;
  height: 80px;
  background: #6026f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Pretendard", sans-serif;
  animation: pulse 2s infinite;
}

.time-arrow {
  font-size: 1.5rem;
  color: #6026f4;
  font-weight: bold;
}

.total-time {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #6026f4;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
}

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

.delivery-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-item span:last-child {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}

/* 80% 커버율 섹션 */
.coverage-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.coverage-item {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.coverage-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6026f4;
  margin-bottom: 8px;
  font-family: "Pretendard", sans-serif;
}

.coverage-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  font-family: "Pretendard", sans-serif;
}

.coverage-map {
  width: 300px;
  height: 300px;
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}

.map-region {
  background: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
}

.map-region.active {
  background: linear-gradient(135deg, #6026f4 0%, #8b5cf6 100%);
  color: white;
  animation: regionPulse 2s infinite;
}

.coverage-indicator {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #6026f4;
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Pretendard", sans-serif;
}

@keyframes regionPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .ecommerce-hero {
    padding: 40px 20px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .highlight-card {
    padding: 30px 20px;
  }

  .section-content {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .section-content.reverse {
    flex-direction: column;
  }

  .section-text h3 {
    font-size: 1.8rem;
  }

  .section-text p {
    font-size: 1.1rem;
  }

  /* 6시간 배송 타임라인 모바일 최적화 */
  .delivery-timeline {
    flex-direction: column;
    gap: 15px;
    padding: 30px 20px;
    width: 100%;
    max-width: 350px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .time-arrow {
    transform: rotate(90deg);
    font-size: 1.2rem;
  }

  .time-point {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .total-time {
    position: static;
    transform: none;
    margin-top: 15px;
    font-size: 1rem;
    padding: 8px 16px;
  }

  /* 80% 커버율 섹션 모바일 최적화 */
  .coverage-stats {
    flex-direction: column;
    gap: 15px;
  }

  .coverage-item {
    padding: 15px;
  }

  .coverage-number {
    font-size: 1.5rem;
  }

  .coverage-map {
    width: 250px;
    height: 250px;
  }

  .map-region {
    font-size: 0.8rem;
  }

  .coverage-indicator {
    font-size: 0.8rem;
    padding: 6px 12px;
    bottom: -30px;
  }

  /* 차트 모바일 최적화 */
  .market-chart {
    width: 250px;
    height: 300px;
  }

  .chart-container {
    gap: 10px;
    height: 200px;
  }

  .chart-bar {
    width: 60px;
  }

  .chart-value {
    font-size: 0.9rem;
  }

  .chart-label {
    font-size: 0.9rem;
    bottom: -25px;
  }

  .growth-indicator {
    font-size: 0.9rem;
    padding: 10px 16px;
    margin-top: 15px;
  }

  /* 트렌드 아이템 모바일 최적화 */
  .trend-item {
    padding: 12px 15px;
  }

  .trend-item span:last-child {
    font-size: 1rem;
  }

  /* 피처 아이템 모바일 최적화 */
  .feature-item {
    padding: 12px 15px;
  }

  .feature-item span:last-child {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .detail-section {
    padding: 40px 0;
  }

  .section-text h3 {
    font-size: 1.6rem;
  }

  .time-point {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }

  .delivery-timeline {
    padding: 20px 15px;
    max-width: 300px;
  }

  .coverage-map {
    width: 200px;
    height: 200px;
  }

  .map-region {
    font-size: 0.7rem;
  }

  .market-chart {
    width: 200px;
    height: 250px;
  }

  .chart-bar {
    width: 50px;
  }

  .chart-value {
    font-size: 0.8rem;
  }

  .chart-label {
    font-size: 0.8rem;
    bottom: -20px;
  }

  .trend-item {
    padding: 10px 12px;
  }

  .trend-item span:last-child {
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 10px 12px;
  }

  .feature-item span:last-child {
    font-size: 0.9rem;
  }
}

/* Furniture Specialty Section */
.furniture-specialty-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(96, 38, 244, 0.06);
  padding: 60px 40px;
  margin-bottom: 60px;
}
.furniture-specialty-section h3 {
  font-size: 2rem;
  color: #6026f4;
  margin-bottom: 30px;
  font-family: "Pretendard", sans-serif;
  text-align: center;
}
.furniture-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.15rem;
  color: #333;
  font-family: "Pretendard", sans-serif;
}
.furniture-features b {
  color: #6026f4;
}
.furniture-graph-section {
  margin-top: 40px;
  text-align: center;
}
.furniture-graph-section h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-family: "Pretendard", sans-serif;
}
.furniture-bar-graph {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  height: 220px;
  margin-bottom: 10px;
}
.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 60px;
}
.bar {
  width: 100%;
  background: linear-gradient(135deg, #a78bfa 0%, #6026f4 100%);
  border-radius: 10px 10px 0 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: height 0.5s;
  min-height: 30px;
}
.bar span {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: #6026f4;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
}
.bar-label {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  font-family: "Pretendard", sans-serif;
}
.bar-cagr {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  padding: 2px 10px;
  border-radius: 12px;
  background: #ece9fd;
  color: #6026f4;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(96, 38, 244, 0.08);
}
.bar-cagr.up {
  background: #e0f7ef;
  color: #059669;
}
.bar-cagr.down {
  background: #fbe9e9;
  color: #e11d48;
}
.furniture-graph-unit {
  font-size: 0.95rem;
  color: #888;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .furniture-specialty-section {
    padding: 30px 10px;
  }
  .furniture-bar-graph {
    gap: 18px;
    height: 140px;
  }
  .bar-item {
    width: 36px;
  }
  .bar span {
    font-size: 0.9rem;
    top: -22px;
  }
  .bar-label {
    font-size: 0.85rem;
  }
  .bar-cagr {
    font-size: 0.8rem;
    top: -28px;
    padding: 1px 6px;
  }
}

.furniture-detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.furniture-detail-card {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(96, 38, 244, 0.07);
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #ece9fd;
}
.furniture-detail-card:hover {
  box-shadow: 0 8px 32px rgba(96, 38, 244, 0.13);
  transform: translateY(-4px) scale(1.03);
  border-color: #a78bfa;
}
.detail-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #6026f4;
}
.detail-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  font-family: "Pretendard", sans-serif;
}
.detail-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}
@media (max-width: 768px) {
  .furniture-detail-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }
  .furniture-detail-card {
    padding: 22px 12px 18px 12px;
  }
  .detail-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .detail-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .detail-desc {
    font-size: 0.95rem;
  }
}

.vertical-detail-section .section-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vertical-detail-section .section-visual {
  width: 100%;
  display: flex;
  justify-content: center;
}
.vertical-detail-section .furniture-detail-img {
  border-radius: 14px !important;
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(96, 38, 244, 0.07);
}
@media (max-width: 768px) {
  .vertical-detail-section .furniture-detail-img {
    max-width: 90vw;
  }
  .vertical-detail-section .section-text {
    margin-bottom: 14px;
  }
}

.detail-section.reverse .section-content {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .detail-section.reverse .section-content {
    flex-direction: column;
  }
}

.furniture-detail-img {
  border-radius: 14px !important;
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(96, 38, 244, 0.07);
}
.vertical-detail-section .furniture-detail-img {
  max-width: 50%;
}
@media (max-width: 768px) {
  .furniture-detail-img,
  .vertical-detail-section .furniture-detail-img {
    max-width: 90vw;
  }
}

.retail-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px 0 0 0;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-icon {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.flow-label {
  font-size: 1rem;
  color: #333;
  font-family: "Pretendard", sans-serif;
}
.flow-arrow {
  font-size: 1.5rem;
  color: #6026f4;
  font-weight: bold;
}
@media (max-width: 600px) {
  .retail-flow-diagram {
    flex-direction: column;
    gap: 8px;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

/* 새로운 이커머스 섹션 스타일 */
.target-section {
  margin-bottom: 80px;
}

.target-section h3 {
  text-align: left;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.target-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  border-radius: 2px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.target-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6026f4, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.target-card:hover {
  background: #fff;
  border-color: #6026f4;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(96, 38, 244, 0.1);
}

.target-icon {
  margin-bottom: 20px;
  display: block;
}

.target-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.target-card h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.target-card p {
  color: #666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
  margin: 0;
}

.strength-section {
  margin-bottom: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  border-radius: 20px;
}

.strength-section h3 {
  text-align: left;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.strength-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  border-radius: 2px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.strength-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strength-card.primary {
  border-color: #6026f4;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  color: white;
}

.strength-card.primary .strength-icon,
.strength-card.primary h4,
.strength-card.primary p {
  color: white;
}

.strength-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.strength-card.primary:hover {
  box-shadow: 0 15px 40px rgba(96, 38, 244, 0.3);
}

.strength-icon {
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.strength-icon img {
  width: 300px;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
}

.strength-card h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.strength-card p {
  color: #666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
  margin: 0;
  font-size: 0.95rem;
}

.process-section {
  margin-bottom: 80px;
}

.process-section h3 {
  text-align: left;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.process-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  border-radius: 2px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  background: #f8f9fa;
  padding: 40px 20px;
  border-radius: 20px;
  position: relative;
  overflow-x: auto;
}

.process-flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(96, 38, 244, 0.05) 50%,
    transparent 70%
  );
  border-radius: 20px;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  position: relative;
  z-index: 1;
}

.step-number {
  background: #6026f4;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  font-family: "Pretendard", sans-serif;
}

.step-icon {
  margin-bottom: 15px;
  display: block;
}

.step-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.process-step h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.process-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: "Pretendard", sans-serif;
  margin: 0;
}

.process-arrow {
  font-size: 1.5rem;
  color: #6026f4;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.features-section {
  margin-bottom: 80px;
}

.features-section h3 {
  text-align: left;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 50px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}

.features-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(96, 38, 244, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.feature-icon img {
  width: 60px;
  object-fit: contain;
}

.feature-content {
  position: relative;
  z-index: 1;
}

.feature-content h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  line-height: 1.5;
  font-family: "Pretendard", sans-serif;
  margin: 0;
  font-size: 0.95rem;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
  .target-section h3,
  .strength-section h3,
  .process-section h3,
  .features-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-left: 0;
  }

  .target-section h3::before,
  .strength-section h3::before,
  .process-section h3::before,
  .features-section h3::before {
    display: none;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .target-card {
    padding: 25px;
  }

  .target-icon img {
    width: 50px;
    height: 50px;
  }

  .strength-section {
    padding: 40px 20px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
  }

  .strength-card {
    padding: 25px;
  }

  .strength-icon img {
    width: 90px;
    height: 90px;
  }

  .process-flow {
    flex-direction: column;
    gap: 30px;
    padding: 30px 15px;
    overflow-x: visible;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .step-icon img {
    width: 40px;
    height: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: none;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-icon img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .target-card,
  .strength-card {
    padding: 20px;
  }

  .target-icon img {
    width: 45px;
    height: 45px;
  }

  .strength-icon img {
    width: 70px;
    height: 70px;
  }

  .process-step {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .step-icon img {
    width: 35px;
    height: 35px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .feature-icon {
    margin-top: 0;
  }

  .feature-icon img {
    width: 30px;
    height: 30px;
  }

  .target-section h3,
  .strength-section h3,
  .process-section h3,
  .features-section h3 {
    font-size: 1.5rem;
  }
}

/* CTA 섹션 스타일 */
.cta-section {
  margin-top: 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #6026f4 0%, #7c3aed 100%);
  border-radius: 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: "Pretendard", sans-serif;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: "Pretendard", sans-serif;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: white;
  color: #6026f4;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .cta-section {
    margin-top: 40px;
    padding: 40px 20px;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
