/* ==================================================================
   서울꽈배기 메인
   - 색상: --main-orange / --main-brown 만 base :root 사용, 그 외는 각 클래스에 직접 기입
   - 1132px 컨테이너는 공용 .inner 재사용
   ================================================================== */

/* =================================== 공용 =================================== */
.sec_hero,
.sec_brand,
.sec_strength,
.sec_profit,
.sec_invest,
.sec_process,
.sec_contact {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sec_brand,
.sec_strength,
.sec_profit,
.sec_invest,
.sec_process,
.sec_contact {
    padding: clamp(56px, 6.2vw, 100px) 0;
}

.sec_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.sec_eyebrow {
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--main-orange);
}

.sec_title {
    display: flex;
    flex-direction: column;
    font-size: clamp(24px, 3.1vw, 48px);
    font-weight: 700;
    line-height: 1.36;
    color: #000000;
    word-break: keep-all;
}

/* 한글이 어절 중간에서 끊기지 않도록 */
.hero_title,
.hero_sub,
.brand_desc,
.brand_menu_title,
.menu_name,
.strength_name,
.strength_desc,
.profit_lead,
.profit_stat_desc,
.profit_note,
.invest_desc,
.invest_check li,
.invest_item,
.process_name,
.process_desc,
.branch_name,
.contact_desc {
    word-break: keep-all;
}

.sec_title.center {
    align-items: center;
    text-align: center;
}

.sec_title.white {
    color: #ffffff;
}

.sec_title.brown {
    color: var(--main-brown);
}

.sec_title em {
    font-style: normal;
    font-weight: 800;
    color: var(--main-orange);
}

/* =================================== 1. HERO =================================== */
.sec_hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(460px, 41vw, 781px);
}

.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/app_www/main/img/bg_store.png') right 30% center / cover no-repeat;
}

.hero_inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 1.6vw, 24px);
    padding-top: 70px;
    text-align: center;
}

.hero_sub {
    font-size: clamp(15px, 1.9vw, 30px);
    font-weight: 500;
    line-height: 1.4;
    color: #e7d4ba;
}

.hero_title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: clamp(30px, 4.3vw, 66px);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.hero_title .point {
    color: var(--main-orange);
}

/* =================================== 2. 상담 바 (하단 고정) =================================== */
.sec_consult {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 150;
    width: 100%;
    padding: 14px 0;
    background: var(--main-brown);
    box-shadow: 0 -4px 10px rgba(26, 9, 0, .2);
}

