/* 슬라이드*/

/* ── dal01 Hero Video Slider ── */
.dal01-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  z-index: 0;
}

/* dal01-slide / dal01-active - 단일 영상 전환 후 미사용
.dal01-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease;
  pointer-events: none;
  z-index: 1;
}

.dal01-slide.dal01-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
*/

.dal01-video-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
}

.dal01-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* iframe 위 투명 차단 레이어 - 유튜브 컨트롤 UI 가림 */
.dal01-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 어두운 오버레이 */
.dal01-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

/* 텍스트 박스 */
.dal01-text-box {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(calc(-50% + 18px));
  width: 90%;
  max-width: 700px;
  text-align: left;
  color: #fff;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s ease,
    transform 0.9s ease;
}

.dal01-text-box.dal01-text-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
}

/* 유튜브 버튼 */
.dal01-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 28px;
  background: #fff;
  border: 1.5px solid #fff;
  color: #111;
  font-size: clamp(14px, 1.3vw, 18px);
  font-family: "Pretendard", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.dal01-yt-btn::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 13px;
  border-color: transparent transparent transparent #111;
  flex-shrink: 0;
  transition: border-color 0.25s;
}
.dal01-yt-btn:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.dal01-yt-btn:hover::before {
  border-color: transparent transparent transparent #fff;
}

@media (max-width: 768px) {
  .dal01-yt-btn {
    margin-top: 18px;
    padding: 10px 18px;
    font-size: 13px;
  }
}

.dal01-label {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 24px;
  font-family: "Pretendard", sans-serif;
  line-height: 1.15;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.dal01-line {
  font-size: clamp(15px, 1.6vw, 22px);
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-family: "Pretendard", sans-serif;
  word-break: keep-all;
  font-weight: 400;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.5);
}

/* 화살표 */
.dal01-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.dal01-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}
.dal01-prev {
  left: 24px;
}
.dal01-next {
  right: 24px;
}

/* 도트 */
.dal01-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dal01-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.dal01-dot.dal01-dot-on {
  background: #c8a55a;
  width: 22px;
  border-radius: 4px;
}

/* 모바일 */
@media (max-width: 768px) {
  .dal01-hero-slider {
    height: 60vw;
    min-height: 260px;
  }
  .dal01-label {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .dal01-line {
    font-size: 12px;
  }
  .dal01-arrow {
    display: none;
  }
}

/* ── sy Banner ── */
.sy-banner {
  width: 100%;
  background-color: #fff;
  padding: 52px 0;
}

.sy-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sy-banner-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sy-banner-title {
  margin: 0;
  font-size: 49px;
  font-weight: 700;
  color: #aaa;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.sy-banner-text {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #111;
  line-height: 1.5;
}

.sy-banner-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #111;
  color: #111;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s;
}

.sy-banner-btn:hover {
  background: #111;
  color: #f5c800;
}

/* 모바일 */
@media (max-width: 768px) {
  .sy-banner-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .sy-banner-title {
    font-size: 37px;
  }
}

/* sysli */
.sysli-outer {
  background: #f9f8f6;
  width: 100%;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  padding: 3.5rem 0;
  overflow: hidden;
}
.sysli-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}
.sysli-title-area {
  margin-bottom: 0.8rem;
}
.sysli-eyebrow {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #353434;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.sysli-main-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  word-break: keep-all;
}
.sysli-main-title em {
  font-style: normal;
  color: #0e0e0e;
}
.sysli-gold-rule {
  width: 36px;
  height: 2px;
  background: #000000;
  margin: 1.4rem 0 2rem;
}

/* body-row: inner 밖 → 왼쪽 패딩만 맞춤, 오른쪽은 뚫림 */
.sysli-body-row {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-left: max(3rem, calc((100vw - 1400px) / 2 + 3rem));
}
.sysli-text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sysli-tb h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #060606;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sysli-tb h3::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 1.5px;
  background: #000000;
  flex-shrink: 0;
}
.sysli-tb p {
  font-size: 1.2rem;
  color: #888;
  line-height: 1.6;
}

