/* ===== 어두운 배경 + primary(붉은색) 테마 ===== */
/* 폰트: 메인 GmarketSans / 서브·평문 Noto Sans KR / 손글씨 포인트 Nanum Pen Script */
.landing-page {
    --font-main: 'GmarketSans', 'Malgun Gothic', sans-serif;
    --font-sub: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    --font-script: 'Nanum Pen Script', cursive;
    --color-primary: #c30d23;
    font-family: var(--font-main);
    color: #eee;
    background: #0a0a0a;
    /* 5단계 반응형 폰트 (font-m 1.72vw 기준 비율 맞춤) */
    --font-xl: clamp(32px, 4.91vw, 80px);
    --font-l: clamp(22px, 3vw, 42px);
    --font-m: clamp(20px, 1.72vw, 28px);
    --font-s: clamp(18px, 1.35vw, 22px);
    --font-xs: clamp(16px, 1.1vw, 18px);
    max-width: 100%;
    overflow-x: hidden;
}

/* 손글씨 폰트(Nanum Pen Script) - 슬로건·캐치프레이즈·뱃지 등 */
.landing-page .slogan,
.landing-page .profit-question,
.landing-page .profit-question-line2,
.landing-page .profit-question-line3,
.landing-page .confidence-accent,
.landing-page .title-line1,
.landing-page .support-headline-accent,
.landing-page .interior-swiper-title-red {
    font-family: var(--font-script);
}

/* 평문·서브 텍스트(설명, 보조 문구)에만 서브 폰트 적용 */
.landing-page .section-signature-en,
.landing-page .signature-card-info p,
.landing-page .awards-block p,
.landing-page .awards-list li,
.landing-page .guide-subtitle,
.landing-page .step-description,
.landing-page .benefit-card-text,
.landing-page .premium-card-text,
.landing-page .premium-speech-bubble p,
.landing-page .interview-caption,
.landing-page .difference-tag,
.landing-page .description,
.landing-page .description p {
    font-family: var(--font-sub);
}

.landing-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 모바일 가로 스크롤 방지: 랜딩 페이지일 때 컨테이너도 클리핑 */
#container:has(.landing-page) {
    max-width: 100%;
}

/* GNB - 다크 */
.top-gnb {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, .95);
    border-bottom: 1px solid rgba(195, 13, 35, .3);
    backdrop-filter: blur(8px);
    overflow-x: hidden;
}

.gnb-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
    padding: 0 24px;
}

.gnb-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.gnb-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.gnb-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #c30d23;
    margin-left: 10px;
}

.gnb-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    margin: 0;
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #eee;
}

.gnb-toggle .gnb-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
}

.gnb-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
    flex-wrap: wrap;
}

.gnb-menu a {
    color: #eee;
    text-decoration: none;
    padding: 12px 16px;
    font-size: var(--font-s);
    font-weight: 500;
}

.gnb-menu a:hover {
    color: #c30d23;
}

/* GNB 고정 시 탭 섹션 상단 여백 (헤더 가림 방지) */
#brand,
#guarantee,
#competive,
#guide,
#inquiry {
    padding-top: 100px;
}

/* 히어로 - 중앙 정렬, 이미지 비율·폰트 동일 */
.hero {
    position: relative;
    min-height: calc(100dvh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-inline: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, .8) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-inner {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0;
    position: relative;
}

.hero-inner img.hero-visual-img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 400px;
    object-fit: contain;
    display: block;
    z-index: 1;
}

.hero-visual {
    padding: 30px 20px;
    transform: rotate(-10deg)
}

.hero-visual h2 {
    font-size: 72px;
    font-weight: 800;
    text-align: center;
}

.hero-visual p {
    font-size: 24px;
    font-weight: 500;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    padding-block: 16px;
    padding-inline: 20px;
}

.hero-content {
    font-size: var(--font-m);
    font-weight: 300;
}

.hero-content p:not(:last-child) {
    margin-bottom: 1.5em;
}

.hero-content p b {
    font-weight: 500;
}

.hero-content strong {
    font-size: 32px;
    font-weight: 500;
}

.hero-content strong b {
    color: var(--color-primary);
}

.hero-logo {
    max-width: min(420px, 85vw);
    width: auto;
    max-height: 22vh;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .5));
    margin-bottom: 48px;
}

.hero-stats {
    color: #fff;
    font-size: var(--font-m);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.hero-stats-highlight {
    color: var(--color-primary);
    font-size: 1.2em;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-phone {
    color: #fff;
    font-size: var(--font-l);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.hero-phone:hover {
    color: #fff;
    text-decoration: underline;
}

.hero-phone strong {
    color: var(--color-primary);
}

/* 히어로 비디오 - YouTube 16:9, 로드 전에도 높이 유지 */
.hero-video {
    width: 100%;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.hero-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* 태블릿~: 히어로 위아래 나열, 왼쪽 상단(비주얼) / 우측 하단(콘텐츠) */
@media (max-width: 1024px) {
    #intro.hero {
        min-height: 70vh;
        padding: 90px 20px 50px;
        align-items: stretch;
    }

    #intro.hero .hero-inner {
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        min-height: 100%;
    }

    #intro.hero .hero-visual {
        align-self: flex-start;
        padding: 0 0 24px;
        text-align: left;
    }

    #intro.hero .hero-content {
        align-self: flex-end;
        text-align: right;
        margin-top: auto;
    }

    #intro.hero .hero-visual h2 {
        font-size: clamp(42px, 10vw, 56px);
    }

    #intro.hero .hero-visual p {
        font-size: clamp(18px, 4vw, 22px);
    }

    #intro.hero .hero-content {
        font-size: clamp(15px, 3.5vw, var(--font-m));
    }

    #intro.hero .hero-content strong {
        font-size: clamp(24px, 5vw, 28px);
    }
}

@media (max-width: 768px) {
    #intro.hero {
        min-height: auto;
        padding: 90px 16px 50px;
    }

    #intro.hero .hero-inner {
        min-height: 0;
    }

    #intro.hero .hero-visual h2 {
        font-size: clamp(36px, 9vw, 48px);
    }

    #intro.hero .hero-visual p {
        font-size: 16px;
    }

    #intro.hero .hero-content strong {
        font-size: 22px;
    }

    .hero-logo {
        max-width: min(320px, 90vw);
        margin-bottom: 28px;
    }

    .hero-stats {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .hero-stats-highlight {
        font-size: 1.15em;
    }

    .hero-phone {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    #intro.hero {
        min-height: auto;
        padding: 80px 12px 40px;
    }

    #intro.hero .hero-visual h2 {
        font-size: 32px;
    }

    #intro.hero .hero-visual p {
        font-size: 14px;
    }

    #intro.hero .hero-content strong {
        font-size: 18px;
    }

    .hero-logo {
        max-width: 260px;
        max-height: 18vh;
        margin-bottom: 20px;
    }

    .hero-stats {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero-stats-highlight {
        font-size: 1.15em;
    }

    .hero-phone {
        font-size: 22px;
    }
}

/* 비주얼 마퀴 - 메뉴 이미지와 TIGER/TTEOKBOKKI 텍스트가 번갈아가며 흐름 */
.visual-marquee {
    background: #0a0a0a;
    color: #fff;
    padding: 30px 0;
    overflow: hidden;

    position: relative;
}

.visual-marquee::before {
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    bottom: 35%;
    width: 100%;
    border-top: 1px solid #ffffff20;
    border-bottom: 1px solid #ffffff20;

    z-index: 0;
}

.visual-marquee-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: vmarquee 22s linear infinite;
    white-space: nowrap;
}

.visual-marquee-track .v-m-item {
    flex-shrink: 0;
}

.visual-marquee-track .v-m-item.v-m-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.visual-marquee-track .v-m-item.v-m-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-marquee-track .v-m-item.v-m-text {
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    /* font-weight: 800; */
    color: #fff;
    letter-spacing: 0;
    text-align: center;
}

@keyframes vmarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .visual-marquee-track .v-m-item.v-m-img {
        width: 160px;
        height: 160px;
    }

    .visual-marquee-track .v-m-item.v-m-text {
        height: 160px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .visual-marquee {
        padding: 20px 0;
    }

    .visual-marquee-track {
        gap: 24px;
        animation-duration: 18s;
    }

    .visual-marquee-track .v-m-item.v-m-img {
        width: 110px;
        height: 110px;
    }

    .visual-marquee-track .v-m-item.v-m-text {
        height: 110px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .visual-marquee-track {
        gap: 20px;
        animation-duration: 15s;
    }

    .visual-marquee-track .v-m-item.v-m-img {
        width: 90px;
        height: 90px;
    }

    .visual-marquee-track .v-m-item.v-m-text {
        height: 90px;
        font-size: 13px;
    }
}

/* 시그니처 */
.section-signature {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.section-signature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(/assets/images/background/bg_1.jpg) center/cover no-repeat;
    z-index: 0;
}

.section-signature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .7) 0%, rgba(17, 17, 17, .92) 100%);
    z-index: 1;
}

.section-signature-head,
.section-signature .signature-grid {
    position: relative;
    z-index: 2;
}

.section-signature-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-signature-en {
    font-size: var(--font-s);
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-signature-ko {
    font-size: var(--font-xl);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.03em;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 auto;
}

.signature-card {
    text-align: center;
}

.signature-card-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.signature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.signature-card-info {
    padding-block: 24px;
}

.signature-card-info h3 {
    font-size: var(--font-m);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.signature-card-info p {
    font-size: var(--font-s);
    font-weight: 300;
    color: rgba(255, 220, 180, .95);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* 대한민국 1등 분식 브랜드 + 월 평균 순수익 1,316만원 */
.section-stat-no1 {


    background: url('/assets/images/background/bg_1.jpg') center/cover no-repeat;
    position: relative;
    text-align: center;
}

.section-stat-no1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .75) 0%, rgba(10, 10, 10, .9) 100%);
    z-index: 0;
}

.section-stat-no1 .stat-no1-inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: calc(100dvh - 200px);
    align-items: center;
}

.section-stat-no1 .stat-no1-inner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-stat-no1 .stat-no1-inner .stat-no1-content {
    padding-block: 60px;
    padding-inline: 20px;
}

.section-stat-no1 .rating {
    margin: 0 0 16px;
    line-height: 0;
}

.section-stat-no1 .rating-stars {
    display: inline-block;
    width: 140px;
    height: 28px;
    max-width: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35));
}

.section-stat-no1 .stat-no1-brand {
    color: #e6b020;
    font-size: var(--font-m);
    font-weight: 800;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
    line-height: 1.35;
}


.section-stat-no1 .stat-no1-title {
    font-size: var(--font-xl);
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.section-stat-no1 .stat-no1-revenue {
    position: relative;
    padding-top: 46px;
    padding-bottom: 24px;
    margin-bottom: 48px;

}

.section-stat-no1 .stat-no1-revenue::before,
.section-stat-no1 .stat-no1-revenue::after {
    content: '';
    left: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.5;
    z-index: -1;
}

.section-stat-no1 .stat-no1-revenue::before {
    top: 0;
}

.section-stat-no1 .stat-no1-revenue::after {
    bottom: 0;
}

.section-stat-no1 .stat-no1-revenue .stat-no1-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--font-s);
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
}



.section-stat-no1 .stat-no1-number {
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
}



.section-stat-no1 .stat-no1-desc {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .9);
    margin: 0;
    line-height: 1.6;
    font-family: var(--font-sub);
}

/* 강렬한 맛이 있는 브랜드 + 월 평균 순수익 1천만원 이상 */
.section-stat-taste {
    padding: 100px 20px;
    /* background-image: url('/assets/back_bew/back_bew_1.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #00000090;
    background-blend-mode: overlay;
}

.section-stat-taste .stat-taste-inner {
    font-size: var(--font-xl);
    font-weight: 800;
    color: #fff;
    max-width: 1200px;
    margin-inline: auto;

}

.section-stat-taste .stat-taste-inner p {
    margin-bottom: var(--font-xl);
    text-align: start;
}

.section-stat-taste .stat-taste-inner strong {
    color: var(--color-primary);
}

.section-stat-taste .stat-taste-inner p:nth-child(2n) {
    text-align: end;
}





/* 수상 */
.section-awards {
    background: #111;
    padding: 60px 20px;
    color: #eee;
}

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

.awards-block {
    margin-bottom: 30px;
}

.awards-block h3 {
    font-size: 26px;
    margin: 0 0 10px;
    color: #fff;
}

.awards-block p {
    font-size: 18px;
    color: #aaa;
    margin: 0;
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.awards-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #bbb;
}

/* 가맹혜택 하이라이트 */
.guarantee-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.guarantee-highlight-item {
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(195, 13, 35, .15) 0%, rgba(195, 13, 35, .08) 100%);
    border: 1px solid rgba(195, 13, 35, .35);
    border-radius: 16px;
    font-size: var(--font-s);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.45;
}

.guarantee-highlight-item:nth-child(1),
.guarantee-highlight-item:nth-child(3) {
    border-color: rgba(195, 13, 35, .5);
    background: linear-gradient(135deg, rgba(195, 13, 35, .2) 0%, rgba(195, 13, 35, .1) 100%);
}

/* 6가지 경쟁력(가맹혜택) */
.section-advantage {
    background: #0a0a0a;
    padding: 80px 20px;
    color: #eee;
}

