html {
  width:100vw;
}
:root {
    --toss-blue: #3182f6;
    --toss-blue-dark: #1b64da;
    --light-gray: #f9fafc;
    --mid-gray: #e6e6e9;
    --light-blue: #E5F6FF;
    --text-color: #191f28;
    --text-gray: #8b95a1;
    --border-gray: #e5e8eb;
    --baemin-green: #2AC1BC;
    --baemin-green-dark: #24A19E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;

}

body {
    background-color: white;
    color: var(--text-color);
    line-height: 1.5;

    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Header */
header {
    padding: 20px 0;
    text-align: center;
}

.title {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
    word-break: keep-all;
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
}

.subtitle {
    font-size: 16px;
    color: var(--text-gray);
    word-break: keep-all;
}

/* Section Styles */
.section {
    margin-bottom: 120px;
}

.section-title {
    font-size: 22px;
    margin-bottom: 20px;
    word-break: keep-all;
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
}

/* Card Styles */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.card {
    background-color: var(--light-gray);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: #fff;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.card:hover {
    transform: translateY(-4px);
}

.card-number {
    display: inline-block;
    background-color: var(--baemin-green);
    color: white;
    font-size: 14px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 22px;
    margin-bottom: 8px;
    word-break: keep-all;
    position: relative;
    z-index: 2;
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
}

.card-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    word-break: keep-all;
    position: relative;
    z-index: 2;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


.card-new {
    background-color: var(--light-blue);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 128px;
    height: 128px;
    margin-bottom: 16px;
}

.card-new .card-number {
    position: absolute;
    top: 12px;
    left: 12px;
}

.card-new .card-title {
    color: var(--text-color);
    margin-top: 8px;
}

.card-new .card-description {
    color: var(--text-gray);
    margin-top: 8px;
}

/* FAQ Section */
.faq-list {
    list-style: none;
}

.faq-item {
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
}

.faq-question {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'BMHANNAPro', sans-serif;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-gray);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-gray);
    padding-top: 8px;
    display: none;
    word-break: keep-all;
    font-family: 'SUIT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 배너 이미지 */
.banner-container {
    margin: 40px 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}


.apply-button {
    position: fixed;
    display: block;
    width: 100%;

    background-color: var(--baemin-green);
    color: white;
    border: none;
    padding: 16px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: 'BMHANNAPro', sans-serif;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 100;
    bottom: 0px;
    height: 72px;
    font-size: 22px;

}

.apply-button:hover {
    background-color: var(--baemin-green-dark);
}

/* 탑바 스타일 */
.topbar {
    position: sticky;
    top: 0;
    background-color: white;
    border-bottom: 1px solid var(--border-gray);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    height: 40px;
}

.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

/* 푸터 스타일 */
footer {
    background-color: var(--light-gray);
    padding: 40px 20px 120px 20px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 20px;
}

.footer-info {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: var(--text-gray);
}

/* 강조 텍스트 스타일 */
.highlight {
    color: var(--baemin-green);
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
}

/* 주의사항 스타일 */
.notice {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.notice-title {
    margin-bottom: 10px;
}

.notice-list {
    list-style: none;
}

.notice-item {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-gray);
}

.notice-item::before {
    content: '•';
    position: absolute;
    left: 0;
}

    /* 슬라이더 컨테이너 */
.slider-section {
margin: 40px 0;
position: relative;
}

.slider-container {
width: 100%;
overflow: hidden;
position: relative;
border-radius: 16px;
margin-bottom: 20px;
}

.slider-wrapper {
display: flex;
transition: transform 0.3s ease;
}