.consult_inner {
    max-width: 1420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.consult_call {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.consult_call_label {
    font-size: clamp(16px, 1.2vw, 22px);
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.consult_call_num {
    font-size: clamp(17px, 1.3vw, 24px);
    font-weight: 900;
    color: var(--main-orange);
    white-space: nowrap;
}

.consult_form_area {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    min-width: 0;
}

.consult_inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.consult_input {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #eae0d5;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
    color: #222222;
}

.consult_input::placeholder {
    color: #757575;
}

.consult_input:focus {
    outline: none;
    border-color: var(--main-orange);
}

.consult_agree {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.consult_agree .edk_WAI.checkbox+label,
.consult_agree .consult_agree_link {
    padding-left: 0;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.consult_agree .edk_WAI.checkbox+label {
    padding-left: 24px;
}

.consult_agree .consult_agree_link {
    text-decoration: underline;
}

/* 어두운 배경용 체크박스 (흰 박스 + 오렌지 체크) */
.consult_agree .edk_WAI.checkbox+label::before,
.contact_agree .edk_WAI.checkbox+label::before {
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #767676;
    border-radius: 2.5px;
    background: #ffffff;
}

.consult_agree .edk_WAI.checkbox:checked+label::before,
.contact_agree .edk_WAI.checkbox:checked+label::before {
    border-color: var(--main-orange);
    background: var(--main-orange);
}

.consult_agree .edk_WAI.checkbox+label::after,
.contact_agree .edk_WAI.checkbox+label::after {
    content: "";
    position: absolute;
    top: 38%;
    left: 6px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg) translateY(-50%);
}

.consult_agree .edk_WAI.checkbox:checked+label::after,
.contact_agree .edk_WAI.checkbox:checked+label::after {
    opacity: 1;
}

/* 모바일 접기 토글 (1100px 이하에서만 노출) */
.consult_toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
}

.consult_toggle i {
    transition: transform .25s ease;
}

.sec_consult:not(.is_folded) .consult_toggle i {
    transform: rotate(180deg);
}

.consult_action {
    flex-shrink: 0;
}

.consult_btn {
    width: 132px;
    height: 45px;
    border-radius: 8px;
    background: var(--main-orange);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
    transition: filter .2s ease;
}

.consult_btn:hover {
    filter: brightness(1.08);
}

/* =================================== 3. 브랜드 스토리 =================================== */
.sec_brand {
    background: #ffffff;
}

.brand_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.brand_text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 575px;
    max-width: 100%;
}

.brand_text .sec_title {
    margin-bottom: 6px;
}

.brand_desc {
    font-size: clamp(15px, 1.3vw, 20px);
    line-height: 1.5;
    color: #555555;
}

.brand_img {
    width: 486px;
    max-width: 100%;
    height: 363px;
    border-radius: 14px;
    overflow: hidden;
    background: #fffbf3;
    flex-shrink: 0;
}

.brand_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------- 대표메뉴 --------------------------------- */
.brand_menu {
    margin-top: clamp(40px, 4.4vw, 70px);
}

.brand_menu_title {
    font-size: clamp(22px, 2.3vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
}

.menu_slider {
    position: relative;
    margin-top: 24px;
}

.menu_swiper {
    width: 100%;
    overflow: hidden;
}

.menu_item {
    width: 206px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    height: auto;
}

.menu_thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    border: 1px solid #dfdddb;
    border-radius: 14px;
    background: #fffbf3;
    overflow: hidden;
}

.menu_thumb span {
    font-size: 18px;
    color: #959595;
}

.menu_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu_name {
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    text-align: center;
}

.menu_nav {
    position: absolute;
    top: 75px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5ded3;
    font-size: 24px;
    color: #362022;
    transform: translateY(-50%);
    transition: background-color .2s ease, color .2s ease;
}

.menu_nav:hover {
    background: var(--main-orange);
    border-color: var(--main-orange);
    color: #ffffff;
}

.menu_nav.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

.menu_prev {
    left: -52px;
}

.menu_next {
    right: -52px;
}

/* =================================== 4. 경쟁력 =================================== */
.sec_strength {
    background: #fbf6ec;
}

.sec_strength::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/app_www/main/img/bg_landscape.png') center center / cover no-repeat;
    opacity: .7;
    pointer-events: none;
}

.sec_strength>.inner {
    position: relative;
    z-index: 1;
}

.strength_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: clamp(36px, 4.4vw, 70px);
}

.strength_card {
    border-radius: 14px;
    background: #fefdfa;
    overflow: hidden;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, .08));
}

.strength_thumb {
    width: 100%;
    height: 206px;
    overflow: hidden;
}

.strength_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength_body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.strength_num {
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--main-orange);
}

.strength_name {
    margin-top: 16px;
    font-size: clamp(19px, 1.6vw, 24px);
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
}

.strength_desc {
    margin-top: 18px;
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 500;
    line-height: 1.56;
    color: #555555;
}

/* =================================== 5. 수익성 =================================== */
.sec_profit {
    background: #3b2d27;
}

.profit_lead {
    margin-top: 2px;
    font-size: clamp(15px, 1.3vw, 20px);
    line-height: 1.5;
    color: #f3d9c8;
}

.profit_stat_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: clamp(34px, 3.3vw, 50px);
}

.profit_stat {
    padding: 35px 27px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    text-align: center;
}