.section-advantage h2 {
    font-size: var(--font-l);
    text-align: center;
    margin: 0 0 15px;
    line-height: 1.3;
    color: #fff;
}

.section-advantage h3 {
    font-size: var(--font-m);
    text-align: center;
    color: #aaa;
    margin: 0 0 50px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 30px 15px;
    background: #1a1a1a;
    border: 1px solid rgba(195, 13, 35, .2);
    border-radius: 16px;
}

.adv-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.adv-icon-card {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #c30d23;
    background: linear-gradient(135deg, #c30d23 0%, #ff6b6b 100%);
}

.adv-title {
    font-size: var(--font-s);
    font-weight: 700;
    color: #c30d23;
    margin: 0 0 8px;
}

.adv-desc {
    font-size: var(--font-s);
    color: #bbb;
    margin: 0;
    line-height: 1.5;
}

/* 핵심 경쟁력 */
.section-core {
    background: #111;
    padding: 80px 20px;
    color: #eee;
}

.section-core h2 {
    font-size: var(--font-l);
    text-align: center;
    margin: 0 0 20px;
    color: #fff;
}

.section-core .core-lead,
.section-core .core-lead2 {
    text-align: center;
    font-size: var(--font-s);
    margin: 0 0 15px;
    color: #aaa;
}

.core-number {
    text-align: center;
    font-size: var(--font-m);
    margin: 25px 0;
    color: #eee;
}

.core-number strong {
    font-size: var(--font-l);
    color: #c30d23;
}

.section-core h3 {
    font-size: var(--font-m);
    margin: 40px 0 15px;
    color: #fff;
}

.core-table {
    max-width: 500px;
    margin: 25px auto;
    padding: 25px;
    background: #1a1a1a;
    border: 1px solid rgba(195, 13, 35, .2);
    border-radius: 12px;
}

.core-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-table li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.core-table li.highlight {
    color: #c30d23;
    font-weight: 700;
}

.core-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-reason {
    text-align: center;
    padding: 30px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(195, 13, 35, .2);
    border-radius: 16px;
}

.core-reason .num {
    font-size: var(--font-m);
    font-weight: 700;
    color: #c30d23;
    display: block;
    margin-bottom: 15px;
}

.core-reason h4 {
    font-size: var(--font-s);
    margin: 0 0 15px;
    color: #fff;
}

.reason-img {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.reason-img-card {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c30d23 0%, #ff6b6b 50%, #c30d23 100%);
    box-shadow: 0 4px 12px rgba(195, 13, 35, .3);
}

.core-reason ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: var(--font-s);
    color: #bbb;
}

/* 대표 메뉴 */
.section-cuisine {
    background: #111;
    color: #fff;
    padding: 80px 20px;
}

.section-cuisine h2,
.section-cuisine h3 {
    text-align: center;
    margin: 0 0 15px;
}

.section-cuisine h2 {
    font-size: var(--font-m);
}

.section-cuisine h3 {
    font-size: var(--font-l);
    font-weight: 700;
    margin: 0 0 30px;
}

.cuisine-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cuisine-tab {
    padding: 12px 28px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: var(--font-s);
}

.cuisine-tab:hover,
.cuisine-tab.active {
    background: #c30d23;
    border-color: #c30d23;
}

.cuisine-desc {
    text-align: center;
    color: #999;
    margin: 0 0 30px;
    font-size: var(--font-s);
}

.cuisine-panel {
    display: none;
}

.cuisine-panel.active {
    display: block;
}

.cuisine-marquee {
    overflow: hidden;
}

.cuisine-marquee-track {
    display: flex;
    gap: 24px;
    animation: cmarquee 40s linear infinite;
    width: fit-content;
}

.cuisine-item {
    flex: 0 0 220px;
    text-align: center;
}

.cuisine-item-img {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #222;
}

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

.cuisine-item-name {
    margin: 12px 0 0;
    font-size: var(--font-s);
    font-weight: 600;
}

@keyframes cmarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 유튜브 / 마케팅 / 증명서 */
.section-youtube {
    padding: 80px 20px;
    background: #111;
    color: #eee;
}

.section-youtube h2 {
    font-size: var(--font-l);
    text-align: center;
    margin: 0 0 15px;
    color: #fff;
}

.youtube-desc {
    text-align: center;
    color: #aaa;
    margin: 0 0 40px;
    font-size: var(--font-s);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.youtube-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(195, 13, 35, .3);
}

.youtube-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #1a1a1a;
}

.youtube-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-caption {
    text-align: center;
    padding: 15px;
    font-size: 15px;
    color: #aaa;
    margin: 0;
}

/* 투자 비용·예상 매출 비교 (상단 텍스트 / 테이블 / 하단 텍스트) */
.section-cost-compare {
    padding: 100px 20px;
    background: #0a0a0a;
    color: #eee;
}

.cost-compare-top {
    text-align: center;
    margin-bottom: 48px;
}

.cost-compare-lead {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.5;
}

.cost-compare-headline {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.cost-compare-highlight {
    background: #c30d23;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
}

.cost-compare-table tfoot td {
    background: none;
    border: none;
}

.cost-compare-table .cost-compare-tfoot {
    text-align: center;
    font-size: 13px;
    color: #888;
    padding: 12px;
}

.cost-compare-table-wrap {
    overflow-x: auto;
    margin: 0 auto 24px;
    -webkit-overflow-scrolling: touch;
}

.cost-compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
}

.cost-compare-table th,
.cost-compare-table td {
    padding: 16px 14px;
    text-align: center;
    border: 1px solid #333;
    font-size: clamp(13px, 1.2vw, 15px);
}

.cost-compare-table th {
    background: #222;
    color: #fff;
    font-weight: 700;
}

.cost-compare-table .cost-compare-brand {
    background: rgba(195, 13, 35, .15);
    color: #fff;
    font-weight: 600;
}

.cost-compare-table thead .cost-compare-brand {
    background: #c30d23;
    color: #fff;
}

.cost-compare-table .cost-compare-zero {
    background: #c30d23;
    color: #fff;
    font-weight: 800;
    font-size: 1.05em;
}

.cost-compare-table tbody td {
    color: #ddd;
}

.cost-compare-notes {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin: 0 0 6px !important;
}

.cost-compare-bottom {
    text-align: center;
    margin-top: 40px;
}

.cost-compare-cta {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.5;
}

.cost-compare-yellow {
    display: inline-block;
    background: #f5d020;
    color: #1a1a1a;
    font-size: clamp(17px, 1.9vw, 21px);
    font-weight: 800;
    padding: 14px 24px;
    border-radius: 6px;
    margin: 0;
    line-height: 1.4;
}

/* 창업비용 투명 섹션 (index와 동일) */
.landing-page .section24 {
    padding: 100px 20px;
}

.landing-page .section24>.container.wrapper {
    background-image: url('/assets/24_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 60px 20px;
}

.landing-page .section24 .title {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.landing-page .section24 .title h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    font-style: italic;
}

.landing-page .section24 .title h3 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 300;
}

.landing-page .section24 .title h3 strong {
    font-weight: 600;
}

.landing-page .section24 .title p {
    font-weight: 400;
}

.landing-page .section24 .table {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 10px;
    text-align: center;
}

.landing-page .section24 .table .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.landing-page .section24 .note {
    color: #888;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 20px;
    text-align: start;
}

.landing-page .section24 .note.end {
    text-align: end;
}

.landing-page .section24 .table h4 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.landing-page .section24 .table table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    white-space: nowrap;
}

.landing-page .section24 .table table thead th {
    color: #fff;
    background-color: #767676;
    font-size: 20px;
    padding: 15px 20px;
}

.landing-page .section24 .table table thead th:first-child {
    border-radius: 15px 0 0 0;
}

.landing-page .section24 .table table thead th:last-child {
    border-radius: 0 15px 0 0;
}

.landing-page .section24 .table table td {
    padding: 10px 20px;
    border: 1px solid #e7e7e7;
    color: #333;
}

.landing-page .section24 .table table tr:first-child td {
    border-top: none;
}

.landing-page .section24 .table table td:first-child {
    font-weight: 400;
    font-size: 20px;
    border-left: none;
}

.landing-page .section24 .table table td:nth-child(2) {
    border-left: none;
}

.landing-page .section24 .table table td:last-child {
    border-right: none;
}

.landing-page .section24 .table table td em {
    font-size: 14px;
    padding: 5px 10px;
    background-color: var(--color-primary);
    border-radius: 30px;
    color: #fff;
    font-style: normal;
}

@media (max-width: 768px) {
    .landing-page .section24 .title h4 {
        font-size: 15px;
    }

    .landing-page .section24 .title h3 {
        font-size: 25px;
    }

    .landing-page .section24 .table table thead th {
        font-size: 18px;
    }

    .landing-page .section24 .table table td {
        font-size: 14px;
    }

    .landing-page .section24 .table table td:first-child {
        font-size: 16px;
    }

    .landing-page .section24 .table table td em {
        font-size: 12px;
        padding: 3px 8px;
    }
}

/* 창업안내 섹션 */
.section-guide {
    padding: 120px 20px;
    background: #0a0a0a;
}

.guide-header {
    text-align: center;
    margin-bottom: 80px;
}

.guide-title {
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1.5px;
    font-family: var(--font-main);
}

.guide-subtitle {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .7);
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.2px;
    font-family: var(--font-main);
}

.guide-process {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.process-step {
    position: relative;
    background: rgba(26, 26, 26, .6);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
    border-color: rgba(212, 175, 55, .3);
    background: rgba(26, 26, 26, .8);
}

.step-number {
    font-size: var(--font-l);
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-family: var(--font-main);
}

.step-title {
    font-size: var(--font-m);
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    font-family: var(--font-main);
}

.step-description {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    letter-spacing: -0.1px;
    font-family: var(--font-main);
}

@media (max-width: 1024px) {
    .guide-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 24px;
    }
}

@media (max-width: 768px) {
    .section-guide {
        padding: 80px 20px;
    }

    .guide-title {
        font-size: var(--font-l);
    }

    .guide-subtitle {
        font-size: var(--font-s);
    }

    .guide-process {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step {
        padding: 32px 24px;
    }

    .step-number {
        font-size: var(--font-l);
    }

    .step-title {
        font-size: var(--font-m);
    }
}

@media (max-width: 480px) {
    .section-guide {
        padding: 60px 16px;
    }

    .guide-title {
        font-size: var(--font-l);
    }

    .guide-subtitle {
        font-size: var(--font-s);
    }

    .process-step {
        padding: 28px 20px;
    }

    .step-number {
        font-size: var(--font-l);
    }

    .step-title {
        font-size: var(--font-m);
    }

    .step-description {
        font-size: var(--font-s);
    }
}

/* 창업안내(문의) */
.section-inquiry {
    padding: 80px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
    color: #fff;
    border-top: 2px solid #c30d23;
}

.section-inquiry h2 {
    font-size: var(--font-l);
    text-align: center;
    margin: 0 0 24px;
    color: #fff;
}

/* 문의 배너: 빨간 상단 + 검정 하단 (폼 위) */
.inquiry-banner {
    max-width: 640px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.inquiry-banner-red {
    background: #c30d23;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(0, 0, 0, .06) 6px, rgba(0, 0, 0, .06) 12px);
    padding: 36px 28px 32px;
    text-align: center;
    color: #fff;
}

.inquiry-banner-head {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.5;
}

.inquiry-banner-tag {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #fff;
    padding: 6px 14px;
    border-radius: 6px;
    margin: 0 2px;
    font-size: 17px;
}

.inquiry-banner-main {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.4;
}

.inquiry-banner-money {
    font-size: 28px;
    font-weight: 900;
}

.inquiry-banner-cta {
    display: block;
    max-width: 320px;
    margin: 0 auto;
    padding: 18px 24px;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background .2s, color .2s;
}

.inquiry-banner-cta:hover {
    background: #fff;
    color: #c30d23;
}

.inquiry-banner-cta-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.inquiry-banner-cta-phone {
    display: block;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.inquiry-banner-black {
    background: #0a0a0a;
    padding: 28px 24px 24px;
    text-align: center;
    color: #fff;
}

.inquiry-banner-lead {
    font-size: 17px;
    margin: 0 0 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .95);
}

.inquiry-banner-lead-accent {
    color: #c30d23;
    font-weight: 800;
}

.inquiry-banner-note {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.inquiry-banner-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 3px;
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

.inquiry-banner-check::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid #c30d23;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inquiry-form {
    max-width: 560px;
    margin: 0 auto 50px;
    text-align: start;
}

.inquiry-form-card {
    background: rgba(26, 26, 26, .9);
    border: 1px solid rgba(195, 13, 35, .35);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}

.inquiry-row {
    display: grid;
    gap: 20px;
}

.inquiry-row-2 {
    grid-template-columns: 1fr 1fr;
}

.inquiry-field {
    display: block;
    margin-bottom: 22px;
}

.inquiry-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #c30d23;
    margin-bottom: 8px;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
    background: rgba(10, 10, 10, .6);
    color: #fff;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #c30d23;
    box-shadow: 0 0 0 3px rgba(195, 13, 35, .2);
}

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

.inquiry-privacy-box {
    margin: 24px 0 20px;
    padding: 18px 20px;
    background: rgba(0, 0, 0, .3);
    border-radius: 12px;
    border-left: 4px solid #c30d23;
}

.inquiry-privacy-box .inquiry-privacy {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    color: #eee;
}

.inquiry-privacy-box ul {
    margin: 0;
    padding: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    list-style-position: inside;
}

.inquiry-agree {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
    font-size: 14px;
    cursor: pointer;
    color: rgba(255, 255, 255, .9);
}

.inquiry-agree input {
    width: 20px;
    height: 20px;
    accent-color: #c30d23;
}

.inquiry-agree a {
    color: #c30d23;
    text-decoration: underline;
}

.btn-inquiry {
    width: 100%;
    padding: 18px 24px;
    background: #c30d23;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.btn-inquiry:hover {
    background: #e00;
    transform: translateY(-1px);
}

.inquiry-footer {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-top: 40px;
}

.inquiry-footer-brand {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.inquiry-footer-phone {
    margin: 0 0 5px;
}

.inquiry-footer-phone strong {
    color: #c30d23;
}

.inquiry-footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin: 0;
}

/* ===== 매장 찾기 섹션 (랜딩 전용: map-ui는 지도 아래 블록) ===== */
.landing-page section#store .map-ui {
    position: static;
    left: auto;
    top: auto;
    height: auto;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.landing-page section#store .map-ui .filter {
    background: transparent;
    padding: 0;
}