/* 슬라이더 */
.sysli-slider-col {
  min-width: 0;
  overflow: hidden;
  padding-right: 30px; /* ← 이거 추가 */
}
.sysli-viewport {
  overflow: visible;
}
.sysli-track {
  display: flex;
  gap: 14px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.sysli-slide {
  flex: 0 0 calc((100% - 28px) / 3);
  border-radius: 8px;
  aspect-ratio: 4 / 3; /* 가로형 이미지 비율 */
  overflow: hidden;
  position: relative;
}
.sysli-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sysli-ctrl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-right: 1.5rem;
}
.sysli-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.sysli-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.13);
  cursor: pointer;
  transition: all 0.3s;
}
.sysli-dot.sysli-on {
  background: #c8a55a;
  width: 16px;
  border-radius: 3px;
}
.sysli-navs {
  display: flex;
  gap: 6px;
  align-items: center;
}
.sysli-count {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.1em;
  font-family: monospace;
  margin-right: 6px;
}
.sysli-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sysli-nav:hover {
  background: #f0ede8;
}
.sysli-nav svg {
  width: 13px;
  height: 13px;
  stroke: #333;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* sysli */

/* 06 */
.bz09-wrap {
  width: 100%;
  background: #f9f8f6;
}

.bz09-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 3rem;
  display: flex;
  gap: 80px;
  align-items: center;
}

.bz09-left {
  flex: 1;
}

.bz09-left img {
  width: 100%;
  height: auto;
  display: block;
}

.bz09-right {
  flex: 1;
}

.bz09-title {
  font-size: 31px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 28px;
  word-break: keep-all;
}

.bz09-description {
  font-size: 20px;
  line-height: 2;
  color: #666;
}

.bz09-description p {
  margin-bottom: 1.2em;
}

.bz09-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .bz09-container {
    flex-direction: column;
    gap: 40px;
    padding: 60px 1.5rem;
  }
}
/* 06 */

/* 03*/

.sam19-container {
  background: #ffffff;
  padding: 80px 40px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.sam19-wrapper {
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sam19-left {
  display: flex;
  flex-direction: column;
}

.sam19-title {
  font-size: 39px;
  font-weight: 100;
  color: #616060;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.sam19-subtitle {
  font-size: 53px;
  font-weight: 700;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 1.1;
}

.sam19-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  max-width: 600px;
}

.sam19-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.sam19-gallery-item {
  position: relative;
  padding-bottom: 130%;
  overflow: hidden;
  background: #ddd;
}

.sam19-gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam19-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 16px 32px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  width: fit-content;
}

.sam19-btn-outline:hover {
  background: #000;
  color: #fff;
}

.sam19-btn-outline::after {
  content: "→";
  font-size: 20px;
}

.sam19-right {
  position: relative;
}

.sam19-main-image {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  background: #ddd;
}

.sam19-main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam19-video-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  padding: 15px 25px 15px 15px;
  text-decoration: none;
  transition: transform 0.3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.sam19-video-btn:hover {
  transform: scale(1.05);
}

.sam19-play-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sam19-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid #000;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.sam19-video-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sam19-video-label {
  font-size: 12px;
  font-weight: 500;
  color: #b8a186;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sam19-video-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1024px) {
  .sam19-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .sam19-container {
    padding: 40px 20px;
  }

  .sam19-title {
    font-size: 37px;
  }

  .sam19-subtitle {
    font-size: 41px;
  }

  .sam19-gallery {
    grid-template-columns: 1fr;
  }

  .sam19-video-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 20px 12px 12px;
  }

  .sam19-play-icon {
    width: 40px;
    height: 40px;
  }
}
/* 03*/

/* 030*/
.bz11-container {
  padding: 40px 0;

  text-align: center;
  margin-bottom: 40px;
}

.bz11-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  margin-bottom: 10px;
}

.bz11-main-title {
  font-size: 49px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .bz11-main-title {
    font-size: 49px;
  }
}

@media (max-width: 768px) {
  .bz11-main-title {
    font-size: 37px;
  }
}
/* 030*/

/* 031*/