.profit_stat_cap {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--main-orange);
}

.profit_stat_big {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-top: 7px;
    font-size: clamp(34px, 3.1vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.profit_stat_big em {
    font-style: normal;
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 800;
    line-height: 1.5;
}

.profit_stat_desc {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #e7c6b6;
}

.profit_sim {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    padding: 34px 32px 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
}

.profit_sim_title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #ffc61a;
    text-align: center;
}

.sim_row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sim_lbl {
    width: 110px;
    flex-shrink: 0;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 700;
    line-height: 1.6;
    color: #ffffff;
}

.sim_track {
    flex: 1;
    min-width: 0;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.sim_fill {
    display: flex;
    align-items: center;
    width: 0;
    height: 100%;
    padding: 0 12px;
    border-radius: 8px;
    transition: width 1.1s cubic-bezier(.22, .61, .36, 1);
}

.sim_fill span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    white-space: nowrap;
}

.sim_fill_total {
    background: linear-gradient(90deg, #f26a1b 0%, #ffc61a 100%);
}

.sim_fill_total span {
    color: #5a1810;
}

.sim_fill_material,
.sim_fill_rent,
.sim_fill_labor {
    background: rgba(255, 255, 255, .22);
}

.sim_fill_profit {
    background: #5a2c14;
}

.sim_fill_material span,
.sim_fill_rent span,
.sim_fill_labor span,
.sim_fill_profit span {
    color: #ffffff;
}

.profit_sim.is_active .sim_fill_total {
    width: 100%;
}

.profit_sim.is_active .sim_fill_material {
    width: 31.4%;
}

.profit_sim.is_active .sim_fill_rent {
    width: 15.3%;
}

.profit_sim.is_active .sim_fill_labor {
    width: 13.5%;
}

.profit_sim.is_active .sim_fill_profit {
    width: 29.6%;
}

.profit_note {
    margin-top: 24px;
    font-size: clamp(12px, 1.1vw, 16px);
    line-height: 1.5;
    color: #d9b7a6;
    text-align: center;
}

/* =================================== 6. 창업비용 =================================== */
.sec_invest {
    background: #2e1e17;
}

.invest_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/app_www/main/img/bg_donuts.png') center center / cover no-repeat;
    opacity: .4;
}

.invest_bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
}

.invest_inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.invest_text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.invest_desc {
    margin-top: 2px;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.5;
    color: rgba(251, 246, 236, .78);
}

.invest_check {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.invest_check li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(14px, 1.1vw, 16px);
    color: #ffffff;
}

.invest_check_ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--main-brown);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    /* 길면 두 개가 같이 켜진 것처럼 뭉개져서 짧게 */
    transition: background-color .18s ease, color .18s ease;
}

.invest_check_ico.on {
    background: var(--main-orange);
    color: #ffffff;
}

/* --------------------------------- 비용 카드 --------------------------------- */
.invest_card {
    width: 475px;
    max-width: 100%;
    flex-shrink: 0;
    padding: 34px 32px 30px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 12px rgba(0, 0, 0, .06);
}

.invest_card_title {
    padding-bottom: 16px;
    border-bottom: 2px solid #2b2b2b;
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 700;
    color: #000000;
    text-align: center;
}

.invest_table {
    padding-top: 6px;
}

.invest_table li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0 10px;
    border-bottom: 1px dashed #d8ccb8;
}

.invest_table li:last-child {
    border-bottom: none;
}

.invest_item {
    font-size: clamp(13px, 1.05vw, 14.5px);
    color: #3a3a3a;
}

.invest_price {
    font-size: clamp(13px, 1.05vw, 14.5px);
    font-weight: 500;
    color: #000000;
    text-align: right;
    white-space: nowrap;
}

.invest_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding: 14px 16px;
    border-top: 1px dashed #b9ab92;
    border-radius: 14px;
    background: var(--main-orange);
}