.landing-page section#store .map-ui .filter form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    cursor: default;
}

.landing-page section#store .map-ui .filter input[type=text],
.landing-page section#store .map-ui .filter button {
    border: none;
    font-size: inherit;
    color: inherit;
}

.landing-page section#store .map-ui .filter input[type=text] {
    flex: 1;
    padding: 0;
}

.landing-page section#store .map-ui .filter button {
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.landing-page section#store #store_map {
    border-radius: 16px;
    outline: none;
}

.section-store-search {
    padding-top: 100px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    color: #fff;
    position: relative;
}

.section-store-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c30d23 50%, transparent 100%);
    opacity: 0.8;
}

.store-title {
    text-align: center;
    margin-bottom: 36px;
}

.store-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c30d23 0%, #e63946 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(195, 13, 35, .35);
    letter-spacing: -0.02em;
}

.store-title h2 {
    font-size: var(--font-l);
    margin: 0 0 10px;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.store-title-desc {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .75);
    margin: 0 0 20px;
    line-height: 1.5;
}

.store-title-img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .3));
}

.store-search-top {
    max-width: 560px;
    margin: 0 auto 28px;
}

.filter form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    z-index: 1;
    pointer-events: none;
}

.store-search-input {
    flex: 1;
    padding: 16px 20px 16px 48px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 16px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.store-search-input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.store-search-input:focus {
    outline: none;
    border-color: #c30d23;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 4px rgba(195, 13, 35, .15);
}

.store-search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #c30d23 0%, #e63946 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(195, 13, 35, .35);
    white-space: nowrap;
}

.store-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(195, 13, 35, .45);
}

.store-search-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.25s;
}

.store-search-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.store-map-wrapper {
    max-width: 1200px;
    margin: 0 auto 28px;
}

.store-map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    border: 2px solid rgba(195, 13, 35, .25);
}

.store-map {
    width: 100%;
    min-height: 500px;
    border-radius: 16px;
}

.store-map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-info-badge {
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .12);
}

.map-info-icon {
    font-size: 14px;
}

.map-ui {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(28, 28, 28, .98) 0%, rgba(18, 18, 18, .98) 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    border: 2px solid rgba(195, 13, 35, .2);
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.store-selected-info {
    padding: 16px 28px;
    background: rgba(195, 13, 35, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    min-height: 52px;
}

.store-selected-info .store-selected-placeholder {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}

/* 지도 인포윈도우 (마커 위) */
.store-infowindow {
    position: relative;
    padding: 14px 36px 14px 14px;
    min-width: 200px;
    max-width: 280px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(195, 13, 35, .4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
    color: #fff;
}

.store-infowindow-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.store-infowindow-close:hover {
    background: #c30d23;
}

.store-infowindow-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.store-infowindow-address,
.store-infowindow-tel {
    margin: 0 0 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5;
}

.list-header {
    padding: 18px 28px;
    background: rgba(195, 13, 35, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.list-count {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
}

.list-count .count-num {
    color: #c30d23;
    font-weight: 800;
    margin-left: 4px;
}

.list {
    display: flex;
    flex-direction: column;
    max-height: 380px;
    min-height: 200px;
}

.list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.list ul::-webkit-scrollbar {
    width: 8px;
}

.list ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
}

.list ul::-webkit-scrollbar-thumb {
    background: rgba(195, 13, 35, .5);
    border-radius: 4px;
}

.list ul::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 13, 35, .7);
}

.list li {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: background 0.25s, padding-left 0.25s;
    position: relative;
}

.list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c30d23;
    transform: scaleY(0);
    transition: transform 0.25s;
}

.list li:hover {
    background: rgba(195, 13, 35, .12);
    padding-left: 32px;
}

.list li:hover::before {
    transform: scaleY(1);
}

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

.list li.selected {
    background: rgba(195, 13, 35, .15);
    padding-left: 32px;
}

.list li.selected::before {
    transform: scaleY(1);
}

.list li h5 {
    margin: 0 0 8px;
    font-size: 17px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.list li h5::before {
    content: '📍';
    font-size: 12px;
}

.list li p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.55;
}

.empty-data {
    display: none;
    text-align: center;
    padding: 56px 24px;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-data .empty-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.empty-data span {
    display: block;
}

/* ===== tiger-tteokbokki.com 이미지 섹션 코딩 구현 ===== */

/* A급 상권 직영점 점주 모집 배너 - 섹션 타이틀/설명 + 이미지 2개 세로 나열 */
.section-recruit-banner {
    padding: 80px 20px;
    background: #0a0a0a;
}

.recruit-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-banner-header {
    text-align: center;
}

.recruit-section-title {
    font-size: var(--font-l);
    font-weight: 800;
    color: #fff;
    margin: 0 0 28px;
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.recruit-section-title .accent {
    color: #c30d23;
    position: relative;
}

.recruit-section-desc {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .9);
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.recruit-desc-highlight {
    color: #d4af37;
    font-weight: 600;
}

/* 전국 중독주의보 맵 영역 - [h2][map] / [marker][map] 그리드 */
.recruit-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 24px;
    align-items: start;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.recruit-banner-content .recruit-content-title {
    grid-column: 1;
    grid-row: 1;
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.recruit-banner-content .recruit-content-title strong {
    color: #c30d23;
}

.recruit-banner-content .recruit-marker {
    grid-column: 1;
    grid-row: 2;
}

.recruit-banner-content .recruit-marker>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-block: 12px;
    font-size: 30px;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
}

.recruit-banner-content .recruit-marker>div img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.recruit-banner-content .recruit-map {
    grid-column: 2;
    grid-row: 1 / -1;
    position: relative;
    display: block;
    min-width: 0;
}

.recruit-map .recruit-map-base,
.recruit-map .recruit-map-overlay {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.recruit-map .recruit-map-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: recruit-map-blink 0.8s steps(1, end) infinite;
}

@keyframes recruit-map-blink {

    0%,
    49.99% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.recruit-banner-images {
    display: none;
}

.recruit-banner-images .recruit-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 월 순수익 1000만원 + 마진율 65% 배너 */
.section-profit-banner {
    padding: 100px 0 0;
    background: url('/assets/images/background/bg_3.jpg') center/cover no-repeat;
    position: relative;
}

.section-profit-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .85);
    pointer-events: none;
}

.section-profit-banner>* {
    position: relative;
    z-index: 1;
}

.profit-banner-bottom {
    padding: 0 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow-x: hidden;
}

.profit-content-inner {
    flex: 1;
}

.profit-question-area {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-main);
}

.landing-page .profit-question-area,
.landing-page .profit-question-area * {
    font-family: var(--font-main);
}

.profit-question {
    font-size: var(--font-xl);
    font-weight: 800;
    color: #c30d23;
    margin: 0 0 20px;
    letter-spacing: -2px;
    font-family: var(--font-main);
    text-shadow: 0 0 24px rgba(195, 13, 35, .35), 0 0 48px rgba(195, 13, 35, .2);
}

.profit-question-line2 {
    font-size: var(--font-l);
    color: #1a1a1a;
    margin: 0 0 8px;
    font-weight: 400;
    letter-spacing: -0.5px;
    font-family: var(--font-main);
}

.profit-question-line3 {
    font-size: var(--font-l);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: var(--font-main);
}

/* profit 해시태그 마퀴 - 빨간배경/흰텍스트 ↔ 흰배경/빨간텍스트 반복 */
.profit-marquee-wrap {
    margin-top: auto;
    margin-left: -40px;
    margin-right: -40px;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.profit-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: profit-marquee 25s linear infinite;
    width: max-content;
    will-change: transform;
}

.profit-tag {
    flex-shrink: 0;
    font-size: var(--font-s);
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
    padding: 12px 28px;
    font-family: var(--font-main);
}

.profit-tag.tag-red {
    background: #c30d23;
    color: #fff;
}

.profit-tag.tag-white {
    background: #fff;
    color: #c30d23;
    border-left: 1px solid rgba(195, 13, 35, .2);
}

@keyframes profit-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 창업혜택 섹션 - 배경: back_bew_1.png 반투명 */
.section-startup-benefits {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background-color: #0a0a0a;
    background-image: linear-gradient(180deg, rgba(10, 10, 10, .55) 0%, rgba(10, 10, 10, .75) 50%, rgba(10, 10, 10, .6) 100%), url('/assets/back_bew/back_bew_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-startup-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #d4af37 80%, transparent 100%);
    opacity: 0.9;
    z-index: 2;
}

.section-startup-benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, .12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section-startup-benefits .container {
    position: relative;
    z-index: 2;
}

.startup-benefits-content {
    text-align: center;
}

.startup-benefits-title {
    margin: 0 0 64px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.4;
}

.title-highlight-amount {
    display: inline-block;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #ffd54f;
    text-shadow: 0 0 20px rgba(212, 175, 55, .4), 0 0 40px rgba(212, 175, 55, .2);
    letter-spacing: -1px;
    animation: benefit-amount-pulse 2.5s ease-in-out infinite, benefit-blink 2.2s ease-in-out infinite;
}

@keyframes benefit-amount-pulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, .4), 0 0 40px rgba(212, 175, 55, .2);
    }

    50% {
        opacity: 0.95;
        text-shadow: 0 0 28px rgba(212, 175, 55, .5), 0 0 56px rgba(212, 175, 55, .3);
    }
}

@keyframes benefit-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.title-line1 {
    display: block;
    font-size: clamp(20px, 2.2vw, 26px);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.title-line2-yellow {
    display: block;
    font-size: var(--font-l);
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    font-family: var(--font-main);
}

.title-line3 {
    display: block;
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    font-family: var(--font-main);
}

.title-line4 {
    display: block;
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.5px;
    font-family: var(--font-main);
}

.startup-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: rgba(22, 22, 22, .75);
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 24px;
    padding: 36px 24px 40px;
    transition: all 0.35s ease;
    backdrop-filter: blur(12px);
    position: relative;
}

.benefit-card-span-2 {
    grid-column: span 2;
}

.benefit-card-featured {
    border-width: 2px;
    border-color: rgba(212, 175, 55, .55);
    background: linear-gradient(160deg, rgba(32, 30, 22, .9) 0%, rgba(22, 22, 22, .92) 100%);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, .2), 0 12px 32px rgba(0, 0, 0, .4);
    padding: 40px 28px 44px;
}

.benefit-card-featured .benefit-card-text strong {
    color: #ffd54f;
    font-size: 1.35em;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, .2);
    border-color: rgba(212, 175, 55, .45);
    background: rgba(28, 28, 28, .85);
}

/* 카드 번호 뱃지 */
.benefit-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .2);
    color: #d4af37;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-main);
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, .5);
}

.benefit-card-featured .benefit-card-badge {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    background: rgba(255, 213, 79, .25);
    color: #ffd54f;
    border-color: rgba(255, 213, 79, .6);
}

.benefit-card-badge-wide {
    width: auto;
    min-width: 100px;
    height: 44px;
    padding: 0 20px;
    border-radius: 22px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.benefit-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(17px, 1.75vw, 20px);
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
    font-weight: 400;
    font-family: var(--font-main);
    word-break: keep-all;
    line-break: auto;
}

.benefit-card-text strong {
    font-size: 1.15em;
    font-weight: 700;
}

.benefit-card-num {
    color: #ffd54f;
    font-weight: 800;
    font-size: 1.15em;
    letter-spacing: -0.02em;
    animation: benefit-blink 2.2s ease-in-out infinite;
    white-space: nowrap;
}

.benefit-card-featured .benefit-card-num {
    color: #ffd54f;
    font-size: 1.2em;
}

.benefit-card-text-sub {
    font-size: 0.95em;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5;
}

.benefit-card-text-sub .benefit-card-num {
    font-size: 1.05em;
}

.benefit-card-text em {
    font-style: normal;
    color: rgba(212, 175, 55, .95);
    font-weight: 600;
}

/* A급 상권 직영점 파격적 지원 - 세련된 다크 테마 */
.section-premium-location {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.section-premium-location::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(195, 13, 35, .06) 0%, transparent 70%);
    pointer-events: none;
}

.premium-location-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.premium-location-header {
    margin-bottom: 56px;
    text-align: center;
}

