/* 04 서브비주얼*/

.dal02-subvisual {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.dal02-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.dal02-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dal02-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.dal02-text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.dal02-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.dal02-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .dal02-subvisual {
    height: 400px;
  }

  .dal02-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .dal02-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
  }
}

/* 04 서브비주얼*/

/* 01*/

/* sero08 섹션 */
.sero08-section {
  width: 100%;
  background: #f8f9fa;
  padding: 80px 0;
}

.sero08-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 상단 타이틀 영역 */
.sero08-title-area {
  text-align: center;
  margin-bottom: 60px;
}

.sero08-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.sero08-title-line {
  width: 60px;
  height: 3px;
  background: #5a9fb8;
  margin: 0 auto 30px;
}

.sero08-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.sero08-highlight {
  color: #5a9fb8;
  font-weight: 800;
}

.sero08-desc {
  font-size: 20px;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

/* 블루 띠 영역 */
.sero08-blue-strip {
  background: linear-gradient(90deg, #5a9fb8 0%, #6db3ca 100%);
  padding: 35px 40px;
  border-radius: 8px;
  margin-bottom: 50px;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 15px rgba(90, 159, 184, 0.2);
}

.sero08-strip-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

/* 아래 화살표 */
.sero08-arrow-down {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #6db3ca;
}

/* 질문 카드 영역 */
.sero08-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.sero08-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sero08-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.sero08-card-text {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.7;
  letter-spacing: -0.3px;
}

.sero08-q {
  color: #5a9fb8;
  font-weight: 700;
  font-size: 20px;
  margin-right: 8px;
}

.sero08-text-blue {
  color: #5a9fb8;
  font-weight: 700;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
  .sero08-section {
    padding: 60px 0;
  }

  .sero08-main-title {
    font-size: 28px;
  }

  .sero08-subtitle {
    font-size: 24px;
  }

  .sero08-strip-title {
    font-size: 22px;
  }

  .sero08-card {
    min-width: 250px;
  }

  .sero08-card-text {
    font-size: 20px;
  }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .sero08-section {
    padding: 50px 0;
  }

  .sero08-title-area {
    margin-bottom: 40px;
  }

  .sero08-main-title {
    font-size: 24px;
  }

  .sero08-subtitle {
    font-size: 20px;
  }

  .sero08-desc {
    font-size: 20px;
  }

  .sero08-blue-strip {
    padding: 28px 25px;
    margin-bottom: 40px;
  }

  .sero08-strip-title {
    font-size: 19px;
  }

  .sero08-cards {
    gap: 20px;
  }

  .sero08-card {
    min-width: 100%;
    padding: 28px 25px;
  }

  .sero08-card-text {
    font-size: 20px;
  }

  .sero08-arrow-down {
    bottom: -15px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #6db3ca;
  }
}

@media (max-width: 480px) {
  .sero08-section {
    padding: 40px 0;
  }

  .sero08-main-title {
    font-size: 22px;
  }

  .sero08-subtitle {
    font-size: 20px;
  }

  .sero08-strip-title {
    font-size: 20px;
  }

  .sero08-card-text {
    font-size: 20px;
  }
}

/* 01 */

/* 02*/

.sam66-section {
  width: 100%;
  padding: 80px 20px;
  background: #fff;
}

.sam66-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sam66-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.sam66-description {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 80px;
}

.sam66-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sam66-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  padding: 50px 60px;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sam66-card-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.sam66-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sam66-card-subtitle {
  font-size: 24px;
  color: #000;
  font-weight: 700;
}

.sam66-card-title {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .sam66-title {
    font-size: 36px;
  }

  .sam66-description {
    font-size: 20px;
  }

  .sam66-card {
    padding: 35px 40px;
    padding-top: 60px;
  }

  .sam66-card-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    top: -25px;
  }

  .sam66-card-subtitle {
    font-size: 20px;
  }

  .sam66-card-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sam66-title {
    font-size: 28px;
  }

  .sam66-card {
    padding: 25px 30px;
  }

  .sam66-card-title {
    font-size: 20px;
  }
}
/* 02*/

/* 03*/
.sam92-container {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  background: #f8f8f8;
  padding: 80px 20px;
}
.sam92-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.sam92-header {
  text-align: center;
  margin-bottom: 60px;
}
.sam92-title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.sam92-subtitle {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
}
.sam92-process-wrapper {
  position: relative;
}
.sam92-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.sam92-row.sam92-reverse {
  grid-template-columns: repeat(3, 1fr);
  direction: rtl;
  margin-top: 50px;
}
.sam92-row.sam92-reverse .sam92-card {
  direction: ltr;
}
.sam92-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.sam92-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.sam92-card-header {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e8e8;
}
.sam92-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.sam92-card-desc {
  font-size: 20px;
  color: #666;
  line-height: 1.6;
}
.sam92-card-number {
  font-size: 32px;
  font-weight: 700;
  color: #5dd6c4;
  margin-bottom: 30px;
}
.sam92-card-icon {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sam92-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(93, 214, 196, 0.1);
  border-radius: 50%;
}
.sam92-card-icon svg {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 1;
}
.sam92-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #d0d0d0;
  font-size: 30px;
  z-index: 2;
}
.sam92-row.sam92-reverse .sam92-arrow {
  left: -10px;
  right: auto;
  transform: translateY(-50%) scaleX(-1);
}
.sam92-card:last-child .sam92-arrow {
  display: none;
}
.sam92-down-arrow {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  color: #d0d0d0;
  font-size: 40px;
}
.sam92-card-03 {
  position: relative;
}
@media (max-width: 1200px) {
  .sam92-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam92-row.sam92-reverse {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam92-arrow {
    display: none;
  }
  .sam92-down-arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .sam92-container {
    padding: 60px 20px;
  }
  .sam92-title {
    font-size: 32px;
  }
  .sam92-row,
  .sam92-row.sam92-reverse {
    grid-template-columns: 1fr;
  }
}
/* 03*/

/* 04*/

.sam08-shop-section {
  width: 100%;
  padding: 80px 16px;
  background: #f9fafb;
}

.sam08-shop-section * {
  box-sizing: border-box;
}

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

.sam08-shop-header {
  margin-bottom: 48px;
}

.sam08-shop-title {
  font-size: 32px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 12px;
}

.sam08-shop-subtitle {
  font-size: 20px;
  color: #6b7280;
}

.sam08-shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sam08-shop-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sam08-shop-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.sam08-shop-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.sam08-shop-card-content {
  flex: 1;
}

.sam08-shop-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 8px;
}

.sam08-shop-card-desc {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.5;
}

.sam08-shop-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sam08-shop-card:hover .sam08-shop-card-arrow {
  color: #3b82f6;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sam08-shop-grid {
    grid-template-columns: 1fr;
  }

  .sam08-shop-title {
    font-size: 24px;
  }
}

/* 04*/