.invest_total_label {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.invest_total_price {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.invest_total_price b {
    margin-right: 6px;
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 700;
}

/* =================================== 7. 가맹절차 =================================== */
.sec_process {
    background: #f6f1e9;
}

.process_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: clamp(34px, 3.3vw, 50px);
}

.process_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 0 10px rgba(0, 0, 0, .08);
    text-align: center;
}

.process_ico {
    width: 124px;
    height: 97px;
}

.process_ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process_step {
    margin-top: 24px;
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--main-orange);
}

.process_name {
    margin-top: 9px;
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.process_desc {
    margin-top: 17px;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 500;
    line-height: 1.56;
    color: rgba(0, 0, 0, .6);
}

/* =================================== 8. 가맹현황 / 문의 =================================== */
.sec_contact {
    background: #fffcf6;
}

.contact_inner {
    max-width: 1112px;
}

.branch_head {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --------------------------------- 지점 흐르는 슬라이드 --------------------------------- */
.branch_marquee {
    width: 100%;
    margin-top: clamp(32px, 3.3vw, 50px);
    overflow: hidden;
}

/* Swiper 가 간격(spaceBetween)과 이동을 담당하므로 gap/width 는 두지 않는다 */
.branch_list {
    display: flex;
}

/* 흐를 때만 등속 (기본 ease 면 슬라이드마다 끊겨 보인다) */
.branch_marquee.is_flowing .swiper-wrapper {
    transition-timing-function: linear;
}

.branch_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 200px;
    flex-shrink: 0;
}

.branch_thumb {
    width: 100%;
    aspect-ratio: 200 / 158;
    border: 1px solid #d1cdc8;
    border-radius: 14px;
    background: #fffbf3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch_thumb span {
    font-size: 18px;
    color: #959595;
}

.branch_name {
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.45;
    color: #000000;
    text-align: center;
}

.contact_divider {
    width: 100%;
    height: 1px;
    margin: clamp(46px, 5.2vw, 80px) 0;
    background: #e3ddd2;
}

.contact_body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.contact_text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 513px;
    max-width: 100%;
}

.contact_desc {
    margin-top: 2px;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.5;
    color: #555555;
}

.contact_hotline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.contact_hotline_ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--main-brown);
    font-size: 22px;
    color: #ffffff;
}

.contact_hotline_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact_hotline_text em {
    font-style: normal;
    font-size: 14px;
    color: #555555;
}

.contact_hotline_text a {
    font-size: clamp(20px, 1.6vw, 24px);
    font-weight: 700;
    color: #000000;
}

/* --------------------------------- 문의 폼 --------------------------------- */
.contact_form_card {
    width: 475px;
    max-width: 100%;
    flex-shrink: 0;
}

.contact_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
}

.contact_field>label {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.6;
    color: #000000;
}

.contact_field>label em {
    font-style: normal;
    font-weight: 700;
    color: var(--main-orange);
}

.contact_input {
    width: 100%;
    padding: 13px 16px 16px;
    border: none;
    border-bottom: 1px solid #908d8a;
    background: transparent;
    font-size: 16px;
    color: #222222;
}

.contact_input::placeholder {
    color: #757575;
}

.contact_input:focus {
    outline: none;
    border-bottom-color: var(--main-orange);
}

.contact_radio {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 4px 0;
}

.contact_radio .edk_WAI.radio+label {
    padding-left: 26px;
    font-size: 16px;
    color: #000000;
}

.contact_radio .edk_WAI.radio+label::before {
    width: 20px;
    height: 20px;
}

.contact_agree {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0 18px;
}

.contact_agree .edk_WAI.checkbox+label {
    flex: 1;
    min-width: 0;
    padding-left: 26px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b5545;
}

.contact_agree_link {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--main-orange);
    text-decoration: underline;
}

.contact_submit {
    width: 100%;
    padding: 21px 17px 19px;
    border-radius: 8px;
    background: var(--main-orange);
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    transition: filter .2s ease;
}

.contact_submit:hover {
    filter: brightness(1.08);
}