.premium-badge {
    display: inline-block;
    background: rgba(195, 13, 35, .2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(195, 13, 35, .3);
    font-family: inherit;
}

.premium-location-title {
    margin: 0;
}

.premium-title-black {
    display: block;
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.premium-title-red {
    display: block;
    font-size: var(--font-l);
    font-weight: 800;
    color: #c30d23;
    letter-spacing: -0.03em;
}

.premium-location-bg-tiger {
    display: none;
}

.premium-location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.premium-card-message {
    padding: 0;
}

.premium-card-message .premium-location-message {
    margin: 0;
}

.premium-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c30d23, transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.premium-card:hover {
    border-color: rgba(195, 13, 35, .3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card-tab {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(195, 13, 35, .25);
    color: #ff8a8a;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.premium-card-content {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-card-text {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin: 0 0 24px;
    font-weight: 500;
}

.premium-card-visual {
    margin-top: auto;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: rgba(195, 13, 35, .12);
    border-radius: 16px;
    border: 1px solid rgba(195, 13, 35, .25);
}

.premium-card-visual:has(.premium-card-price-old) {
    flex-wrap: wrap;
    gap: 12px;
}

.premium-card-price-old {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .45);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.premium-card-arrow {
    font-size: var(--font-m);
    color: #c30d23;
    font-weight: 800;
    margin: 0;
}

.premium-card-price-new {
    font-size: var(--font-l);
    color: #c30d23;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.premium-card-amount-single {
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card-amount-single .premium-card-price-new {
    font-size: var(--font-m);
}

.premium-amount {
    color: #c30d23;
    font-weight: 800;
    font-size: 1.15em;
}

.premium-card-img-box,
.premium-card-img-truck,
.premium-card-img-sns,
.premium-card-img-place {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .06);
}

.premium-location-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.premium-speech-bubble {
    width: 100%;
}

.premium-speech-bubble p {
    margin: 8px 0;
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    font-weight: 500;
}

.premium-speech-bubble p:first-child {
    margin-top: 0;
    font-weight: 600;
    color: #fff;
    font-size: var(--font-s);
}

.premium-speech-bubble p:last-child {
    margin-bottom: 0;
    color: #c30d23;
    font-weight: 700;
    font-size: var(--font-m);
}

.premium-message-accent {
    color: #ff6b6b;
    font-size: 1.2em;
    font-weight: 800;
}

/* 점주 인터뷰 유튜브 */
.section-owner-interview {
    padding: 100px 20px;
    background: #111;
}

.section-owner-interview h2 {
    font-size: var(--font-l);
    text-align: center;
    color: #fff;
    margin: 0 0 60px;
}

.interview-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.interview-item {
    flex: 1;
}

.interview-item .youtube-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
}

.interview-item .youtube-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.interview-caption {
    text-align: center;
    margin-top: 20px;
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .8);
}

/* 호랑이떡볶이 차별점 */
.section-difference {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
}

.difference-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.difference-left {
    flex: 1;
}

.difference-img-card {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    background: linear-gradient(135deg, #c30d23 0%, #ff6b6b 50%, #c30d23 100%);
    box-shadow: 0 8px 24px rgba(195, 13, 35, .3);
}

.difference-right {
    flex: 1;
}

.difference-right h2 {
    font-size: var(--font-l);
    color: #fff;
    margin: 0 0 30px;
    line-height: 1.3;
}

.difference-right h2 strong {
    color: #c30d23;
}

.difference-question {
    font-size: var(--font-m);
    color: #fff;
    font-weight: 700;
    margin: 0 0 40px;
    line-height: 1.5;
}

.difference-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.difference-tag {
    padding: 12px 24px;
    background: rgba(195, 13, 35, .2);
    border: 2px solid #c30d23;
    border-radius: 50px;
    color: #fff;
    font-size: var(--font-s);
    font-weight: 600;
}

/* 1매장 多브랜드 */
.section-multi-brand {
    padding: 100px 20px;
    background: #f5f5f5;
    color: #333;
}

.multi-brand-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.multi-brand-top {
    font-size: var(--font-m);
    font-weight: 700;
    color: #000;
    margin: 0 0 12px;
}

.multi-brand-sub {
    font-size: var(--font-s);
    color: #333;
    margin: 0 0 40px;
}

.multi-brand-title {
    font-size: var(--font-l);
    font-weight: 900;
    margin: 0 0 40px;
    line-height: 1.2;
}

.quote-open,
.quote-close {
    color: #ccc;
    font-size: var(--font-l);
    vertical-align: middle;
}

.title-main {
    color: #000;
}

.title-red {
    color: #c30d23;
}

.multi-brand-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 30px;
}

.btn-single-store {
    padding: 16px 40px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: var(--font-s);
    font-weight: 700;
    cursor: pointer;
}

.btn-single-store:hover {
    background: #0056b3;
}

.btn-plus {
    width: 40px;
    height: 40px;
    background: #999;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-m);
    font-weight: 700;
}

.btn-multi-brand {
    padding: 16px 40px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: var(--font-s);
    font-weight: 700;
    cursor: pointer;
}

.btn-multi-brand:hover {
    background: #e55a2b;
}

.multi-brand-tagline {
    font-size: var(--font-m);
    font-weight: 700;
    color: #000;
    margin: 0 0 60px;
}

.multi-brand-logos {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-logo-item {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 50%, #fff 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

/* A급상권 파격적 지원 */
.section-premium-support {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
}

.premium-support-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-support-left {
    flex: 1;
}

.premium-support-img-card {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.premium-support-right {
    flex: 1;
}

.premium-support-right h2 {
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    line-height: 1.3;
}

.premium-support-right h2 strong {
    color: #c30d23;
}

.premium-support-desc {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    margin: 0 0 32px;
}

.premium-support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-support-list li {
    font-size: var(--font-s);
    color: #fff;
    margin-bottom: 12px;
    padding-left: 8px;
}

/* 업계 최고의 착한마진 - 이미지 구성: 상단 문구 / 제목+숫자 한 줄 / 하단 문구 */
.section-margin {
    padding: 100px 20px;
    background: #111;
    text-align: center;
}

.margin-content {
    max-width: 960px;
    margin: 0 auto;
}

.margin-lead {
    font-size: var(--font-m);
    font-weight: 400;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: -0.2px;
    line-height: 1.5;
}

.margin-headline-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 32px;
    margin: 0 0 24px;
    flex-wrap: wrap;
}

.margin-title {
    font-size: var(--font-l);
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.margin-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.margin-big {
    font-size: var(--font-l);
    font-weight: 900;
    color: #c30d23;
    line-height: 1;
    letter-spacing: -4px;
}

.margin-unit {
    font-size: var(--font-l);
    font-weight: 700;
    color: #c30d23;
}

.margin-plus {
    font-size: var(--font-l);
    font-weight: 700;
    color: #c30d23;
}

.margin-tagline {
    font-size: var(--font-m);
    font-weight: 400;
    color: #fff;
    margin: 0 0 48px;
    letter-spacing: -0.3px;
    line-height: 1.5;
}

.margin-desc {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .9);
    margin: 0 0 56px;
    line-height: 1.6;
}

.margin-comparison {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.margin-item {
    padding: 28px 48px;
    background: rgba(26, 26, 26, .8);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, .1);
}

.margin-item-highlight {
    border-color: #c30d23;
    background: rgba(195, 13, 35, .1);
}

.margin-label {
    display: block;
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 10px;
}

.margin-value {
    display: block;
    font-size: var(--font-l);
    font-weight: 700;
    color: #fff;
}

/* 마진율 전격비교 섹션 */
.section-margin-compare {
    padding: 100px 20px;
    background: #6b6b6b;
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 12px,
            rgba(0, 0, 0, .06) 12px,
            rgba(0, 0, 0, .06) 24px);
    text-align: center;
}

.margin-compare-content {
    max-width: 800px;
    margin: 0 auto;
}

.margin-compare-lead {
    font-size: var(--font-m);
    font-weight: 500;
    color: #d9534f;
    margin: 0 0 20px;
    letter-spacing: -0.3px;
    line-height: 1.5;
}

.margin-compare-redbox {
    display: inline-block;
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    background: #c30d23;
    padding: 18px 44px;
    margin: 0 0 48px;
    border-radius: 4px;
    letter-spacing: -0.3px;
}

.margin-compare-title {
    margin: 0;
}

.margin-compare-line1,
.margin-compare-line2 {
    display: block;
    font-size: var(--font-l);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.2;
}

.margin-compare-line1 {
    margin-bottom: 8px;
}

/* 높은 매출보다 중요한건 탄탄한 수익률 - 이미지 구성 */
.section-profit {
    padding: 100px 20px;
    background: #f5f5f5;
    text-align: center;
}

.profit-content {
    max-width: 900px;
    margin: 0 auto;
}

.profit-headline {
    font-size: var(--font-l);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.35;
}

.profit-headline-red {
    font-size: var(--font-l);
    font-weight: 800;
    color: #c30d23;
    display: block;
    margin-top: 8px;
}

.profit-desc {
    font-size: var(--font-m);
    color: #555;
    line-height: 1.75;
    margin: 0 0 40px;
}

.profit-compare-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;

}

.profit-compare-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 36px 24px;
    border-bottom: 2px dashed #ddd;
}

.profit-compare-left,
.profit-compare-right {
    text-align: center;
}

.profit-compare-label {
    display: block;
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
}

.profit-compare-value {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #333;
}

.profit-compare-vs {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.profit-compare-benefits {
    padding: 36px 44px;
}

.profit-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-bottom: 24px;
}

.profit-benefit-item:last-child {
    margin-bottom: 0;
}

.profit-benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #c30d23;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.profit-benefit-text {
    flex: 1;
}

.profit-benefit-title {
    display: block;
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.profit-benefit-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.profit-net-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #c30d23;
    color: #fff;
    padding: 28px 44px;
    margin-top: 0;
}

.profit-net-label {
    font-size: 28px;
    font-weight: 600;
}

.profit-net-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .5);
    margin: 0 24px;
}

.profit-net-value {
    font-size: var(--font-l);
    font-weight: 800;
    letter-spacing: -1px;
}

.profit-net-arrow {
    font-size: var(--font-m);
    font-weight: 700;
    margin-left: 8px;
}

/* 결국, 장사는 순이익이 전부입니다 - 줄바꿈/한페이지/차트/bold/인건비 강조 제거 반영 */
.section-profit-calc {
    padding: 56px 20px;
    background: #fff;
    background-image: radial-gradient(circle at 10% 15%, rgba(0, 0, 0, .02) 0%, transparent 22%);
}

.profit-calc-content {
    max-width: 1100px;
    margin: 0 auto;
}

.profit-calc-header {
    text-align: center;
    margin-bottom: 32px;
}

.profit-calc-headline {
    font-size: var(--font-l);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.profit-calc-highlight {
    color: #c30d23;
    font-weight: 800;
}

.profit-calc-sub1 {
    font-size: var(--font-m);
    font-weight: 500;
    color: #555;
    margin: 0 0 4px;
}

.profit-calc-sub2 {
    font-size: var(--font-s);
    color: #666;
    margin: 0;
}

.profit-calc-body {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding-block: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}

.profit-calc-body:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.profit-calc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 0 0 auto;
    padding: 36px 32px;
    min-width: 240px;
    background: #fff;
}

/* 도넛 차트: 바깥 링만 컬러, 가운데 흰 원 + 텍스트 */
.profit-calc-pie {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#e5e5e5 0deg 245deg, #c30d23 245deg 360deg);
    box-sizing: border-box;
    transition: transform .4s ease;
}

.section-profit-calc:hover .profit-calc-pie {
    transform: scale(1.05);
}

.profit-calc-pie::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58%;
    height: 58%;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.profit-calc-pie-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: var(--font-s);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    font-style: normal;
    z-index: 1;
}

.profit-calc-pie-label em {
    font-style: normal;
    display: block;
}

.profit-calc-pie-pct {
    font-size: var(--font-m);
    font-weight: 700;
    margin-top: 2px;
    color: #c30d23;
}

.profit-calc-sales {
    font-size: var(--font-s);
    font-weight: 600;
    color: #fff;
    text-align: center;
    padding: 10px 28px;
    background: #8c8c8c;
    border-radius: 10px;
    letter-spacing: -0.02em;
    transition: background .3s ease, transform .3s ease;
}

.section-profit-calc:hover .profit-calc-sales {
    background: #7a7a7a;
    transform: scale(1.02);
}

.profit-calc-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    background: #fff;
    min-width: 48px;
}

.profit-calc-arrow {
    font-size: var(--font-l);
    font-weight: 800;
    color: #c30d23;
    line-height: 1;
    display: inline-block;
    animation: profit-calc-arrow-pulse 2s ease-in-out infinite;
}

@keyframes profit-calc-arrow-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

.profit-calc-table-wrap {
    flex: 1;
    min-width: 340px;
    max-width: fit-content;
    display: flex;
    flex-direction: column;
}