/* 슬라이더 카드 스타일 */
.slider-card {
flex: 0 0 calc(100% - 20px);
margin: 0 10px;
background-color: var(--light-gray);
border-radius: 16px;
padding: 24px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.slider-card-image {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 16px;
}

.slider-card-title {
font-size: 18px;
margin-bottom: 8px;
color: var(--text-color);
font-family: 'BMHANNAPro', sans-serif;
font-weight: 100;
}

.slider-card-description {
font-size: 14px;
color: var(--text-gray);
word-break: keep-all;
}

/* 슬라이더 버튼 */
.slider-controls {
display: flex;
justify-content: flex-end;
margin-top: 16px;
}

.slider-button {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: var(--baemin-green);
color: white;
border: none;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
margin-left: 8px;
}

.slider-button:hover {
background-color: var(--baemin-green-dark);
}

.slider-button:disabled {
background-color: var(--border-gray);
cursor: not-allowed;
}

/* 슬라이더 페이지네이션 */
.slider-pagination {
display: flex;
justify-content: center;
margin-top: 16px;
}

.slider-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--border-gray);
margin: 0 4px;
cursor: pointer;
transition: background-color 0.2s;
}

.slider-dot.active {
background-color: var(--baemin-green);
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 16px;
margin-bottom: 40px;
}