/* =================================== 스크롤 등장 =================================== */
.count_up {
    display: inline-block;
    min-width: 1ch;
}

/* ==================================================================
   RESPONSIVE
   iPhone SE(375px) ~ Galaxy Fold 펼침(717px+) 전 구간 대응
   ================================================================== */

/* --------------------------------- ~1280px --------------------------------- */
@media (max-width: 1280px) {
    .menu_prev {
        left: 4px;
    }

    .menu_next {
        right: 4px;
    }

    .menu_nav {
        box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    }
}

/* --------------------------------- ~1100px --------------------------------- */
@media (max-width: 1100px) {
    .consult_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* 접기 토글 노출 + 접힘 상태에서 폼/버튼 숨김 */
    .consult_toggle {
        display: inline-flex;
    }

    .consult_call {
        flex: 1;
        min-width: 0;
    }

    .sec_consult.is_folded .consult_form_area,
    .sec_consult.is_folded .consult_action {
        display: none;
    }

    .consult_form_area {
        order: 3;
        width: 100%;
        flex: none;
        flex-wrap: wrap;
        gap: 10px;
    }

    .consult_inputs {
        width: 100%;
        flex: none;
        flex-wrap: wrap;
        gap: 8px;
    }

    .consult_input {
        width: calc(50% - 4px);
        flex: none;
    }

    .consult_agree {
        width: 100%;
        justify-content: center;
    }

    .consult_action {
        order: 4;
        width: 100%;
    }

    .consult_btn {
        width: 100%;
    }

    .strength_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .process_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .branch_item {
        width: 190px;
    }
}

/* --------------------------------- ~900px --------------------------------- */
@media (max-width: 900px) {
    .brand_top {
        flex-direction: column;
        gap: 30px;
    }

    .brand_img {
        width: 100%;
        height: clamp(200px, 46vw, 363px);
    }

    .invest_inner {
        flex-direction: column;
        align-items: stretch;
        gap: 34px;
    }

    .invest_card {
        width: 100%;
    }

    .contact_body {
        flex-direction: column;
        gap: 34px;
    }

    .contact_text,
    .contact_form_card {
        width: 100%;
    }

    .profit_stat_grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .profit_stat {
        padding: 24px 20px;
    }
}

/* --------------------------------- ~717px (폴드 펼침 이하) --------------------------------- */
@media (max-width: 717px) {
    .sec_hero {
        min-height: 420px;
    }

    .hero_inner {
        padding-top: 58px;
    }

    .hero_title {
        line-height: 1.35;
    }

    .sec_title {
        line-height: 1.4;
    }

    .brand_desc br,
    .invest_desc br,
    .contact_desc br,
    .profit_lead br {
        display: none;
    }

    .profit_sim {
        padding: 24px 18px 26px;
    }

    .sim_row {
        gap: 10px;
    }

    .sim_lbl {
        width: 92px;
    }

    .sim_fill {
        padding: 0 8px;
    }

    .sim_fill span {
        font-size: 12px;
    }

    .invest_card {
        padding: 24px 20px 22px;
    }

    .process_list {
        grid-template-columns: 1fr;
    }

    .process_card {
        padding: 26px 16px;
    }

    .branch_item {
        width: 168px;
    }

    .contact_hotline {
        margin-top: 20px;
    }
}

/* --------------------------------- ~560px --------------------------------- */
@media (max-width: 560px) {
    .strength_list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .strength_thumb {
        height: clamp(160px, 44vw, 206px);
    }

    .strength_body {
        padding: 20px;
    }

    .consult_input {
        width: 100%;
    }

    .consult_agree {
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu_nav {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

/* --------------------------------- ~400px (iPhone SE 등) --------------------------------- */
@media (max-width: 400px) {
    .branch_item {
        width: 150px;
    }

    .contact_agree {
        align-items: flex-start;
    }

    .contact_agree_link {
        padding-top: 1px;
    }
}