.profit-calc-table-title {
    font-size: var(--font-s);
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.profit-calc-table {
    width: 100%;
    border-collapse: collapse;
    flex: 1;
}

.profit-calc-table th,
.profit-calc-table td {
    padding: 12px 20px;
    font-size: var(--font-s);
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.profit-calc-table th {
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    background: #f8f8f8;
    font-size: var(--font-s);
    white-space: nowrap;
}

.profit-calc-table td {
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

.profit-calc-detail {
    font-size: var(--font-s);
    font-weight: 500;
    color: #555;
}

.profit-calc-th-amount,
.profit-calc-th-pct {
    text-align: right;
}

.profit-calc-th-amount {
    white-space: nowrap;
}

.profit-calc-amount,
.profit-calc-pct {
    text-align: right;
    font-weight: 600;
    font-size: var(--font-s);
}

.profit-calc-result-bar .profit-calc-result-value small {
    font-size: .55em;
    font-weight: 600;
    opacity: .95;
}

.profit-calc-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #c30d23;
    color: #fff;
    padding: 20px 24px;
    border-radius: 0 0 16px 0;
    transition: background .3s ease, filter .3s ease;
}

.section-profit-calc:hover .profit-calc-result-bar {
    background: #b00c20;
    filter: brightness(1.05);
}

.profit-calc-result-label {
    font-size: var(--font-s);
    font-weight: 700;
}

.profit-calc-result-value {
    font-size: var(--font-m);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    transition: transform .3s ease;
}

.section-profit-calc:hover .profit-calc-result-value {
    transform: scale(1.03);
}

.profit-calc-result-value small {
    margin-left: 2px;
}

/* 가장 핫한 분식 브랜드 - TIGER TTEOKBOKKI / 연도별 성장 */
.section-brand-growth {
    position: relative;
    padding: 100px 20px;
    background: #0d0d0d url(/assets/images/background/bg_3.jpg) center/cover no-repeat;
    color: #fff;
}

.section-brand-growth::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .65) 100%);
    z-index: 0;
}

.section-brand-growth .container {
    position: relative;
    z-index: 1;
}

.brand-growth-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.brand-growth-logo {
    font-size: var(--font-m);
    font-weight: 700;
    letter-spacing: .2em;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
    line-height: 1.4;
}