.category-row {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.category-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f3f3f3;
  padding: 36px 0 28px 0;
  background: #fff;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}

.category-box:last-child {
  border-right: none;
}

.cat-icon {
  margin-bottom: 18px;
}

.cat-icon img {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto;
}

.cat-label {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
  text-align: center;
  letter-spacing: 0.04em;
}

/* 활성화된 탭 */
.category-box.active {
  background: #f8f8f8;
}

.category-box.active .cat-label {
  color: #333;
}

/* ▼ 탭 콘텐츠 영역 */
.tab-content-wrap {
  background: none;
  padding: 0 20px;
  margin-top: 20px;
  border: none;
  box-shadow: none;
}

.tab-content {
  display: none;
  padding: 0;
}

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

/* 031*/

/* 032*/

.sam48-info-board {
  position: relative;
  padding: 80px 60px;
  background: #ffffff;
  overflow: hidden;
}

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

/* 왼쪽: 제목 */
.sam48-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sam48-label {
  font-size: 20px;
  color: #666;
  margin: 0;
}

.sam48-label-brand {
  color: #e63312;
  font-weight: 600;
}

.sam48-main-title {
  font-size: 63px;
  font-weight: 700;
  color: #000;
  margin: 0;
  line-height: 1.1;
}

.sam48-description {
  font-size: 20px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

/* 오른쪽: 통계 */
.sam48-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.sam48-stat {
  text-align: center;
  position: relative;
}

.sam48-stat::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: #ddd;
}

.sam48-stat:last-child::after {
  display: none;
}

.sam48-stat-label {
  font-size: 20px;
  color: #e63312;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.sam48-stat-value {
  font-size: 57px;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  line-height: 1;
  transition: all 0.3s ease;
}

.sam48-stat-unit {
  font-size: 25px;
  font-weight: 400;
}

.sam48-stat-description {
  font-size: 20px;
  color: #999;
  margin: 0;
}

/* 반응형 */
@media (max-width: 1200px) {
  .sam48-watermark {
    font-size: 151px;
  }

  .sam48-container {
    gap: 60px;
  }

  .sam48-main-title {
    font-size: 57px;
  }

  .sam48-stat-value {
    font-size: 49px;
  }
}

@media (max-width: 1024px) {
  .sam48-info-board {
    padding: 60px 40px;
  }

  .sam48-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sam48-watermark {
    font-size: 101px;
  }

  .sam48-stats {
    gap: 40px;
  }

  .sam48-stat::after {
    right: -20px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .sam48-info-board {
    padding: 50px 20px;
  }

  .sam48-main-title {
    font-size: 43px;
  }

  .sam48-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sam48-stat::after {
    display: none;
  }

  .sam48-stat-value {
    font-size: 43px;
  }

  .sam48-watermark {
    font-size: 61px;
  }
}
/* 032*/

/* 05 */

.sam07-discover-section {
  width: 100%;
  padding: 80px 16px;
  background-image: url("https://mwpdemo11604.mycafe24.com/syt/theme/sample/img/07.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.sam07-discover-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.sam07-discover-section * {
  box-sizing: border-box;
}

.sam07-discover-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sam07-discover-title {
  font-size: 49px;
  font-weight: 600;
  color: white;
  margin-bottom: 64px;
  letter-spacing: 1px;
}

.sam07-discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sam07-discover-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.sam07-discover-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.sam07-discover-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sam07-discover-card-title {
  font-size: 21px;
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sam07-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #f5c800;
}

.sam07-discover-card-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1200px) {
  .sam07-discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sam07-discover-section {
    padding: 60px 16px;
  }

  .sam07-discover-grid {
    grid-template-columns: 1fr;
  }

  .sam07-discover-title {
    font-size: 33px;
    margin-bottom: 40px;
  }

  .sam07-discover-card {
    min-height: auto;
  }
}

/* 05 */

/* 06*/

.sam26-container {
  background: #ffffff;
  padding: 100px 40px;
}

.sam26-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.sam26-header {
  text-align: center;
  margin-bottom: 70px;
}

.sam26-label {
  font-size: 20px;
  font-weight: 300;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.sam26-main-title {
  font-size: 49px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.sam26-main-title-highlight {
  color: #b8a186;
}

.sam26-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Section - Image */
.sam26-left {
  position: relative;
}

.sam26-image-box {
  position: relative;
  width: 100%;
  padding-bottom: 85%;
  overflow: hidden;
  background: #e5e5e5;
}

.sam26-image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam26-awards-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.sam26-awards-number {
  font-size: 49px;
  font-weight: 300;
  color: #000;
  margin: 0;
  line-height: 1;
}

.sam26-awards-label {
  font-size: 21px;
  font-weight: 600;
  color: #000;
  margin: 5px 0 0 0;
}

/* Right Section - Content */
.sam26-right {
  padding-left: 20px;
}

.sam26-content-title {
  font-size: 41px;
  font-weight: 600;
  color: #000;
  margin: 0 0 25px 0;
  line-height: 1.3;
}

.sam26-content-desc {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin: 0 0 45px 0;
}

.sam26-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}

.sam26-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sam26-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  stroke: #000;
  stroke-width: 1.5;
  fill: none;
}

.sam26-feature-text {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.sam26-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #3d4134;
  color: #fff;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.sam26-cta-btn:hover {
  background: #2d3024;
}

@media (max-width: 1024px) {
  .sam26-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sam26-right {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .sam26-container {
    padding: 60px 20px;
  }

  .sam26-main-title {
    font-size: 37px;
  }

  .sam26-content-title {
    font-size: 29px;
  }

  .sam26-awards-badge {
    bottom: 20px;
    right: 20px;
    padding: 20px 30px;
  }

  .sam26-awards-number {
    font-size: 37px;
  }

  .sam26-awards-label {
    font-size: 20px;
  }
}

/* 06*/

/* 07*/

.sam20-container {
  background: #fcfcfc;
  padding: 80px 40px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
}

.sam20-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.sam20-main-title {
  font-size: 63px;
  font-weight: 700;
  color: #000;
  margin: 0 0 60px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sam20-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.sam20-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 40px 35px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.sam20-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  stroke: #000;
  stroke-width: 1.5;
  fill: none;
}

.sam20-card-content h3 {
  font-size: 23px;
  font-weight: 700;
  color: #000;
  margin: 0 0 12px 0;
}

.sam20-card-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.sam20-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.sam20-sketch {
  position: relative;
  padding-top: 70%;
  background: #fff;
  overflow: hidden;
}

.sam20-sketch img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam20-form-wrapper {
  background: transparent;
}

.sam20-form-intro {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
}

.sam20-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sam20-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sam20-input,
.sam20-select,
.sam20-textarea {
  background: #fff;
  border: 1px solid #ddd;
  padding: 16px 20px;
  font-size: 20px;
  color: #333;
  font-family: inherit;
  transition: border-color 0.3s;
}

.sam20-input:focus,
.sam20-select:focus,
.sam20-textarea:focus {
  outline: none;
  border-color: #999;
}

.sam20-input::placeholder,
.sam20-textarea::placeholder {
  color: #aaa;
}

.sam20-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.sam20-textarea {
  resize: vertical;
  min-height: 120px;
}

.sam20-submit-wrapper {
  display: flex;
  justify-content: flex-end;
}

.sam20-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sam20-submit:hover {
  background: #333;
}

.sam20-submit::after {
  content: "→";
  font-size: 19px;
}

@media (max-width: 1024px) {
  .sam20-info-cards {
    grid-template-columns: 1fr;
  }

  .sam20-bottom-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sam20-container {
    padding: 40px 20px;
  }

  .sam20-main-title {
    font-size: 49px;
  }

  .sam20-form-row {
    grid-template-columns: 1fr;
  }
}

/* 07*/

/* 08*/

/* 08*/

/* 09*/

.sam06-footer {
  width: 100%;
  background: white;
}

.sam06-footer * {
  box-sizing: border-box;
}

/* Top Blue Section */
.sam06-footer-top {
  background: linear-gradient(135deg, #5b9bd5 0%, #70a9e0 100%);
  padding: 32px 16px;
}

.sam06-footer-top-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.sam06-footer-contact {
  display: flex;
  flex-direction: column;
}

.sam06-footer-contact-label {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.sam06-footer-contact-phone {
  color: white;
  font-size: 43px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.sam06-footer-contact-hours {
  color: white;
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Main Footer */
.sam06-footer-main {
  padding: 48px 16px;
  background: white;
}

.sam06-footer-main-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sam06-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.sam06-footer-left {
  flex: 1;
}

.sam06-footer-logo {
  margin-bottom: 24px;
}

.sam06-footer-logo img {
  height: 48px;
}

.sam06-footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.sam06-footer-nav-link {
  color: #1f2937;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sam06-footer-nav-link:hover {
  color: #3b82f6;
}

.sam06-footer-right {
  display: flex;
  gap: 32px;
  align-items: center;
}

.sam06-footer-family {
  position: relative;
}

.sam06-footer-family-select {
  padding: 12px 48px 12px 20px;
  border: 1px solid #d1d5db;
  background: white;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  appearance: none;
  min-width: 200px;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.sam06-footer-social {
  display: flex;
  gap: 12px;
}

.sam06-footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 21px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sam06-footer-social-link:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

.sam06-footer-info {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.8;
}

.sam06-footer-info-row {
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .sam06-footer-top-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sam06-footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .sam06-footer-nav {
    flex-wrap: wrap;
  }

  .sam06-footer-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 09*/


/* ============================================================
   모바일 반응형 수정 (max-width: 768px)
   ============================================================ */

/* ──────────────────────────────────────
   01. 히어로 슬라이더 - 높이 늘리기 + 텍스트 키우기
   [Image 1] 세로 너무 짧고 텍스트 작음
   ────────────────────────────────────── */
@media (max-width: 768px) {
  .dal01-hero-slider {
    height: 85vw;        /* 60vw → 85vw (세로 더 길게) */
    min-height: 420px;   /* 260px → 420px */
  }

  .dal01-text-box {
    width: 88%;
    left: 6%;
    top: 48%;
  }

  .dal01-label {
    font-size: clamp(30px, 8vw, 40px);  /* 32px → clamp 반응형 */
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .dal01-line {
    font-size: clamp(13px, 3.8vw, 16px);  /* 12px → 더 크게 */
    line-height: 1.75;
    margin-bottom: 4px;
  }

  .dal01-yt-btn {
    margin-top: 20px;
    padding: 11px 20px;
    font-size: 14px;
  }
}

/* ──────────────────────────────────────
   02. bz09 "이제는 쓰지 않는 기계" 섹션
   [Image 2] 텍스트 너무 크고 산만함
   ────────────────────────────────────── */
@media (max-width: 768px) {
  .bz09-container {
    flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
  }

  .bz09-left {
    width: 100%;
  }

  .bz09-left img {
    border-radius: 4px;
    max-height: 220px;   /* 이미지 높이 제한 - 텍스트에 공간 확보 */
    object-fit: cover;
  }

  .bz09-title {
    font-size: 20px;        /* 31px → 20px */
    margin-bottom: 14px;
    line-height: 1.45;
  }

  .bz09-description {
    font-size: 14px;        /* 20px → 14px */
    line-height: 1.75;      /* 2 → 1.75 */
    color: #555;
  }

  .bz09-description p {
    margin-bottom: 0.9em;
  }
}

/* ──────────────────────────────────────
   03. sysli 섹션 - 텍스트 위 / 슬라이더 아래 세로 배치
   [Image 3] grid-template-columns: 450px 1fr → 모바일 깨짐
   ────────────────────────────────────── */
@media (max-width: 768px) {
  .sysli-outer {
    padding: 2.5rem 0 2rem;
  }

  .sysli-inner {
    padding: 0 1.2rem;
  }

  .sysli-eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;  /* 0.2em → 0.1em (텍스트 잘림 방지) */
    word-break: break-all;
  }

  .sysli-main-title {
    font-size: 1.35rem;
  }

  /* 핵심: grid → flex 세로 스택 (텍스트 위, 슬라이더 아래) */
  .sysli-body-row {
    display: flex !important;
    flex-direction: column;
    gap: 1.8rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .sysli-text-col {
    gap: 1.4rem;
    width: 100%;
  }

  .sysli-tb h3 {
    font-size: 1rem;
  }

  .sysli-tb p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #777;
  }

  /* 슬라이더 컬럼: 오른쪽 padding 제거, 오버플로 처리 */
  .sysli-slider-col {
    width: 100%;
    padding-right: 0;
    overflow: hidden;
  }

  /* 슬라이더 아이템: 한 번에 1개씩 표시 (100%) */
  .sysli-slide {
    flex: 0 0 100% !important;
  }

  .sysli-ctrl-row {
    padding-right: 0;
    margin-top: 0.8rem;
  }

  .sysli-gold-rule {
    margin: 1.2rem 0 1.5rem;
  }
}

/* ──────────────────────────────────────
   04. sy-banner "DELIVERY SERVICE" 타이틀
   [Image 2] 글자 줄바꿈으로 E 혼자 내려옴
   ────────────────────────────────────── */
@media (max-width: 768px) {
  .sy-banner {
    padding: 36px 20px;
  }

  .sy-banner-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sy-banner-title {
    font-size: clamp(20px, 5.5vw, 28px);  /* 37px → 모바일 맞게 축소 */
    letter-spacing: 0.01em;               /* 자간 줄여 줄바꿈 방지 */
    line-height: 1.2;
  }

  .sy-banner-text {
    font-size: 15px;   /* 20px → 15px */
    line-height: 1.6;
  }
}

/* ──────────────────────────────────────
   05. sam07 "Why Choose Us" 카드 섹션
   [Image 1] 카드 텍스트 너무 크고 두꺼움
   ────────────────────────────────────── */
@media (max-width: 768px) {
  .sam07-discover-section {
    padding: 50px 16px;
    background-attachment: scroll;  /* 모바일 fixed 패럴랙스 성능 이슈 방지 */
  }

  .sam07-discover-title {
    font-size: 26px;        /* 33px → 26px - 다른 섹션 타이틀과 통일 */
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .sam07-discover-grid {
    grid-template-columns: 1fr;
    gap: 14px;              /* 24px → 14px 카드 간격 좁게 */
  }

  .sam07-discover-card {
    padding: 20px 18px;    /* 32px 24px → 더 컴팩트하게 */
    min-height: auto;
  }

  .sam07-discover-card-title {
    font-size: 15px;        /* 21px → 15px */
    margin-bottom: 8px;
    gap: 8px;
  }

  .sam07-icon {
    width: 17px;
    height: 17px;
  }

  .sam07-discover-card-desc {
    font-size: 13px;        /* 20px → 13px - bz09 섹션과 동일 수준 */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
  }
}