.benefit-card {
text-align: center;
background-color: #FFF;
border-radius: 16px;
padding: 24px;
transition: transform 0.2s, box-shadow 0.2s;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-image {
margin-bottom: 16px;
width:auto;
}

.benefit-label {
color: #ff6b6b;
font-size: 18px;
margin-bottom: 8px;
}

.benefit-title {
font-size: 20px;
margin-bottom: 12px;
font-family: 'BMHANNAPro', sans-serif;
font-weight: 100;
}

.benefit-description {
    color: #8b95a1;
    font-size: 14px;
}
/* 링크의 파란색과 밑줄을 제거하는 CSS 수정 */
.faq-linkbtn {
    color: inherit !important; /* 부모 텍스트 색상 사용 */
    text-decoration: none !important; /* 밑줄 제거 */
    /* 기존 디자인 유지 */
    padding: 12px;
    background: var(--light-gray);
    border-radius: 12px;
    font-weight: 500;
    display: inline-block;
  }
  
  /* 호버 효과 */
  .faq-linkbtn:hover {
    background-color: #e5e5e5; /* 호버 시 배경색 약간 어둡게 */
    color: var(--baemin-green) !important; /* 호버 시 배민 그린 색상으로 변경 */
  }

/* 익일정산 비교 테이블 스타일 */
.payment-comparison {
    background-color: var(--light-gray);
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
  }
  
  .comparison-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
  }
  
  .comparison-table {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .comparison-row {
    display: table-row;
  }
  
  .comparison-row.header {
    background-color: #f5f5f5;
  }
  
  .comparison-cell {
    display: table-cell;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    background-color: white;
  }
  
  .comparison-row:last-child .comparison-cell {
    border-bottom: none;
  }
  
  .comparison-cell.feature {
    width: 30%;
    font-weight: 500;
    text-align: left;
  }
  
  .comparison-cell.baemin {
    background-color: var(--light-blue);
    font-weight: 500;

  }
  
  .comparison-cell.competitor {
    background-color: #f9f9f9;

  }
  
  .highlight-text {
    color: var(--baemin-green);
    font-weight: bold;
    font-size: 18px;
    margin-right: 4px;
  }
  
  .normal-text {
    color: var(--text-gray);
    font-size: 18px;
    margin-right: 4px;
  }
  
  .days-tag {
    display: inline-block;
    background-color: var(--baemin-green);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 18px;
  }
  
  .days-tag.slow {
    background-color: var(--text-gray);
  }
  
  .check-icon {
    color: var(--baemin-green);
    font-size: 20px;
    margin-right: 5px;
  }
  
  .x-icon {
    color: var(--text-gray);
    font-size: 20px;
    margin-right: 5px;
  }
  
  .comparison-footer {
    margin-top: 10px;
    text-align: right;
    font-size: 12px;
    color: var(--text-gray);
  }
  
  .logobadge {
    color: #fff;
    background:#000;
    padding:4px 8px;
    border-radius:100px;
    font-weight:700;
    font-size:18px;
    margin-right: 4px;
  }

/* 공식 협력사 섹션 스타일 */

.official-partner-section-wrap {
    background-color: var(--mid-gray);
    padding: 40px 0;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

}


.official-partner-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mini-wrap {
  text-align: center;
  max-width: 720px;
  width: calc(100% - 56px);

}

.official-badge {
    display: inline-block;
    background-color: var(--baemin-green);
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.official-title {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: 'BMHANNAPro', sans-serif;
    font-weight: 100;
}

.official-description {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 20px;
    word-break: keep-all;
}

.certificate-image {
    max-width: 200px;
    margin: 0 auto 20px;
    display: block;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.trust-point {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    flex: 1 1 calc(50% - 16px);
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-point-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.trust-point-description {
    font-size: 14px;
    color: var(--text-gray);
}
/* 반응형 디자인 */
@media (max-width: 576px) {
    .comparison-cell {
        padding: 12px 8px;
    }

    .highlight-text, .normal-text {
      font-size: 16px;
    }

    .trust-points {
      flex-direction: column;
    }
    
    .trust-point {
      flex: 1 1 100%;
    }
    .mini-wrap{
      width: calc(100% - 40px);
    }
}
/* 모바일 반응형 스타일 (500px 이하) */
@media (max-width: 500px) {
    /* 테이블 레이아웃 변경 */
    .comparison-table {
      display: block;
      box-shadow: none;
    }
    
    .comparison-row {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 12px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }
    
    .comparison-row.header {
      display: flex;
      background-color: transparent;
      box-shadow: none;
    }
    
    .comparison-cell {
      flex: 1 1 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 12px 8px;
      border-bottom: none;
    }
    
    /* 헤더 셀 스타일 변경 */
    .comparison-row.header .comparison-cell:first-child {
      display: none; /* 첫 번째 빈 셀 숨김 */
    }
    
    .comparison-row.header .comparison-cell {
      background-color: #f5f5f5;
      border-radius: 8px;
      margin-bottom: 6px;
      font-weight: 600;
      flex: 1 1 48%;
      margin-right: 2%;
    }
    
    .comparison-row.header .comparison-cell:last-child {
      margin-right: 0;
    }
    
    /* 특성 셀 스타일 */
    .comparison-cell.feature {
      width: 100%;
      text-align: center;
      background-color: #f5f5f5;
      border-radius: 8px 8px 0 0;
      font-weight: 600;
    }
    
    /* 배민/경쟁사 셀 스타일 */
    .comparison-cell.baemin {
      flex: 1 1 48%;
      border-radius: 0 0 0px 8px;
    }
    .comparison-cell.baemin,
    .comparison-cell.competitor {
      flex: 1 1 48%;
      border-radius: 0 0 8px 8px;
    }
    
    /* 텍스트 크기 조정 */
    .highlight-text, .normal-text {
      font-size: 16px;
    }
    
    .days-tag {
      font-size: 14px;
      padding: 3px 10px;
      margin-top: 6px;
    }
    
    /* 배지 스타일 조정 */
    .comparison-row.header .comparison-cell span {
      font-size: 10px;
      padding: 2px 4px;
    }
    
    /* 셀 내부 컨텐츠 배치 조정 */
    .comparison-cell.baemin, 
    .comparison-cell.competitor {
      flex-direction: column;
    }
    
    /* 테이블 여백 조정 */
    .payment-comparison {
      padding: 16px;
      margin: 20px 0;
    }
    
    .comparison-title {
      font-size: 18px;
      margin-bottom: 16px;
    }
  }
@media (min-width: 576px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .apply-button {
        max-width: 720px;
        border-radius: 20px;
        bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        height: 68px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-card {
        flex: 0 0 calc(50% - 20px);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* Responsive */
@media (max-width: 680px) {

    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}