.brand-growth-headline {
    font-size: var(--font-l);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.35;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.brand-growth-line1 {
    display: block;
    color: #c30d23;
    white-space: nowrap;
}

.brand-growth-line2 {
    display: block;
    color: #fff;
    font-size: .92em;
    letter-spacing: .02em;
}

.brand-growth-flame {
    font-size: var(--font-m);
    line-height: 1;
    vertical-align: middle;
}

.brand-growth-tagline {
    font-size: var(--font-m);
    color: #fff;
    margin: 0 0 48px;
    font-weight: 500;
    line-height: 1.5;
    opacity: .95;
}

/* 상단: 가맹광고 단 ~ / 성장률 135% */
.brand-growth-top {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.brand-growth-card {
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.brand-growth-card-franchise {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
}

.brand-growth-card-franchise:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.brand-growth-card-cap {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    opacity: .9;
    line-height: 1.4;
}

.brand-growth-card-title {
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    opacity: .95;
    line-height: 1.4;
}

.brand-growth-card-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.brand-growth-card-num {
    font-size: var(--font-l);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.brand-growth-card-unit {
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    opacity: .95;
}

.brand-growth-card-rate {
    flex: 0 0 auto;
    min-width: 240px;
    background: #c30d23;
    border: 2px solid rgba(255, 255, 255, .25);
}

.brand-growth-card-rate:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(195, 13, 35, .5);
}

.brand-growth-rate-label {
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.brand-growth-rate-value {
    font-size: var(--font-l);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

/* 하단: 연도별 가맹 수 - 세련된 카드형 */
.brand-growth-years-title {
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    opacity: .95;
}

.brand-growth-years {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.brand-growth-year-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.brand-growth-year-item:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-2px);
}

.brand-growth-year-label {
    font-size: var(--font-s);
    font-weight: 700;
    color: #fff;
    opacity: .9;
    letter-spacing: .02em;
}

.brand-growth-year-count {
    font-size: var(--font-l);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.brand-growth-year-unit {
    font-size: var(--font-s);
    font-weight: 600;
    opacity: .9;
    margin-left: 2px;
}

.brand-growth-year-desc {
    font-size: var(--font-s);
    font-weight: 600;
    color: #fff;
    opacity: .75;
    margin-top: 2px;
}

/* 가장 핫한 분식브랜드 */
.section-hot-brand {
    padding: 100px 20px;
    background: #0a0a0a;
    text-align: center;
}

.hot-brand-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hot-brand-content h2 {
    font-size: var(--font-l);
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.3;
}

.hot-brand-content h2 strong {
    color: #c30d23;
}

.hot-brand-desc {
    font-size: var(--font-m);
    color: rgba(255, 255, 255, .8);
    margin: 0 0 60px;
}

.hot-brand-features {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.hot-brand-feature {
    flex: 1;
    max-width: 300px;
    padding: 40px 30px;
    background: rgba(26, 26, 26, .6);
    border-radius: 16px;
}

.hot-brand-feature h3 {
    font-size: var(--font-m);
    color: #fff;
    margin: 0 0 12px;
}

.hot-brand-feature p {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin: 0;
}

/* 장사가 안될까봐 불안하신가요? (TIGER TTEOKBOKKI + 가맹점 매출 마퀴) */
.section-worry {
    padding: 100px 20px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #8b1520 url(/assets/images/background/bg_worry.jpg) center/cover no-repeat;
}

.section-worry-bg {
    position: absolute;
    inset: 0;
    background: rgba(139, 21, 32, 0.85);
    z-index: 0;
}

.section-worry-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.worry-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.worry-title {
    font-size: var(--font-l);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.15em;
    margin: 0 0 32px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.worry-bubble-wrap {
    margin-bottom: 20px;
}

.worry-lead {
    font-size: var(--font-s);
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin: 20px 0 0;
    letter-spacing: 0.02em;
}

.worry-bubble {
    display: inline-block;
    background: #fff;
    color: #222;
    font-size: var(--font-m);
    font-weight: 800;
    padding: 28px 56px;
    border-radius: 60px;
    margin: 0;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.worry-bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    border: 18px solid transparent;
    border-top-color: #fff;
}

.worry-emblem-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.worry-emblem-placeholder {
    width: 320px;
    min-height: 280px;
    background: transparent;
}

.worry-emblem-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 장사가 안될까봐: Swiper 카드 */
.worry-swiper-wrap {
    margin-top: auto;
    width: 100%;
    padding: 56px 0 80px;
}

.worry-swiper {
    overflow: hidden;
    padding: 0;
}

.worry-swiper .swiper-slide {
    height: auto;
}

.worry-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 3px solid #222;
    border-radius: 16px;
    overflow: hidden;
}

.worry-card-head {
    height: 36px;
    background: #222;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.worry-card-badge {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid #c30d23;
    filter: drop-shadow(0 0 0 2px #222);
    display: flex;
    align-items: center;
    justify-content: center;
}

.worry-card-badge img {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.worry-card-body {
    padding: 36px 28px 32px;
    text-align: center;
}

.worry-card-name {
    font-size: 24px;
    font-weight: 800;
    color: #c30d23;
    margin: 0 0 28px;
    line-height: 1.3;
}

.worry-card-label {
    font-size: var(--font-s);
    color: #666;
    margin: 0 0 6px;
}

.worry-card-value {
    font-size: var(--font-m);
    font-weight: 800;
    color: #c30d23;
    margin: 0 0 20px;
}

.worry-card-value:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .section-worry {
        min-height: auto;
        padding: 80px 20px 0;
    }

    .worry-title {
        font-size: clamp(36px, 5vw, 52px);
        margin-bottom: 24px;
    }

    .worry-bubble {
        font-size: clamp(20px, 2.5vw, 28px);
        padding: 22px 40px;
    }

    .worry-emblem-placeholder {
        width: 260px;
        min-height: 220px;
    }

    .worry-swiper {
        padding: 0;
    }

    .worry-card-name {
        font-size: 20px;
    }

    .worry-card-value {
        font-size: 24px;
    }
}

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

    .worry-title {
        font-size: 32px;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
    }

    .worry-bubble {
        padding: 20px 32px;
        font-size: 20px;
    }

    .worry-bubble::after {
        border-width: 14px;
        bottom: -14px;
    }

    .worry-emblem-placeholder {
        width: 220px;
        min-height: 180px;
    }

    .worry-swiper-wrap {
        padding: 32px 0 48px;
    }

    .worry-card-body {
        padding: 28px 20px 24px;
    }

    .worry-card-name {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .worry-card-value {
        font-size: 22px;
    }
}

/* 강렬한 레드색상 인테리어 */
.section-interior-showcase {
    padding: 100px 20px;
    background: #0a0a0a;
}

.section-interior-showcase h2 {
    font-size: var(--font-l);
    text-align: center;
    color: #fff;
    margin: 0 0 60px;
    line-height: 1.4;
}

.interior-showcase-gallery {
    display: flex;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.interior-showcase-item {
    flex: 1;
}

.interior-showcase-card {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

/* 강렬한 레드색상 인테리어 Swiper */
.section-interior-swiper {
    padding: 0 0 100px;
    background: #0a0a0a;
}

.interior-swiper-head {
    background: #111;
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%), linear-gradient(-45deg, #1a1a1a 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #1a1a1a 75%), linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    padding: 48px 20px;
    text-align: center;
}

.interior-swiper-title-red {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #c30d23;
    margin: 0 0 8px;
}

.interior-swiper-title-white {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.interior-swiper-wrap {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.interior-swiper-main {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 420px;
}

.interior-swiper-main .swiper-slide {
    height: 420px;
    position: relative;
}

.interior-swiper-slide-img {
    width: 100%;
    padding-bottom: 58.33%;
    background-size: cover;
    background-position: center;
    background-color: #222;
}

/* 데스크톱에서 슬라이드 이미지가 지정 높이 안에 꽉 차도록 */
.interior-swiper-main .swiper-slide .interior-swiper-slide-img {
    position: absolute;
    inset: 0;
    padding-bottom: 0;
    height: 100%;
}

@media (max-width: 768px) {
    .interior-swiper-main {
        height: 300px;
    }

    .interior-swiper-main .swiper-slide {
        height: 300px;
        position: relative;
    }

    .interior-swiper-slide-img {
        padding-bottom: 0;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .interior-swiper-main {
        height: 240px;
    }

    .interior-swiper-main .swiper-slide {
        height: 240px;
    }
}

.interior-swiper-thumbs {
    height: 88px;
    overflow: hidden;
}

.interior-swiper-thumbs .swiper-wrapper {
    align-items: center;
}

.interior-swiper-thumbs .swiper-slide {
    width: 160px;
    flex-shrink: 0;
    cursor: pointer;
    height: auto;
}

.interior-swiper-thumb-img {
    width: 100%;
    height: 72px;
    padding-bottom: 0;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: border-color .2s, opacity .2s;
    background-color: #222;
}

.interior-swiper-thumbs .swiper-slide-thumb-active .interior-swiper-thumb-img,
.interior-swiper-thumbs .swiper-slide-active .interior-swiper-thumb-img {
    border-color: #c30d23;
    opacity: 1;
}

.interior-swiper-thumbs .swiper-slide:not(.swiper-slide-thumb-active):not(.swiper-slide-active) .interior-swiper-thumb-img {
    opacity: .7;
}

.interior-swiper-main .swiper-button-prev,
.interior-swiper-main .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, .5);
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.interior-swiper-main .swiper-button-prev::after,
.interior-swiper-main .swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
}

.interior-swiper-desc {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #aaa;
    font-size: var(--font-s);
    line-height: 1.9;
}

.interior-swiper-desc p {
    margin: 0 0 16px;
}

.interior-swiper-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .interior-swiper-head {
        padding: 36px 16px;
    }

    .interior-swiper-thumbs {
        height: 72px;
    }

    .interior-swiper-thumbs .swiper-slide {
        width: 100px;
    }

    .interior-swiper-thumb-img {
        height: 56px;
    }

    .interior-swiper-thumbs.swiper-free-mode {
        height: auto;
    }

    .interior-swiper-thumbs.swiper-free-mode .swiper-wrapper {
        height: auto;
        min-height: 0;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .interior-swiper-thumbs {
        height: 64px;
    }

    .interior-swiper-thumbs .swiper-slide {
        width: 80px;
    }

    .interior-swiper-thumb-img {
        height: 48px;
    }
}

/* 홀&테이크아웃 맞춤형 최적화 */
.section-optimization {
    padding: 100px 20px;
    background: linear-gradient(180deg, #faf8f6 0%, #fff 30%, #fff 70%, #faf8f6 100%);
    position: relative;
    overflow: hidden;
}

.optimization-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image: radial-gradient(#c30d23 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
}

.optimization-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.optimization-head h2 {
    font-size: var(--font-l);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px;
    color: #111;
}

.optimization-head .optimization-title-black {
    color: #111;
}

.optimization-head h2 strong {
    color: #c30d23;
    font-weight: 700;
}

.optimization-head-line {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #c30d23, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.optimization-cols {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.optimization-col {
    flex: 1;
    padding: 0;
    border-radius: 20px;
    min-height: 200px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(0, 0, 0, .04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.optimization-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08), 0 4px 12px rgba(195, 13, 35, .08);
}

.optimization-col-img {
    width: 100%;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.optimization-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.optimization-col-hall {
    background: linear-gradient(145deg, #f8edd9 0%, #f5e6d3 50%, #f0dfc8 100%);
}

.optimization-col-hall .optimization-col-icon,
.optimization-col-hall .optimization-label,
.optimization-col-hall .optimization-col-desc {
    padding-left: 32px;
    padding-right: 32px;
}

.optimization-col-hall .optimization-label {
    margin-top: 24px;
}

.optimization-col-hall .optimization-col-desc {
    padding-bottom: 40px;
}

.optimization-col-takeout {
    background: linear-gradient(145deg, #fce8ec 0%, #f8e4e8 50%, #f5dce2 100%);
}

.optimization-col-takeout .optimization-col-icon,
.optimization-col-takeout .optimization-label,
.optimization-col-takeout .optimization-col-desc {
    padding-left: 32px;
    padding-right: 32px;
}

.optimization-col-takeout .optimization-label {
    margin-top: 24px;
}

.optimization-col-takeout .optimization-col-desc {
    padding-bottom: 40px;
}

.optimization-col-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: rgba(195, 13, 35, .25);
    line-height: 1;
}

.optimization-col-icon-takeout {
    color: rgba(184, 134, 11, .35);
}

.optimization-label {
    display: inline-block;
    padding: 16px 28px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    line-height: 1.45;
    margin-inline: 24px;
    letter-spacing: 0.02em;
    font-family: 'Outfit', var(--font-sub);
}

.optimization-label::first-line {
    font-size: 0.9em;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.optimization-label-hall {
    border: 2px solid #c30d23;
    color: #c30d23;
    background: rgba(255, 255, 255, .9);
}

.optimization-label-takeout {
    border: 2px solid #d4a84b;
    color: #8b6914;
    background: rgba(255, 255, 255, .9);
}

.optimization-col-desc {
    font-size: var(--font-s);
    line-height: 1.75;
    margin: 0;
    color: #222;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .optimization-cols {
        flex-direction: column;
    }

    .optimization-head h2 {
        font-size: 26px;
    }

    .optimization-col-img {
        height: 280px;
        max-height: 280px;
    }

    .optimization-col-hall .optimization-col-icon,
    .optimization-col-hall .optimization-label,
    .optimization-col-hall .optimization-col-desc,
    .optimization-col-takeout .optimization-col-icon,
    .optimization-col-takeout .optimization-label,
    .optimization-col-takeout .optimization-col-desc {
        padding-left: 24px;
        padding-right: 24px;
    }

    .optimization-col-hall .optimization-col-desc,
    .optimization-col-takeout .optimization-col-desc {
        padding-bottom: 28px;
    }

    .optimization-col-desc {
        font-size: 15px;
    }
}

/* SV무한서포트 프로젝트 */
.section-support {
    padding: 0;
    text-align: center;
}

.support-top {
    padding: 100px 20px;
    background: #fff;
}

.support-top .container {
    max-width: 800px;
    margin: 0 auto;
}

.support-headline {
    font-size: var(--font-l);
    font-weight: 800;
    color: #222;
    line-height: 1.35;
    margin: 0 0 16px;
}

.support-headline-accent {
    color: #c30d23;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #c30d23;
    text-decoration-thickness: 3px;
}

.support-subtitle {
    font-size: var(--font-m);
    color: #444;
    margin: 0 0 48px;
    line-height: 1.6;
    font-weight: 500;
}

.support-result {
    padding: 40px 36px;
    background: #f8f8f8;
    border-radius: 16px;
    border-left: 6px solid #c30d23;
    text-align: left;
}

.support-result-lead {
    font-size: var(--font-m);
    color: #222;
    line-height: 1.75;
    margin: 0 0 16px;
    font-weight: 500;
}

.support-result-lead strong {
    color: #c30d23;
    font-weight: 800;
    font-size: 1.1em;
}

.support-result-avg {
    font-size: var(--font-s);
    color: #333;
    margin: 0;
    font-weight: 500;
}

.support-result-avg strong {
    color: #c30d23;
    font-weight: 800;
    font-size: 1.15em;
}

.support-cases {
    padding: 80px 20px 100px;
    background: #c30d23;
}

.support-cases .container {
    max-width: 1000px;
    margin: 0 auto;
}

.support-cases-title {
    font-size: var(--font-l);
    color: #fff;
    font-weight: 800;
    margin: 0 0 40px;
    letter-spacing: -0.02em;
}

.support-case-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-case-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 32px 28px;
    background: #fff;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.support-case-num {
    font-size: var(--font-s);
    font-weight: 800;
    color: #c30d23;
    margin: 0 0 14px;
    letter-spacing: 0.02em;
}

.support-case-store {
    font-size: var(--font-m);
    font-weight: 800;
    color: #222;
    margin: 0 0 14px;
    line-height: 1.4;
    word-break: keep-all;
}

.support-case-rate {
    font-size: var(--font-m);
    color: #c30d23;
    font-weight: 800;
    margin: 0 0 10px;
}

.support-case-rate strong {
    font-weight: 900;
    font-size: 1.1em;
}

.support-case-amount {
    font-size: var(--font-s);
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* SV 섹션 바로 아래 브랜드 마퀴: 흰배경 + 빨간테두리, 빨간글씨/흰배경 ↔ 흰글씨/빨간알약 */
.support-brand-marquee-wrap {
    background: #fff;
    overflow: hidden;
    padding: 12px 0;
}

.support-brand-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: support-brand-marquee 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.support-brand-tag {
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.02em;
    padding: 10px 20px;
}

.support-brand-tag-white {
    background: #fff;
    color: #c30d23;
}

.support-brand-tag-red {
    background: #c30d23;
    color: #fff;
    border-radius: 999px;
    margin: 0 6px;
    font-size: 14px;
    font-weight: 600;
}

@keyframes support-brand-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 집중지원 가맹팀 추가혜택: 위 4개 / 아래 3개 중앙정렬, 정사각형 아이템, 중앙 absolute 마퀴 */
.section-franchise-benefits {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #fff;
}

.franchise-benefits-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.franchise-benefits-title {
    font-size: var(--font-l);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    text-align: center;
    letter-spacing: -0.02em;
}

.franchise-benefits-sub {
    font-size: var(--font-s);
    color: #333;
    margin: 0 0 48px;
    text-align: center;
}

.franchise-benefits-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.franchise-benefits-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.franchise-benefit-item {
    position: relative;
    width: 180px;
    aspect-ratio: 1;
    padding: 28px 14px 28px;
    background: #fff;
    border: 2px solid #c30d23;
    border-radius: 12px;
    text-align: center;
    transition: background .3s ease, color .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.franchise-benefit-item .franchise-benefit-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    line-height: 34px;
    border-radius: 50%;
    background: #c30d23;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.franchise-benefit-item .franchise-benefit-text {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    word-break: keep-all;
}

.franchise-benefit-item.on {
    background: #1a1a1a;
    border-color: #c30d23;
}

.franchise-benefit-item.on .franchise-benefit-num {
    background: #c30d23;
    color: #fff;
}

.franchise-benefit-item.on .franchise-benefit-text {
    color: #fff;
}

/* 마퀴: absolute 중앙, left 0 / width 100%, 폰트 키움 */
.franchise-benefits-marquee-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
    pointer-events: none;
    z-index: 0;
}

.franchise-benefits-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: franchise-benefits-marquee 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.franchise-benefits-marquee-item {
    flex-shrink: 0;
    font-family: 'Mogra', sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 0 32px;
    color: #c30d23;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
}

@keyframes franchise-benefits-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .franchise-benefit-item {
        width: 160px;
        padding: 26px 12px;
    }

    .franchise-benefit-item .franchise-benefit-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-franchise-benefits {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .franchise-benefits-sub {
        margin-bottom: 28px;
    }

    .franchise-benefits-visual {
        gap: 24px;
    }

    .franchise-benefits-items {
        gap: 14px;
    }

    .franchise-benefit-item {
        width: 140px;
        padding: 24px 10px;
    }

    .franchise-benefit-item .franchise-benefit-num {
        width: 32px;
        height: 32px;
        line-height: 30px;
        font-size: 12px;
    }

    .franchise-benefit-item .franchise-benefit-text {
        font-size: 18px;
    }

    .franchise-benefits-marquee-item {
        font-size: clamp(32px, 6vw, 48px);
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .franchise-benefit-item {
        width: 120px;
        padding: 22px 8px;
    }

    .franchise-benefit-item .franchise-benefit-text {
        font-size: 16px;
    }
}

/* 초보사장님도 걱정 뚝! */
.section-confidence {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background: #c30d23;
    text-align: center;
}

.confidence-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 56px 48px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
}

.confidence-subtitle {
    display: inline-block;
    font-size: var(--font-s);
    font-weight: 700;
    color: #fff;
    background: #c30d23;
    padding: 8px 20px;
    border-radius: 6px;
    margin: 0 0 20px;
}

.confidence-content h2 {
    font-size: var(--font-l);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.35;
}

.confidence-accent {
    color: #c30d23;
    font-weight: 900;
}

.confidence-desc {
    font-size: var(--font-s);
    color: #333;
    margin: 0 0 44px;
    line-height: 1.75;
}

.confidence-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
    text-align: center;
}

.confidence-card {
    background: linear-gradient(180deg, #2d2d2d 0%, #1f1f1f 100%);
    border-radius: 16px;
    padding: 32px 28px 48px;
    position: relative;
    overflow: hidden;
}

.confidence-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(255, 255, 255, .12) 8px, rgba(255, 255, 255, .12) 16px);
    border-radius: 0 0 16px 16px;
}

.confidence-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}

.confidence-card-visual {
    margin-bottom: 20px;
}

.confidence-card-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, .06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.confidence-badge-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .08em;
}

.confidence-badge-main {
    font-size: var(--font-s);
    font-weight: 800;
    color: #d4af37;
}

.confidence-badge-num {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.confidence-card-tag {
    display: inline-block;
    font-size: var(--font-s);
    font-weight: 800;
    color: #1a1a1a;
    background: #ffc107;
    padding: 16px 28px;
    border-radius: 10px;
}

.confidence-card-desc {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
    margin: 0;
}

.confidence-footer {
    font-size: var(--font-s);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

.confidence-logo {
    margin-top: 32px;
    text-align: center;
}

.confidence-logo img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

/* 누구나 쉬운 운영 시스템 */
.section-easy-system {
    padding: 100px 20px;
    background: #000;
}

.easy-system-content {
    max-width: 1400px;
    margin: 0 auto;
}

.easy-system-subtitle {
    text-align: center;
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .8);
    margin: 0 0 16px;
}

.easy-system-content h2 {
    text-align: center;
    font-size: var(--font-l);
    font-weight: 900;
    color: #fff;
    margin: 0 0 40px;
}

.easy-system-banner {
    background: #c30d23;
    padding: 30px 40px;
    margin: 0 0 60px;
    border-radius: 12px;
    text-align: center;
}

.easy-system-banner-text {
    font-size: 26px;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.easy-system-banner-text strong {
    font-weight: 900;
}

.easy-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.easy-system-card {
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.easy-system-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.easy-system-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.easy-system-card-content {
    padding: 30px 24px;
    flex: 1;
}

.easy-system-card-content h3 {
    font-size: var(--font-s);
    font-weight: 700;
    color: #8b1a1a;
    margin: 0 0 12px;
    line-height: 1.4;
    text-align: center;
    word-break: break-word;
}

.easy-system-card-content p {
    font-size: var(--font-s);
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

/* tvN 놀라운 토요일 출연 */
.section-tvn {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background-image: url(/assets/bg_14-1.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.tvn-inner {
    max-width: 640px;
    margin: 0 auto;
}

.tvn-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-script);
    color: #fff;
    margin: 0 0 28px;
    letter-spacing: 0.5px;
}

.tvn-lead {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.tvn-product {
    font-size: 26px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    margin: 0 0 16px;
}

.tvn-brand {
    font-size: var(--font-l);
    font-weight: 900;
    color: #c30d23;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.tvn-desc {
    font-size: var(--font-s);
    color: rgba(255, 255, 255, .92);
    margin: 0 0 32px;
    line-height: 1.65;
}

.tvn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--font-m);
    font-weight: 700;
    color: #fff;
    background: #c30d23;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 20px rgba(195, 13, 35, .4);
}

.tvn-cta:hover {
    background: #a00b1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(195, 13, 35, .5);
}

.tvn-cta-arrow {
    font-size: var(--font-m);
    font-weight: 700;
    line-height: 1;
}

/* ONE-PACK SYSTEM */
.section-onepack {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    background: #0d0d0d;
    text-align: center;
}

.onepack-inner {
    max-width: 960px;
    margin: 0 auto;
}

.onepack-lead {
    font-size: var(--font-s);
    color: #fff;
    margin: 0 0 12px;
}

.onepack-headline {
    font-size: var(--font-l);
    font-weight: 900;
    color: #c30d23;
    margin: 0 0 12px;
    line-height: 1.2;
}

.onepack-sub {
    font-size: var(--font-s);
    color: #fff;
    margin: 0 0 32px;
}

.onepack-marquee-wrap {
    margin: 0 0 40px;
    height: 336px;
}

.onepack-quote-frame {
    position: relative;
    height: 112px;
    border: 2px solid #fff;
    border-radius: 12px;
    box-sizing: border-box;
}

.onepack-quote-frame .onepack-quote-mark {
    position: absolute;
    width: 36px;
    height: 36px;
    color: #fff;
    line-height: 0;
    opacity: .92;
}

.onepack-quote-frame .onepack-quote-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.onepack-quote-frame .onepack-quote-open {
    top: -18px;
    left: 25px;
    transform: translateX(-50%);
}

.onepack-quote-frame .onepack-quote-close {
    bottom: -18px;
    right: 25px;
    transform: translateX(50%) rotate(180deg);
}

.onepack-viewport {
    height: 300%;
    overflow: hidden;
}

.onepack-marquee-track {
    animation: onepackMarquee 9s ease-in-out infinite;
    will-change: transform;
}

@keyframes onepackMarquee {

    0%,
    10% {
        transform: translateY(0);
    }

    15%,
    45% {
        transform: translateY(-16.666%);
    }

    50%,
    80% {
        transform: translateY(-33.333%);
    }

    85%,
    100% {
        transform: translateY(-50%);
    }
}

.onepack-viewport {
    --onepack-lg: 40px;
    --onepack-md: 34px;
    --onepack-big-sm: 28px;
}

/* 보이는 3줄: 위=lg, 중간=md, 아래=big-sm (마퀴 타이밍과 동기화) */
@keyframes onepackFont1 {

    0%,
    10% {
        font-size: var(--onepack-lg);
        opacity: 1;
    }

    15%,
    100% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }
}

@keyframes onepackFont2 {

    0%,
    10% {
        font-size: var(--onepack-md);
        opacity: .88;
    }

    15%,
    45% {
        font-size: var(--onepack-lg);
        opacity: 1;
    }

    50%,
    100% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }
}

@keyframes onepackFont3 {

    0%,
    10% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }

    15%,
    45% {
        font-size: var(--onepack-md);
        opacity: .88;
    }

    50%,
    80% {
        font-size: var(--onepack-lg);
        opacity: 1;
    }

    85%,
    100% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }
}

@keyframes onepackFont4 {

    0%,
    45% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }

    50%,
    80% {
        font-size: var(--onepack-md);
        opacity: .88;
    }

    85%,
    100% {
        font-size: var(--onepack-lg);
        opacity: 1;
    }
}

@keyframes onepackFont5 {

    0%,
    80% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }

    85%,
    100% {
        font-size: var(--onepack-md);
        opacity: .88;
    }
}

@keyframes onepackFont6 {

    0%,
    100% {
        font-size: var(--onepack-big-sm);
        opacity: .75;
    }
}

.onepack-block {
    height: 112px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.onepack-marquee-track .onepack-block:nth-child(1) .onepack-line-big {
    animation: onepackFont1 9s ease-in-out infinite;
}

.onepack-marquee-track .onepack-block:nth-child(2) .onepack-line-big {
    animation: onepackFont2 9s ease-in-out infinite;
}

.onepack-marquee-track .onepack-block:nth-child(3) .onepack-line-big {
    animation: onepackFont3 9s ease-in-out infinite;
}

.onepack-marquee-track .onepack-block:nth-child(4) .onepack-line-big {
    animation: onepackFont4 9s ease-in-out infinite;
}

.onepack-marquee-track .onepack-block:nth-child(5) .onepack-line-big {
    animation: onepackFont5 9s ease-in-out infinite;
}

.onepack-marquee-track .onepack-block:nth-child(6) .onepack-line-big {
    animation: onepackFont6 9s ease-in-out infinite;
}

.onepack-line {
    margin: 0;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.onepack-line-big {
    font-size: var(--onepack-big-sm);
    opacity: .75;
}

.onepack-brand {
    font-size: 56px;
    font-weight: 900;
    color: #c30d23;
    letter-spacing: .08em;
    margin: 0;
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.tvn-img-card {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
    position: relative;
}

.tvn-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c30d23;
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .landing-page .container {
        padding: 0 24px;
    }

    .section-pad {
        padding: 60px 20px;
    }

    .section-signature-ko {
        font-size: 32px;
    }

    .signature-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 28px 20px;
    }

    .guarantee-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .guarantee-highlight-item {
        font-size: 16px;
        padding: 24px 20px;
    }

    .advantage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .core-reasons {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .cuisine-item {
        flex: 0 0 180px;
    }

    .cuisine-item-img {
        height: 160px;
    }
}

/* 태블릿: 토글 버튼 + 헤더 아래 우측 패널 */
@media (max-width: 1024px) {
    .gnb-toggle {
        display: flex;
    }

    .gnb-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        bottom: 0;
        width: min(300px, 80vw);
        background: rgba(10, 10, 10, .98);
        border-left: 1px solid rgba(195, 13, 35, .3);
        flex-direction: column;
        padding: 24px 0;
        margin: 0;
        gap: 0;
        z-index: 999;
        transition: right .3s ease-out;
        box-shadow: -4px 0 20px rgba(0, 0, 0, .25);
    }

    .gnb-menu a {
        display: block;
        padding: 14px 24px;
        font-size: 17px;
    }

    .top-gnb.menu-open .gnb-menu {
        right: 0;
    }

    .top-gnb.menu-open .gnb-toggle .gnb-toggle-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .top-gnb.menu-open .gnb-toggle .gnb-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .top-gnb.menu-open .gnb-toggle .gnb-toggle-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .landing-page {
        --font-lg: 36px;
        --font-md: 24px;
        --font-sm: 16px;
    }

    .gnb-menu {
        top: 100px;
        height: calc(100dvh - 100px);
    }

    .hero {
        padding: 90px 16px 50px;
    }

    .section-pad {
        padding: 48px 16px;
        text-align: center;
    }

    .section-support {
        padding: 0;
    }

    .support-top {
        padding: 60px 16px;
    }

    .support-headline {
        font-size: var(--font-m);
    }

    .support-headline-accent {
        text-underline-offset: 6px;
        text-decoration-thickness: 2px;
    }

    .support-subtitle {
        font-size: 19px;
        margin-bottom: 36px;
    }

    .support-result {
        padding: 28px 24px;
    }

    .support-result-lead {
        font-size: 18px;
    }

    .support-result-avg {
        font-size: 17px;
    }

    .support-cases {
        padding: 60px 16px 80px;
    }

    .support-cases-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .support-case-card {
        min-width: 100%;
        max-width: 100%;
        padding: 28px 24px;
    }

    .support-case-store {
        font-size: 18px;
    }

    .support-case-rate {
        font-size: 22px;
    }

    .support-case-amount {
        font-size: 16px;
    }

    .support-brand-tag {
        font-size: 14px;
        padding: 8px 16px;
    }

    .support-brand-tag-red {
        font-size: 13px;
        margin: 0 4px;
    }

    .section-signature-ko {
        font-size: 26px;
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 16px;
    }



    .signature-card-info h3 {
        font-size: 20px;
    }

    .signature-card-info p {
        font-size: 15px;
    }

    .guarantee-highlights {
        grid-template-columns: 1fr;
        margin-bottom: 36px;
    }

    .guarantee-highlight-item {
        font-size: 15px;
        padding: 20px 18px;
    }

    .section-advantage h2,
    .section-core h2,
    .section-cuisine h2,
    .section-inquiry h2,
    .section-store-search h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .store-title h2 {
        font-size: 26px;
    }

    .store-title-desc {
        font-size: 13px;
    }

    .store-title-img {
        max-width: 100px;
    }

    .store-search-top {
        margin-bottom: 20px;
    }

    .filter form {
        flex-direction: column;
        gap: 10px;
    }

    .store-search-btn {
        width: 100%;
    }

    .store-map-wrapper {
        margin-bottom: 20px;
    }

    .store-map {
        min-height: 400px;
    }

    .map-ui {
        margin-top: 0;
    }

    .list-header {
        padding: 14px 20px;
    }

    .list {
        max-height: 350px;
    }

    .list li {
        padding: 16px 20px;
    }

    .list li:hover {
        padding-left: 24px;
    }

    .list li h5 {
        font-size: 15px;
    }

    .list li p {
        font-size: 12px;
    }

    /* 새로 추가된 섹션 반응형 */
    .profit-banner-bottom {
        padding: 60px 20px 0;
    }

    .profit-question {
        font-size: 84px;
    }

    .profit-question-line2,
    .profit-question-line3 {
        font-size: 44px;
    }

    .profit-marquee-wrap {
        margin-left: -20px;
        margin-right: -20px;
        padding: 16px 0;
    }

    .profit-tag {
        font-size: 16px;
        padding: 10px 20px;
    }

    .startup-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .benefit-card {
        padding: 30px 22px 34px;
    }

    .benefit-card-featured {
        padding: 34px 24px 38px;
    }

    .benefit-card-badge {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .benefit-card-featured .benefit-card-badge {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .title-line2-yellow,
    .title-line3 {
        font-size: 48px;
    }

    .title-line4 {
        font-size: 56px;
    }

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

    .premium-location-message {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .premium-speech-bubble {
        max-width: 100%;
    }

    .recruit-bottom {
        flex-direction: column;
    }

    .interview-grid {
        flex-direction: column;
    }

    .difference-content {
        flex-direction: column;
    }

    .difference-right h2,
    .difference-question {
        text-align: center;
    }

    .difference-tags {
        justify-content: center;
    }

    .multi-brand-title {
        font-size: 48px;
    }

    .quote-open,
    .quote-close {
        font-size: 56px;
    }

    .multi-brand-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-plus {
        transform: rotate(90deg);
    }

    .multi-brand-logos {
        gap: 20px;
    }

    .brand-logo-item {
        width: 150px;
        height: 150px;
    }

    .easy-system-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .easy-system-card-img {
        height: 250px;
    }

    .margin-lead {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .margin-headline-row {
        gap: 20px;
        margin-bottom: 20px;
    }

    .margin-title {
        font-size: 48px;
    }

    .margin-big,
    .margin-unit,
    .margin-plus {
        font-size: 110px;
    }

    .margin-tagline {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .margin-desc {
        font-size: 22px;
    }

    .margin-label {
        font-size: 22px;
    }

    .margin-value {
        font-size: 36px;
    }

    .margin-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .section-margin-compare {
        padding: 80px 20px;
    }

    .margin-compare-lead {
        font-size: 26px;
    }

    .margin-compare-redbox {
        font-size: 26px;
        padding: 16px 36px;
        margin-bottom: 40px;
    }

    .margin-compare-line1,
    .margin-compare-line2 {
        font-size: 56px;
    }

    .profit-headline {
        font-size: 40px;
    }

    .profit-headline-red {
        font-size: 48px;
    }

    .profit-compare-top {
        flex-direction: column;
        padding: 28px 20px;
    }

    .profit-compare-label {
        font-size: 17px;
    }

    .profit-compare-value {
        font-size: 30px;
    }

    .profit-compare-benefits {
        padding: 28px 28px;
    }

    .profit-benefit-title {
        font-size: 20px;
    }

    .profit-benefit-desc {
        font-size: 17px;
    }

    .profit-benefit-item {
        margin-bottom: 20px;
    }

    .profit-net-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 24px 28px;
    }

    .profit-net-divider {
        display: none;
    }

    .profit-net-label {
        font-size: 24px;
    }

    .profit-net-value {
        font-size: 44px;
    }

    .section-profit-calc {
        padding: 80px 20px;
    }

    .profit-calc-headline {
        font-size: 38px;
    }

    .profit-calc-highlight {
        font-size: 42px;
    }

    .profit-calc-sub1 {
        font-size: 20px;
    }

    .profit-calc-sub2 {
        font-size: 18px;
    }

    .profit-calc-body {
        flex-direction: column;
        gap: 0;
    }

    .profit-calc-left {
        padding: 40px 24px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .profit-calc-result-bar {
        border-radius: 0 0 20px 20px;
    }

    .profit-calc-arrow-wrap {
        padding: 20px 0;
        transform: rotate(90deg);
    }

    .profit-calc-arrow {
        font-size: 48px;
    }

    .profit-calc-pie {
        width: 180px;
        height: 180px;
    }

    .profit-calc-pie-label {
        font-size: 14px;
    }

    .profit-calc-pie-pct {
        font-size: 18px;
    }

    .profit-calc-sales {
        font-size: 16px;
        padding: 10px 24px;
    }

    .profit-calc-table-title {
        font-size: 18px;
        padding: 18px 20px;
    }

    .profit-calc-table th,
    .profit-calc-table td {
        font-size: 16px;
        padding: 12px 18px;
    }

    .profit-calc-detail {
        font-size: 16px;
    }

    .profit-calc-amount,
    .profit-calc-pct {
        font-size: 18px;
    }

    .profit-calc-table-wrap {
        max-width: 100%;
    }

    .profit-calc-result-bar {
        padding: 22px 24px;
    }

    .profit-calc-result-label {
        font-size: 20px;
    }

    .profit-calc-result-value {
        font-size: 30px;
    }

    .section-brand-growth {
        padding: 64px 16px;
    }

    .brand-growth-logo {
        font-size: 22px;
        letter-spacing: .15em;
    }

    .brand-growth-headline {
        font-size: 34px;
        gap: 6px;
    }

    .brand-growth-line1 {
        white-space: normal;
    }

    .brand-growth-flame {
        font-size: 28px;
    }

    .brand-growth-tagline {
        font-size: 20px;
        margin-bottom: 36px;
    }

    .brand-growth-top {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 24px;
    }

    .brand-growth-card-franchise {
        min-width: 100%;
        max-width: 100%;
        padding: 32px 28px;
    }

    .brand-growth-card-num {
        font-size: 52px;
    }

    .brand-growth-card-unit {
        font-size: 22px;
    }

    .brand-growth-card-rate {
        min-width: 100%;
        padding: 32px;
    }

    .brand-growth-rate-value {
        font-size: 48px;
    }

    .brand-growth-years-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .brand-growth-years {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
        width: 100%;
    }

    .brand-growth-year-item {
        padding: 22px 16px;
    }

    .brand-growth-year-count {
        font-size: 30px;
    }

    .brand-growth-year-desc {
        font-size: 13px;
    }

    .confidence-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .confidence-content {
        padding: 40px 24px 36px;
    }

    .confidence-content h2 {
        font-size: 30px;
    }

    .confidence-card-title {
        font-size: 18px;
    }

    .confidence-logo {
        margin-top: 24px;
    }

    .confidence-logo img {
        max-width: 140px;
    }

    .section-tvn {
        padding: 60px 16px;
    }

    .section-onepack {
        padding: 60px 16px;
    }

    .onepack-headline {
        font-size: 32px;
    }

    .onepack-marquee-wrap {
        margin-bottom: 28px;
        height: 264px;
    }

    .onepack-quote-frame {
        height: 88px;
    }

    .onepack-block {
        height: 88px;
    }

    .onepack-viewport {
        --onepack-lg: 32px;
        --onepack-md: 28px;
        --onepack-big-sm: 24px;
    }

    .onepack-quote-frame .onepack-quote-mark {
        font-size: 40px;
    }

    .onepack-brand {
        font-size: 38px;
        letter-spacing: .04em;
    }

    .tvn-tag {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .tvn-lead {
        font-size: 26px;
    }

    .tvn-product {
        font-size: 22px;
    }

    .tvn-brand {
        font-size: 38px;
    }

    .tvn-desc {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .tvn-cta {
        font-size: 17px;
        padding: 16px 28px;
    }

    .easy-system-images {
        flex-direction: column;
        gap: 24px;
    }

    .easy-system-img-item {
        max-width: 100%;
    }

    .easy-system-img-card {
        height: 400px;
    }

    .hot-brand-features,
    .support-case-cards,
    .easy-system-features {
        flex-direction: column;
        gap: 24px;
    }

    .hot-brand-feature,
    .support-case-card,
    .easy-system-feature {
        max-width: 100%;
    }

    .interior-showcase-gallery {
        flex-direction: column;
    }

    .section-interior-showcase h2 {
        font-size: 26px;
    }

    .section-recruit-banner {
        padding: 16px;
    }

    .recruit-banner-inner {
        min-height: auto;
        gap: 24px;
    }

    .recruit-banner-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 16px;
    }

    .recruit-banner-content .recruit-content-title {
        font-size: 1.75rem;
        white-space: normal;
        grid-row: 1;
    }

    .recruit-banner-content .recruit-map {
        grid-column: 1;
        grid-row: 2;
    }

    .recruit-banner-content .recruit-marker {
        grid-column: 1;
        grid-row: 3;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .recruit-section-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .recruit-section-desc {
        font-size: 18px;
    }

    .premium-title-red {
        font-size: 42px;
    }

    .premium-location-cards {
        grid-template-columns: 1fr;
    }

    .premium-card-text {
        font-size: 16px;
    }

    .premium-card-price-old {
        font-size: 18px;
    }

    .premium-card-price-new {
        font-size: 28px;
    }

    .premium-card-visual:has(.premium-card-price-new) {
        padding: 16px 20px;
    }

    .premium-card-amount-single .premium-card-price-new {
        font-size: 26px;
    }

    .premium-card-img-box,
    .premium-card-img-truck,
    .premium-card-img-sns,
    .premium-card-img-place {
        height: 100px;
    }

    .premium-speech-bubble {
        padding: 0;
    }

    .premium-speech-bubble p {
        font-size: 16px;
    }

    .adv-icon-card {
        width: 100%;
        height: 100%;
    }

    .adv-title {
        font-size: 15px;
    }

    .adv-desc {
        font-size: 13px;
    }

    .core-number {
        font-size: 20px;
    }

    .core-number strong {
        font-size: 28px;
    }

    .core-reason .num {
        font-size: 24px;
    }

    .core-reason h4 {
        font-size: 16px;
    }

    .reason-img {
        height: 160px;
    }

    .cuisine-tabs {
        justify-content: center;
        gap: 8px;
    }

    .cuisine-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .cuisine-item {
        flex: 0 0 160px;
    }

    .cuisine-item-img {
        height: 140px;
    }

    .cuisine-item-name {
        font-size: 13px;
    }

    .inquiry-row-2 {
        grid-template-columns: 1fr;
    }

    .inquiry-form-card {
        padding: 28px 20px;
    }

    .inquiry-banner {
        margin-bottom: 32px;
    }

    .inquiry-banner-red {
        padding: 28px 20px 24px;
    }

    .inquiry-banner-head {
        font-size: 16px;
    }

    .inquiry-banner-tag {
        font-size: 15px;
        padding: 5px 12px;
    }

    .inquiry-banner-main {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .inquiry-banner-money {
        font-size: 24px;
    }

    .inquiry-banner-cta {
        padding: 14px 20px;
    }

    .inquiry-banner-cta-phone {
        font-size: 22px;
    }

    .inquiry-banner-black {
        padding: 22px 18px 20px;
    }

    .inquiry-banner-lead {
        font-size: 15px;
    }

    .inquiry-footer-brand {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .landing-page {
        --font-lg: 28px;
        --font-md: 20px;
        --font-sm: 14px;
    }

    .section-store-search {
        padding: 60px 16px;
    }

    .store-title-badge {
        font-size: 11px;
        padding: 5px 18px;
    }

    .store-title h2 {
        font-size: 26px;
    }

    .store-title-desc {
        font-size: 13px;
    }

    .store-title-img {
        max-width: 100px;
    }

    .store-search-top {
        margin-bottom: 20px;
    }

    .store-map-wrapper {
        margin-bottom: 16px;
    }

    .store-map {
        min-height: 350px;
    }

    .map-info-badge {
        padding: 8px 14px;
        font-size: 11px;
    }

    .store-selected-info {
        padding: 14px 16px;
    }

    .store-selected-info .store-selected-placeholder {
        font-size: 13px;
    }

    .map-ui {
        margin-top: 0;
    }

    .list-header {
        padding: 12px 16px;
    }

    .list {
        max-height: 300px;
    }

    .filter form {
        flex-direction: column;
        gap: 10px;
    }

    .store-search-btn {
        width: 100%;
    }

    .list li {
        padding: 14px 16px;
    }

    .list li:hover {
        padding-left: 22px;
    }

    .list li h5 {
        font-size: 14px;
    }

    .list li p {
        font-size: 11px;
    }

    .empty-data {
        padding: 40px 20px;
        font-size: 13px;
    }

    .empty-data .empty-icon {
        font-size: 32px;
    }

    .section-signature-ko {
        font-size: 22px;
    }

    .signature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 24px 16px;
    }



    .signature-card-info h3 {
        font-size: 17px;
    }

    .signature-card-info p {
        font-size: 13px;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .cuisine-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .cuisine-item {
        flex: 0 0 130px;
    }

    .cuisine-item-img {
        height: 120px;
    }

    /* 새로 추가된 섹션 모바일 반응형 */
    .multi-brand-title {
        font-size: 36px;
    }

    .quote-open,
    .quote-close {
        font-size: 42px;
    }

    .multi-brand-top {
        font-size: 20px;
    }

    .multi-brand-sub {
        font-size: 16px;
    }

    .multi-brand-tagline {
        font-size: 18px;
    }

    .brand-logo-item {
        width: 120px;
        height: 120px;
    }

    .section-recruit-banner {
        padding: 12px;
    }

    .recruit-section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .recruit-section-desc {
        font-size: 16px;
    }

    .profit-question {
        font-size: 56px;
    }

    .profit-question-line2,
    .profit-question-line3 {
        font-size: 30px;
    }

    .title-line2-yellow,
    .title-line3 {
        font-size: 28px;
    }

    .title-line4 {
        font-size: 32px;
    }

    .premium-title-black {
        font-size: 24px;
    }

    .premium-title-red {
        font-size: 32px;
    }

    .section-owner-interview h2,
    .difference-right h2,
    .difference-question {
        font-size: 24px;
    }

    .easy-system-content h2 {
        font-size: 28px;
    }

    .easy-system-banner-text {
        font-size: 16px;
    }

    .easy-system-grid {
        grid-template-columns: 1fr;
    }

    .easy-system-card-content h3 {
        font-size: var(--font-s);
    }

    .easy-system-card-content p {
        font-size: 14px;
    }

    .startup-benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card-span-2 {
        grid-column: span 1;
    }

    .benefit-card {
        padding: 28px 20px 32px;
    }

    .benefit-card-featured {
        padding: 32px 22px 36px;
    }

    .benefit-card-badge {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .benefit-card-featured .benefit-card-badge {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .benefit-card-badge-wide {
        min-width: 88px;
        height: 38px;
        padding: 0 14px;
        font-size: 0.85rem;
    }

    .title-line2-yellow,
    .title-line3 {
        font-size: 36px;
    }

    .title-line4 {
        font-size: 42px;
    }

    .hot-brand-feature h3,
    .support-case-store {
        font-size: 18px;
    }

    .margin-lead {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .margin-headline-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .margin-title {
        font-size: 34px;
    }

    .margin-big,
    .margin-unit,
    .margin-plus {
        font-size: 72px;
    }

    .margin-tagline {
        font-size: 20px;
        margin-bottom: 32px;
    }

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

    .margin-label {
        font-size: 20px;
    }

    .margin-value {
        font-size: 32px;
    }

    .section-margin-compare {
        padding: 60px 16px;
    }

    .margin-compare-lead {
        font-size: 22px;
    }

    .margin-compare-redbox {
        font-size: 22px;
        padding: 14px 28px;
        margin-bottom: 32px;
    }

    .margin-compare-line1,
    .margin-compare-line2 {
        font-size: 44px;
    }

    .profit-headline {
        font-size: 26px;
    }

    .profit-headline-red {
        font-size: 32px;
    }

    .profit-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .profit-compare-top {
        padding: 24px 16px;
        gap: 16px;
    }

    .profit-compare-label {
        font-size: 14px;
    }

    .profit-compare-value {
        font-size: 22px;
    }

    .profit-compare-vs {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .profit-compare-benefits {
        padding: 22px 18px;
    }

    .profit-benefit-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .profit-benefit-title {
        font-size: 19px;
    }

    .profit-benefit-desc {
        font-size: 16px;
    }

    .profit-net-bar {
        padding: 20px 18px;
    }

    .profit-net-label {
        font-size: 22px;
    }

    .profit-net-value {
        font-size: 38px;
    }

    .section-profit-calc {
        padding: 60px 16px;
    }

    .profit-calc-header {
        margin-bottom: 32px;
    }

    .profit-calc-headline {
        font-size: 28px;
    }

    .profit-calc-highlight {
        font-size: 32px;
    }

    .profit-calc-sub1 {
        font-size: 18px;
    }

    .profit-calc-sub2 {
        font-size: 16px;
    }

    .profit-calc-left {
        padding: 32px 20px;
        min-width: auto;
    }

    .profit-calc-pie {
        width: 160px;
        height: 160px;
    }

    .profit-calc-pie-label {
        font-size: 13px;
    }

    .profit-calc-pie-pct {
        font-size: 16px;
    }

    .profit-calc-sales {
        font-size: 18px;
        padding: 10px 24px;
    }

    .profit-calc-arrow-wrap {
        padding: 16px 0;
    }

    .profit-calc-arrow {
        font-size: 40px;
    }

    .profit-calc-table-title {
        font-size: 18px;
        padding: 18px 16px;
    }

    .profit-calc-table th,
    .profit-calc-table td {
        padding: 12px 16px;
        font-size: 16px;
    }

    .profit-calc-table th {
        font-size: 15px;
    }

    .profit-calc-detail {
        font-size: 14px;
    }

    .profit-calc-amount,
    .profit-calc-pct {
        font-size: 16px;
    }

    .profit-calc-result-bar {
        padding: 20px 18px;
    }

    .profit-calc-result-label {
        font-size: 18px;
    }

    .profit-calc-result-value {
        font-size: 26px;
    }

    .section-brand-growth {
        padding: 56px 16px;
    }

    .brand-growth-logo {
        font-size: 18px;
    }

    .brand-growth-headline {
        font-size: 28px;
    }

    .brand-growth-flame {
        font-size: 24px;
    }

    .brand-growth-tagline {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .brand-growth-top {
        margin-bottom: 32px;
    }

    .brand-growth-card {
        padding: 28px 24px;
    }

    .brand-growth-card-num {
        font-size: 44px;
    }

    .brand-growth-card-unit {
        font-size: 20px;
    }

    .brand-growth-rate-value {
        font-size: 42px;
    }

    .brand-growth-years-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .brand-growth-years {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .brand-growth-year-item {
        padding: 20px 16px;
    }

    .brand-growth-year-label {
        font-size: 16px;
    }

    .brand-growth-year-count {
        font-size: 28px;
    }

    .brand-growth-year-desc {
        font-size: 12px;
    }

    .confidence-content h2 {
        font-size: 26px;
    }

    .confidence-card-tag {
        font-size: 16px;
        padding: 14px 22px;
    }

    .hot-brand-feature h3,
    .support-case-store,
    .easy-system-feature h3 {
        font-size: 18px;
    }
}