.brand-strength-section1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: left;
    color: white;
}

/* ✅ 공통 이미지 스타일: 마치 background-size: cover 처럼 보이게 */
.brand-strength-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 핵심: cover 방식으로 배경처럼 */
    z-index: 0;
    display: block;
}

.brand-strength-section1-inner {
    position: relative; /* 텍스트가 오버레이 위로 올라오도록 */
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 50px 120px;
}

.brand-strength-title {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -2.2px;
}

.brand-strength-subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}


.brand-strength-section2 {
    background-color: #FFF6EC;
    padding: 100px 20px 10px;
    text-align: center;
}

.brand-strength-section2-inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* 2) 흰 카드(wrapper) 스타일 + 위로 살짝 올려서 겹침 */
.brand-strength-section2-card {
    position: relative;
    top: -180px; /* 겹침 높이 (디자인에 맞춰 조절) */
    margin: 0 auto; /* 가로 중앙 정렬 */
    max-width: 1440px; /* 콘텐츠 폭 제한 */
    background: #ffffff; /* 카드 배경 */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 100px 100px; /* 기존 패딩 그대로 */
    z-index: 2; /* 아래 섹션 위로 올라오도록 */
}


.brand-strength-section2-title,
.brand-strength-section3-title,
.brand-strength-section5-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brand-strength-section2-subtitle,
.brand-strength-section3-subtitle,
.brand-strength-section4-subtitle,
.brand-strength-section5-subtitle {
    display: inline-block;
    background-color: #ffe478;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 10px;
}

/* ─── 3개 아이템 가로 배치 ───────────────────────── */
.brand-strength-section2-features {
    display: flex;
    justify-content: space-between;
    gap: 120px;
    padding: 40px 0;
}

/* 각 feature-item 을 상대위치로 잡아두고 */
.brand-strength-section2-features .feature-item {
    position: relative;
}

/* 두 번째 아이템부터 왼쪽에 separator 삽입 */
.brand-strength-section2-features .feature-item + .feature-item::before {
    content: "";
    position: absolute;
    /* 세로 길이를 높이의 50% 정도로, 중앙에 배치 */
    height: 70px;
    width: 1px;
    background-color: #BEC4CA;
    top: 50%;
    transform: translateY(-50%);
    /* gap 의 절반만큼 왼쪽으로 */
    left: calc(-1 * (120px / 2));
}

/* ─── 각 아이템 공통 ───────────────────────── */
.feature-item {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 회색 배경의 아이콘 박스 */
.feature-icon {
    width: 83px; /* 원하는 정사각 사이즈로 조정 */
    height: 83px;
    background-color: #f2f2f2; /* 연한 회색 */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px; /* 아이콘과 제목 간 간격 */
}

/* 아이콘 크기 고정 */
.feature-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* 아이템 제목 */
.feature-title {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin: 0 0 30px;
}

/* 아이템 설명 */
.feature-desc {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin: 0;
}


.brand-strength-section3 {
    background-color: #fff;
    padding: 100px 20px 10px;
    text-align: center;
}

.brand-strength-section3-inner {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.brand-strength-section3-card {
    position: relative;
    margin: 0 auto;
    max-width: 1440px;
    background: #ffffff;
    border-radius: 12px;
    padding: 80px 60px;
    z-index: 2;
}


.section3-price-compare {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 80px 100px;
    flex-wrap: wrap;
}

.compare-item {
    text-align: center;
    flex: 1 1 150px;
    min-width: 150px;
}

.compare-label {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    margin-bottom: 10px;
}

.compare-price {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

.compare-price.gray {
    color: #939393;
}

.compare-price.red {
    color: #E40000;
}

.compare-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 10px;
}

/* 구분선 스타일 */
.compare-divider {
    width: 1px;
    height: 60px;
    background-color: #ccc;
}

.section3-sales {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
    max-width: 986px;
    margin: 0 auto;
    font-family: 'Pretendard', sans-serif;
    text-align: left; /* (1) 왼쪽 정렬 */
}

.sales-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.sales-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%; /* (2) 박스 너비 맞춤 */
}

.sales-controls select,
.sales-controls .date-range,
.sales-controls .btn-search {
    height: 40px;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.sales-controls select,
.sales-controls .date-range {
    border: 1px solid #ccc;
    background: #fff;
    flex: 1;
    min-width: 150px;
}

.sales-controls .btn-search {
    background-color: #0099ff;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
}

.sales-summary {
    background-color: #F9FAFB;
    border-radius: 5px;
    padding: 20px;
    margin-top: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    padding: 8px 0;
}

.summary-row .bold {
    font-weight: 700;
    color: #000;
}

.summary-row .small {
    font-size: 16px;
    font-weight: 600;
}

.summary-row .highlight {
    font-size: 20px;
    font-weight: 600;
    color: #f10000;
}

.summary-divider.dotted {
    border-bottom: 1px dashed #ccc; /* (3) 점선으로 변경 */
    margin: 10px 0;
}

.sales-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    text-align: right;
    max-width: 986px;
    margin-left: auto;
    margin-right: auto;
}


.brand-strength-section4 {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.brand-strength-section4-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: -1px;
}

.section4-bg {
    background: linear-gradient(rgba(95, 58, 0, 0.6), rgba(95, 58, 0, 0.6)),
    url("../img/new/strength/strength_section4_bg.png") center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
}

.brand-strength-section4-inner {
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 2;
}

.section4-note {
    font-size: 13px;
    color: #ddd;
    margin-bottom: 40px;
    text-align: right;
    padding: 0 20px;
}

.embla {
    overflow: hidden;
    width: 100vw;
    margin-bottom: 20px;
}

.embla__container {
    display: flex;
}

.embla__slide {
    flex: 0 0 auto;
    width: 350px;
}

/* 대신 래퍼에 padding-left: half 카드 너비 + gap/2 */
.embla-bottom {
    padding-left: calc(320px / 2 + 10px);
    overflow: visible; /* 클론 슬라이드까지 보이도록 */
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    background: #fff;
    color: #000;
    border-radius: 15px;
    padding: 20px;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Pretendard', sans-serif;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.stars {
    color: #ffbb00;
    font-size: 16px;
}

.review-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    background: #F0F0F0;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.review-location {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
}


.brand-strength-section5 {
    padding: 100px 20px;
    background-color: #FFF6EC;
}

.brand-strength-section5-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    gap: 40px;
}

.section5-content {
    flex: 1;
}

.section5-circles {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    padding: 80px 0;
    /* overlap 조정을 위해 개별 마진 없음 */
}

/* 각 circle을 겹치도록 margin 조정 및 z-index 부여 */
.circle {
    position: relative;
    width: 200px;
    height: 200px;
    border: 2px solid #BEC4CA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px;
}

.circle-primary {
    margin-right: -20px;
    z-index: 1;
}

.circle-secondary {
    margin-right: -20px;
    z-index: 2;
}

.circle-highlight {
    background-color: #f97316;
    color: #fff;
    border: none;
    z-index: 3;
    /* 첫 두 개 위로 올라오도록 */
}

.circle {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border: 2px solid #787878;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px;
}

.circle-primary,
.circle-secondary {
    color: #000;
}

.circle-highlight {
    background-color: #FF8739;
    color: #fff;
    border: none;
}

.section5-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
}
