@charset "UTF-8";

/* =========================================================================
   [공통] 폰트 및 공통 변수 셋팅
========================================================================= */
/* 슬라이더 */
@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-light: #F4F4F4;
    --main-green: #006E3F;
    --dark-green: #00361f;
    --text-black: #111111;
    --pop-yellow: #FFD400;

    --font-main: 'Pretendard', sans-serif;
    --font-title: 'GmarketSans', sans-serif;

    --trigger-width: clamp(160px, 18vw, 260px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
}

html,
body {
    font-family: var(--font-main);
    width: 100%;
    height: 100%;
    height: 100dvh;
    /* 추가: 모바일 동적 주소창 완벽 대응 */
    background-color: var(--bg-light);
    color: var(--text-black);
    overflow: hidden;
    overscroll-behavior: none;
    /* 추가: iOS 사파리 고무줄(바운스) 스크롤 현상 차단 */
}

.bg-white {
    background-color: #FAFAFA;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #111111 !important;
}

.c-green {
    color: var(--main-green) !important;
    font-weight: 700;
}

.c-pop {
    color: var(--pop-yellow) !important;
    font-weight: 700;
}

.c-red {
    color: #FF453A !important;
}

.mt-10 {
    margin-top: 10px;
}

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

.mt-40 {
    margin-top: 40px;
}

.pc-br {
    display: block;
}

.m-br {
    display: none;
}

.t-br {
    display: none;
}

.pc-inline {
    display: inline;
}

.m-inline {
    display: none;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated .fade-up,
.animated.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.animated .delay-1 {
    transition-delay: 0.2s;
}

.animated .delay-2 {
    transition-delay: 0.4s;
}

.animated .delay-7 {
    transition-delay: 2.0s;
}

.animated .delay-8 {
    transition-delay: 2.2s;
}

#fullpage-wrapper {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.section {
    width: 100%;
    /* height: 100%; */
    /* height: var(--app-height, 100%); */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.section::-webkit-scrollbar {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: max(20px, env(safe-area-inset-top)) 4vw 0;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.header img {
    height: clamp(50px, 7vw, 100px);
    object-fit: contain;
    object-position: top left;
    transition: filter 0.3s ease;
}

body:has(.section-3.active) .header {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================================
   [섹션 1] 메인 인트로
========================================================================= */
.section-1 {
    background-color: #FAFAFA;
}

.s1-title,
.s1-desc,
.s1-price-label-left,
.s1-price-label-bottom {
    white-space: nowrap;
}

.s1-content-wrapper {
    width: 100%;
    max-width: 1800px;
    padding: 0 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.s1-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -10vh;
}

.s1-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.s1-desc {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.s1-btn {
    font-family: var(--font-main);
    background-color: var(--main-green);
    color: #fff;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 4px 6px 0px var(--dark-green);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.s1-btn:active {
    transform: translate(4px, 6px);
    box-shadow: 0px 0px 0px var(--dark-green);
}

.s1-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: clamp(80px, 25vh, 400px);
    position: relative;
}

.s1-price-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.s1-price-number-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.s1-price-label-left {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -1px;
    transform: translateY(20px);
}

.s1-price-label-bottom {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 700;
    color: #111;
    letter-spacing: -1px;
    margin-top: 10px;
}

.s1-price-number-wrapper {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    font-size: clamp(3rem, 6vw, 4rem);
    transition: font-size 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.animated .s1-price-number-wrapper {
    font-size: clamp(6.5rem, 13vw, 12rem);
}

.s1-eight-box {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

.t-eight {
    font-family: var(--font-title);
    font-size: 1em;
    color: var(--pop-yellow);
    font-weight: 700;
    line-height: 0.8;
    z-index: 2;
    transition: text-shadow 0.4s ease 0.2s;
}

.t-manwon {
    font-family: var(--font-title);
    font-size: 0.4em;
    color: var(--pop-yellow);
    font-weight: 700;
    margin-left: 0.2em;
    z-index: 2;
    transition: text-shadow 0.4s ease 0.2s;
}

.animated .t-eight {
    text-shadow: 0.01em 0.01em 0 #B71C1C, 0.02em 0.02em 0 #B71C1C, 0.03em 0.03em 0 #B71C1C, 0.04em 0.04em 0 #B71C1C, 0.05em 0.05em 0 #B71C1C, 0.06em 0.06em 0 #B71C1C, 0.07em 0.07em 0 #B71C1C, 0.08em 0.08em 0 #B71C1C, 0.09em 0.09em 0 #B71C1C, 0.10em 0.10em 0 #B71C1C, 0.11em 0.11em 0 #B71C1C, 0.12em 0.12em 0 #B71C1C, 0.13em 0.13em 0 #B71C1C, 0.14em 0.14em 0 #B71C1C, 0.15em 0.15em 0 #B71C1C, 0.2em 0.2em 0.3em rgba(0, 0, 0, 0.3);
}

.animated .t-manwon {
    text-shadow: 0.025em 0.025em 0 #B71C1C, 0.05em 0.05em 0 #B71C1C, 0.075em 0.075em 0 #B71C1C, 0.1em 0.1em 0 #B71C1C, 0.125em 0.125em 0 #B71C1C, 0.15em 0.15em 0 #B71C1C, 0.175em 0.175em 0 #B71C1C, 0.2em 0.2em 0 #B71C1C, 0.25em 0.25em 0.4em rgba(0, 0, 0, 0.3);
}

.spark {
    position: absolute;
    background-color: var(--pop-yellow);
    width: 0.06em;
    height: 0;
    border-radius: 0.03em;
    bottom: calc(100% + 0.15em);
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.s-1 {
    left: 10%;
    transform: rotate(-35deg);
    transform-origin: bottom center;
}

.s-2 {
    left: 50%;
    bottom: calc(100% + 0.3em);
    transform: translateX(-50%);
    transform-origin: bottom center;
}

.s-3 {
    right: 10%;
    transform: rotate(35deg);
    transform-origin: bottom center;
}

.animated .s-1,
.animated .s-2,
.animated .s-3 {
    height: 0.35em;
    transition-delay: 0.7s;
}

.scroll-arrow {
    position: absolute;
    bottom: 4vh;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    pointer-events: auto;
    animation: bounce 2s infinite;
    z-index: 10;
    color: #111;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -12px);
    }

    60% {
        transform: translate(-50%, -6px);
    }
}

@media (max-width: 1400px) {
    .s1-content-wrapper {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 12vh;
        gap: 8vh;
    }

    .s1-text-group {
        margin-top: 0;
    }

    .s1-price-group {
        align-self: center;
        align-items: center;
        margin-top: 0;
        width: 100%;
        right: 0;
    }

    .s1-price-flex {
        flex-direction: row;
        align-items: center;
        justify-content: right;
        gap: 15px;
        width: 100%;
    }

    .s1-price-label-left {
        transform: translateY(-5px);
        margin-bottom: 0;
        font-size: clamp(2.3rem, 2vw, 2.5rem);
    }

    .s1-price-number-col {
        align-items: flex-end;
    }

    .s1-price-label-bottom {
        font-size: clamp(2.3rem, 2vw, 2.5rem);
        margin-top: 10px;
    }

    .animated .s1-price-number-wrapper {
        font-size: clamp(10.5rem, 9vw, 13.5rem);
    }
}

@media (max-width: 768px) {
    .m-br {
        display: block;
    }

    .s1-content-wrapper {
        padding-top: max(80px, env(safe-area-inset-top));
        padding-left: 20px;
        padding-right: 20px;
        gap: 10vh;
        align-items: center;
    }

    .s1-text-group {
        align-items: center;
        text-align: center;
        margin-top: 0;
    }

    .s1-title {
        font-size: clamp(2.2rem, 7vw, 2.8rem);
        margin-bottom: 20px;
    }

    .s1-desc {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
        margin-bottom: 30px;
        line-height: 1.5;
        letter-spacing: -0.5px;
    }

    .s1-price-group {
        margin-top: 0;
        margin-bottom: 8vh;
        width: 100%;
        align-items: center;
    }

    .s1-price-flex {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .s1-price-number-col {
        align-items: center;
    }

    .s1-price-label-left {
        font-size: 1.5rem;
        transform: translateY(0);
        margin-bottom: 0px;
    }

    .s1-price-label-bottom {
        text-align: center;
        margin-top: 20px;
        font-size: 1.5rem;
    }

    .animated .s1-price-number-wrapper {
        font-size: clamp(5.5rem, 18vw, 7rem);
    }

    .spark {
        display: none !important;
    }
}

/* =========================================================================
   [섹션 2] 고통 vs 환희 스플릿 뷰
========================================================================= */
.split-section {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100%;
    padding: 0 !important;
}

.split-left {
    background-color: #0f0f0f;
    width: calc(100vw - var(--trigger-width));
    height: 100%;
    position: relative;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
}

.split-right {
    background-color: #FAFAFA;
    width: var(--trigger-width);
    height: 100%;
    position: relative;
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
}

.split-section.show-right .split-left {
    width: var(--trigger-width);
}

.split-section.show-right .split-right {
    width: calc(100vw - var(--trigger-width));
}

.split-main {
    position: absolute;
    top: 0;
    width: calc(100vw - var(--trigger-width));
    height: 100%;
    transition: opacity 0.4s ease;
    margin: auto 0;
}

.left-main {
    left: 0;
    opacity: 1;
    pointer-events: auto;
}

.right-main {
    right: 0;
    opacity: 0;
    pointer-events: none;
}

.split-section.show-right .left-main {
    opacity: 0;
    pointer-events: none;
}

.split-section.show-right .right-main {
    opacity: 1;
    pointer-events: auto;
}

.split-arrow-right {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.split-section.show-right .split-arrow-right {
    opacity: 1;
    pointer-events: auto;
}

.split-trigger {
    position: absolute;
    top: 0;
    width: var(--trigger-width);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    z-index: 20;
}

.left-trigger {
    left: 0;
    opacity: 0;
    pointer-events: none;
    background-color: #0f0f0f;
    border-right: 1px solid #333;
}

.right-trigger {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    background-color: #FAFAFA;
    border-left: 1px solid #ddd;
}

.split-section.show-right .left-trigger {
    opacity: 1;
    pointer-events: auto;
}

.split-section.show-right .right-trigger {
    opacity: 0;
    pointer-events: none;
}

.trigger-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
    gap: 0;
}

.trigger-logo {
    width: clamp(100px, 80%, 150px);
    margin-bottom: -45px;
    object-fit: contain;
}

.trigger-txt-wrap {
    font-family: var(--font-title);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(1.05rem, 1.4vw, 1.4rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1px;
}

.text-right {
    text-align: right;
}

.t-arrow {
    font-size: 1.5em;
    line-height: 1;
    margin: 0;
    display: inline-block;
}

.t-text {
    text-align: left;
}

.text-right .t-text {
    text-align: right;
}

.person-wrapper {
    position: absolute;
    bottom: 0;
    height: clamp(450px, 75vh, 900px);
    z-index: 5;
    width: max-content;
}

.despair-wrapper {
    left: 2vw;
}

.smile-wrapper {
    right: 2vw;
}

.person-img {
    height: 100%;
    width: auto;
    max-width: 45vw;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.text-box {
    position: absolute;
    z-index: 10;
    white-space: nowrap;
}

.left-text-box {
    top: 15%;
    right: clamp(20px, 4vw, 100px);
    left: auto;
    text-align: right;
}

.right-text-box {
    top: 15%;
    left: clamp(20px, 4vw, 100px);
    right: auto;
    text-align: left;
}

.split-h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.split-p {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
}

.lightning-container {
    position: absolute;
    top: 5%;
    left: 75%;
    width: clamp(100px, 12vw, 150px);
    height: 150px;
    z-index: 10;
}

.bolt {
    position: absolute;
    object-fit: contain;
    animation: float 1.5s infinite alternate ease-in-out;
}

.bolt-1 {
    width: clamp(40px, 4vw, 60px);
    top: -50px;
    left: 40px;
    --rot: 13deg;
    transform: rotate(13deg);
    animation-delay: 0s;
}

.bolt-2 {
    width: clamp(35px, 3.5vw, 55px);
    top: -70px;
    left: -30px;
    --rot: -20deg;
    transform: rotate(-20deg);
    animation-delay: 0.3s;
}

.bolt-3 {
    width: clamp(50px, 5vw, 75px);
    top: 20px;
    left: 30px;
    --rot: -140deg;
    transform: rotate(-140deg);
    animation-delay: 0.6s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(var(--rot)) scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
        opacity: 0.8;
    }

    100% {
        transform: translateY(-10px) rotate(calc(var(--rot) + 5deg)) scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
        opacity: 1;
    }
}

.money-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 25;
}

.lottie-player-fs {
    width: 110%;
    height: 100%;
    transform: scale(1.2);
    transition: opacity 0.8s ease;
}

@media (max-width: 1400px) and (min-width: 769px) {
    .person-wrapper {
        height: 50vh !important;
    }

    .left-text-box {
        text-align: right !important;
    }

    .right-text-box {
        text-align: left !important;
    }

    .split-h2 {
        font-size: clamp(1.8rem, 3.2vw, 3rem);
    }
}

@media (max-width: 768px),
(max-height: 750px) {
    .pc-br {
        display: none;
    }

    .pc-inline {
        display: none;
    }

    .m-inline {
        display: inline;
    }

    :root {
        --trigger-width: 95px;
    }

    .split-section {
        padding: 0 !important;
    }

    .trigger-logo {
        display: block !important;
        width: 60px !important;
        margin-bottom: -18px !important;
    }

    .trigger-txt-wrap {
        flex-direction: column;
        justify-content: center !important;
        padding: 0;
        gap: 4px;
    }

    .left-trigger .trigger-inner {
        flex-direction: column;
    }

    .left-trigger .trigger-txt-wrap {
        flex-direction: column-reverse;
    }

    .t-arrow {
        font-size: 1.4rem;
        margin: 2px 0 !important;
        display: block;
    }

    .t-text {
        text-align: center !important;
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .person-wrapper {
        height: 35vh !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .person-img {
        max-width: none;
    }

    .text-box {
        top: 12% !important;
        width: 85% !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        white-space: normal;
        padding: 0 !important;
    }

    .left-text-box,
    .right-text-box {
        text-align: center !important;
    }

    .split-h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .split-p {
        font-size: 0.95rem;
        line-height: 1.4;
        word-break: keep-all;
    }

    .lightning-container {
        top: -10% !important;
        left: 75% !important;
        transform: scale(0.6);
    }
}

/* =========================================================================
   [섹션 3] 철거 비용 vs 업종 전환 견적
========================================================================= */
.section-3 {
    display: flex !important;
    flex-direction: column;
    padding: 0 !important;
    height: 100%;
    overflow: hidden !important;
    background-color: var(--main-green);
}

.s3-part {
    width: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    padding: 0;
}

.s3-black {
    background-color: #0f0f0f;
    z-index: 2;
}

.s3-green {
    background-color: var(--main-green);
    z-index: 1;
}

.s3-content-wrapper {
    width: 100%;
    max-width: 1600px;
    padding: 0 4vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    height: 100%;
}

.s3-text-area {
    flex: 1;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5vh;
}

.s3-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
    text-align: left;
}

.strike-wrap {
    display: inline-block;
    position: relative;
    font-weight: 700;
    margin-top: 5px;
}

.strike-line {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    width: 0;
    height: clamp(12px, 2vw, 16px);
    border-top: 5px solid #FF453A;
    border-bottom: 5px solid #FF453A;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
}

.animated .strike-line {
    width: 104%;
    transition-delay: 4.8s;
}

.strike-zero {
    font-weight: 700;
    color: #FF453A;
    margin-left: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: inline-block;
}

.animated .strike-zero {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 5.4s;
}

.s3-title-large {
    display: inline-block;
    font-weight: 700;
    margin-top: 5px;
    color: #fff;
    margin-right: 15px;
}

.s3-desc {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: clamp(1.5rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 20px;
    text-align: left;
}

/* .s3-logo { height: clamp(120px, 4vw, 70px); margin-bottom: -40px; object-fit: contain; } */

.s3-triangle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 40px solid #0f0f0f;
    z-index: 10;
}

.s3-receipt-area {
    flex: 0 0 clamp(360px, 28vw, 420px);
    width: clamp(360px, 28vw, 420px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.receipt-wrapper {
    filter: drop-shadow(0 -5px 25px rgba(0, 0, 0, 0.3));
    width: 100%;
}

.receipt-box {
    background-color: #FAFAFA;
    color: #111;
    padding: 50px 35px 30px;
    position: relative;
    width: 100%;
    min-height: 42vh;
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;

    -webkit-mask-image: radial-gradient(circle at 12px 0, transparent 6px, black 6.5px);
    -webkit-mask-size: 24px 100%;
    -webkit-mask-position: 0 0;
    -webkit-mask-repeat: repeat-x;
    mask-image: radial-gradient(circle at 12px 0, transparent 6px, black 6.5px);
    mask-size: 24px 100%;
    mask-position: 0 0;
    mask-repeat: repeat-x;
}

.r-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.r-dashed {
    width: 100%;
    height: 3px;
    margin: 20px 0 30px;
    background-image: linear-gradient(to right, #111 50%, transparent 50%);
    background-size: 12px 3px;
    background-repeat: repeat-x;
}

.r-items {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.r-row {
    font-family: var(--font-title);
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.r-label {
    color: #111;
}

.r-val {
    font-weight: 700;
}

.r-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 25px 5px;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #111;
    border-radius: 50%;
}

.r-footer {
    margin-top: auto;
}

.r-f-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.r-f-line {
    border-bottom: 3px solid #111;
    margin: 15px 0;
}

.r-f-val {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: right;
    letter-spacing: -1px;
}

.r-anim {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animated .r-anim {
    opacity: 1;
    transform: translateY(0);
}

.animated .r-delay-1 {
    transition-delay: 0.7s;
}

.animated .r-delay-2 {
    transition-delay: 0.9s;
}

.animated .r-delay-3 {
    transition-delay: 1.1s;
}

.animated .r-delay-4 {
    transition-delay: 1.3s;
}

.animated .r-delay-5 {
    transition-delay: 1.5s;
}

.animated .r-delay-6 {
    transition-delay: 1.7s;
}

.animated .r-delay-7 {
    transition-delay: 2.5s;
}

.animated .r-delay-8 {
    transition-delay: 2.7s;
}

.animated .r-delay-9 {
    transition-delay: 2.9s;
}

.animated .r-delay-10 {
    transition-delay: 3.1s;
}

.animated .r-delay-11 {
    transition-delay: 3.3s;
}

.animated .r-delay-12 {
    transition-delay: 3.5s;
}

.animated .r-delay-13 {
    transition-delay: 3.7s;
}

/* =========================================================================
   [섹션 3] 반응형 (반페이지 / 모바일)
========================================================================= */
@media (max-width: 1400px) {
    .t-br {
        display: block !important;
    }

    .s3-content-wrapper {
        gap: 20px;
    }

    .s3-text-area {
        padding-top: 6vh;
        padding-right: 20px;
    }

    .s3-title {
        font-size: clamp(2rem, 2.8vw, 2.5rem);
    }

    .strike-wrap,
    .s3-title-large {
        margin-top: 5px;
    }

    .s3-desc {
        font-size: clamp(1.5rem, 1.2vw, 1.1rem);
        margin-top: 15px;
    }

    .s3-logo {
        height: clamp(40px, 3.5vw, 50px);
        margin-bottom: 15px;
    }

    .s3-receipt-area {
        flex: 0 0 clamp(280px, 30vw, 360px);
        width: clamp(280px, 30vw, 360px);
    }

    .receipt-box {
        padding: 35px 25px 25px;
        min-height: 40vh;
    }

    .r-title {
        font-size: 1.2rem;
    }

    .r-dashed {
        margin: 15px 0 25px;
    }

    .r-row {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .r-dots {
        margin: 10px 0 20px 5px;
        gap: 8px;
    }

    .r-f-title {
        font-size: 1.1rem;
    }

    .r-f-line {
        margin: 10px 0;
    }

    .r-f-val {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-3 {
        display: block !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: 100% !important;
    }

    .s3-part {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: auto !important;
        min-height: 50vh !important;
        padding: 10vh 0 !important;
    }

    .s3-content-wrapper {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 30px !important;
        height: auto !important;
        padding-top: 0 !important;
    }

    .s3-text-area {
        width: 100% !important;
        padding-top: 0 !important;
        padding-right: 0 !important;
        display: block !important;
    }

    .s3-receipt-area {
        width: 100% !important;
        max-width: 500px !important;
        align-self: center !important;
        display: block !important;
        flex: none !important;
    }

    .receipt-wrapper {
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3)) !important;
        width: 100% !important;
    }

    .receipt-box {
        min-height: auto !important;
        padding: 35px 25px 30px !important;
        border-radius: 4px !important;
        display: block !important;
    }

    .s3-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 20px !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: left !important;
    }

    .strike-wrap,
    .s3-title-large {
        margin-top: 5px !important;
        display: inline !important;
    }

    .s3-desc {
        font-size: clamp(0.95rem, 4vw, 1.2rem) !important;
        white-space: normal !important;
        word-break: keep-all !important;
        margin-top: 15px !important;
        text-align: left !important;
    }

    .s3-logo {
        height: clamp(40px, 4vw, 60px) !important;
        margin-bottom: -40px !important;
        align-self: auto !important;
        display: inline-block !important;
    }

    .r-items {
        display: flex !important;
        flex-direction: column !important;
        flex: none !important;
    }

    .r-title {
        font-size: 1.25rem !important;
    }

    .r-dashed {
        margin: 15px 0 25px !important;
    }

    .r-row {
        font-size: 1.05rem !important;
        margin-bottom: 12px !important;
    }

    .r-dots {
        margin: 10px 0 20px 5px !important;
        gap: 8px !important;
    }

    .r-f-title {
        font-size: 1.1rem !important;
    }

    .r-f-line {
        margin: 10px 0 !important;
    }

    .r-f-val {
        font-size: 1.4rem !important;
    }

    .r-footer {
        margin-top: 0 !important;
    }
}

/* =========================================================================
   [섹션 4] 폭발적인 성장의 파크골프
========================================================================= */
.animated .delay-3 {
    transition-delay: 0.6s;
}

.animated .delay-4 {
    transition-delay: 0.8s;
}

.animated .delay-5 {
    transition-delay: 2.2s;
}

.section-4 .s4-y-axis span:first-child {
    color: #FF453A !important;
    font-weight: 800 !important;
}

.section-4 {
    background-color: #FAFAFA;
    display: flex !important;
    flex-direction: column;
    padding: 0 !important;
    height: 100%;
    overflow: hidden !important;
}

.s4-content-wrapper {
    width: 100%;
    max-width: 1500px;
    padding: 12vh 4vw 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.s4-header {
    text-align: center;
    margin-bottom: 7vh;
}

.s4-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #111;
}

.s4-desc {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    font-weight: 500;
    color: #111;
    letter-spacing: -1px;
}

.s4-body {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    gap: 5vw;
    flex: 1;
    padding-bottom: 12vh;
}

.s4-left {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.s4-chart-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.s4-chart-container {
    display: flex;
    height: clamp(250px, 40vh, 700px);
    width: 100%;
}

.s4-y-axis {
    font-family: var(--font-title);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    padding-bottom: 30px;
}

.s4-y-axis span {
    line-height: 0;
    transform: translateY(4px);
}

.s4-chart-area {
    flex: 1;
    position: relative;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}

.s4-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.s4-grid-line {
    width: 100%;
    border-top: 2px dashed #ddd;
}

.s4-grid-line.solid {
    border-top: none;
}

.s4-bars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 10px;
    z-index: 2;
}

.s4-bar-col {
    width: 13%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.s4-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
    height: 0;
}

.s4-x-label {
    font-family: var(--font-title);
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

.b1 {
    background-color: #B2D0C3;
}

.b2 {
    background-color: #79B397;
}

.b3 {
    background-color: #42956C;
}

.b4 {
    background-color: #2F885C;
}

.b5 {
    background-color: #1A7246;
}

.b6 {
    background-color: var(--dark-green);
}

.animated .b1 {
    height: 18%;
    transition-delay: 0.5s;
}

.animated .b2 {
    height: 26%;
    transition-delay: 0.7s;
}

.animated .b3 {
    height: 42%;
    transition-delay: 0.9s;
}

.animated .b4 {
    height: 55%;
    transition-delay: 1.1s;
}

.animated .b5 {
    height: 80%;
    transition-delay: 1.3s;
}

.animated .b6 {
    height: 100%;
    transition-delay: 1.5s;
}

.s4-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s4-stats {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 4vw, 60px);
    width: 100%;
    margin-bottom: 50px;
    transform: translateX(0vw);
}

.s4-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s4-stat-title {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.s4-stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.s4-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.s4-stat-val {
    font-family: var(--font-title);
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    transform: translateX(-15px);
}

.s4-stat-val .t-black {
    font-size: 0.6em;
    margin-left: 5px;
    color: #111;
    font-weight: 700;
    letter-spacing: -1px;
}

.s4-desc-bottom {
    font-family: var(--font-main);
    font-size: clamp(1.4rem, 1.25vw, 1.25rem);
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #111;
}

.s4-desc-bottom strong {
    font-weight: 700;
    font-size: 1.05em;
    color: var(--main-green);
}

/* =========================================================================
   [섹션 4] 반응형 (태블릿 / 모바일)
========================================================================= */

@media (max-width: 1400px) {
    .s4-content-wrapper {
        padding-top: 12vh;
    }

    .s4-header {
        margin-bottom: 2vh;
    }

    .s4-title {
        font-size: clamp(2.4rem, 3.5vw, 3.2rem);
        margin-bottom: 5px;
    }

    .s4-desc {
        font-size: clamp(2.1rem, 1.8vw, 1.4rem);
    }

    .s4-body {
        gap: 4vw;
        padding-bottom: 14vh;
    }

    .s4-chart-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .s4-chart-container {
        height: 37vh;
    }

    .s4-y-axis {
        font-size: 0.8rem;
        padding-bottom: 25px;
        padding-right: 10px;
    }

    .s4-chart-area {
        margin-bottom: 25px;
    }

    .s4-x-label {
        font-size: 0.8rem;
        bottom: -25px;
    }

    .s4-stats {
        gap: 3vw;
        margin-bottom: 2vh;
    }

    .s4-stat-title {
        font-size: 1.0rem;
        margin-bottom: 15px;
    }

    .s4-stat-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .s4-stat-val {
        font-size: clamp(1.5rem, 2.2vw, 2rem);
    }

    .s4-desc-bottom {
        font-size: 1.3rem;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .section-4 {
        display: block !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: 100% !important;
    }

    .s4-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: max(80px, env(safe-area-inset-top)) 20px 150px !important;
        height: auto !important;
    }

    .s4-header {
        margin-bottom: 40px !important;
        text-align: left !important;
    }

    .s4-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 5px !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: left !important;
    }

    .s4-desc {
        font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: left !important;
        line-height: 1.5 !important;
    }

    .s4-body {
        flex-direction: column !important;
        gap: 60px !important;
        width: 100% !important;
        align-items: flex-start !important;
        padding-bottom: 0 !important;
    }

    .s4-left,
    .s4-right {
        width: 100% !important;
        max-width: none !important;
        display: block !important;
    }

    .s4-chart-title {
        font-size: 1.25rem !important;
        margin-bottom: 25px !important;
    }

    .s4-chart-container {
        height: 260px !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    .s4-stats {
        flex-direction: row !important;
        margin-bottom: 40px !important;
        justify-content: space-between !important;
        gap: 0 !important;
        transform: none !important;
    }

    .s4-stat {
        width: 48% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .s4-stat-title {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
        word-break: keep-all !important;
    }

    .s4-stat-icon {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 10px !important;
    }

    .s4-stat-val {
        font-size: 1.6rem !important;
    }

    .s4-desc-bottom {
        font-size: 1.05rem !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: left !important;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {

    .section-4 .s4-left,
    .section-4 .s4-right {
        justify-content: flex-start !important;
        padding-top: 12vh !important;
    }
}

@media (max-width: 768px) {
    .section-4 .s4-left {
        padding-top: 0 !important;
    }

    .section-4 .s4-content-wrapper {
        padding-bottom: 20px !important;
    }

    .section-4 .scroll-arrow {
        position: relative !important;
        bottom: auto !important;
        margin-top: 30px !important;
        margin-bottom: 60px !important;
    }
}

/* =========================================================================
   [섹션 5] 텅 빈 매장
========================================================================= */
.section-5 {
    overflow: hidden !important;
}

@media (max-width: 991px) {
    .section-5 {
        overflow-y: auto !important;
    }
}

.s5-content-wrapper {
    max-width: 1100px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.s5-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, min(3.5vw, 8vh), 3.5rem);
    line-height: 1.4;
    color: var(--text-black);
    font-weight: 700;
    letter-spacing: -1px;
}

.s5-desc {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    font-weight: 500;
    color: #444444;
    letter-spacing: -0.5px;
}

.morning-bg {
    background: linear-gradient(135deg, #F9FDFE 0%, #FFFDF2 100%);
    position: relative;
}

.sun-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.marquee-group img {
    height: clamp(160px, 22vh, 260px);
    width: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.marquee-track.left {
    animation: scroll-left 140s linear infinite;
}

.marquee-track.right {
    animation: scroll-right 140s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 1400px) {
    .s5-title {
        font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    }
}

@media (max-width: 768px) {
    .s5-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 20px;
        white-space: normal !important;
        word-break: keep-all !important;
    }

    .s5-desc {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    .marquee-wrapper {
        margin-top: 30px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .marquee-group {
        gap: 10px;
        padding-right: 10px;
    }

    .marquee-group img {
        height: clamp(120px, 15vh, 180px);
        border-radius: 12px;
    }

    .marquee-row.mt-20 {
        margin-top: 10px;
    }
}

.js-count {
    display: inline-block;
    width: 3.5em;
    text-align: right;
    margin-right: 2px;
}

/* =========================================================================
   [섹션 6] 100호점 기념 및 매장 안내
========================================================================= */
.section-6 {
    background-color: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.s6-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.s6-content {
    display: flex;
    width: 100%;
    height: 100%;
}

/* 우측 (타이틀, 텍스트, 슬라이더) */
.s6-left {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vw;
}

.s6-map {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* 우측 (타이틀, 텍스트, 슬라이더) */
.s6-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
}

.s6-header {
    margin-bottom: clamp(30px, 6vh, 100px);
}

.s6-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0px;
}

.s6-title-side {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, min(3vw, 6vh), 3rem);
    font-weight: 900;
    color: #111;
    letter-spacing: -1px;
    white-space: nowrap;
    margin-bottom: 1.5vw;
}

.s6-100-wrap {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    margin-left: -5px;
}

.s6-crown-wrap {
    position: absolute;
    top: -130px;
    right: -80px;
    z-index: 3;
    animation: float-crown 3s ease-in-out infinite;
}

.s6-crown {
    width: clamp(80px, 8vw, 120px);
    transform: rotate(-5deg);
}

@keyframes float-crown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.s6-100-text {
    font-family: var(--font-title);
    font-size: clamp(5rem, min(12vw, 25vh), 15rem);
    font-weight: 900;
    line-height: 1;
    color: #4A2868;
    text-shadow:
        2px 2px 0px #9370BA, 4px 4px 0px #9370BA, 6px 6px 0px #9370BA,
        8px 8px 0px #9370BA, 10px 10px 0px #9370BA, 12px 12px 0px #9370BA;
    letter-spacing: -5px;
}

.s6-subtitle {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.5;
    color: #111;
    font-weight: 900;
    text-align: center;
    margin-top: 5px;
}

.s6-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.6;
    font-weight: 600;
    text-align: center;
    margin-top: 0vh !important;
    margin-bottom: clamp(2vh, 4vh, 8vh) !important;
    word-break: keep-all;
}

/* 슬라이더 */
.s6-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.s6-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s6-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.s6-slide.active {
    opacity: 1;
    z-index: 2;
}

.s6-bottom-desc {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 700;
    text-align: center;
}

/* 우측 (타이틀, 텍스트, 슬라이더) */
@media (max-width: 1400px) {
    .s6-title-side {
        font-size: 2.2rem;
    }

    .s6-100-text {
        font-size: 10rem;
    }

    .s6-subtitle {
        font-size: 1.3rem;
    }

    .s6-crown-wrap {
        top: -100px;
        right: -70px;
    }
}

@media (max-width: 991px) {
    .section-6 {
        display: block !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: 100% !important;
        padding-bottom: 0px !important;
    }

    .s6-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 100%;
        padding: max(120px, env(safe-area-inset-top)) 0px 50px !important;
        align-items: flex-start;
    }

    .s6-content {
        display: flex;
        flex-direction: column;
    }

    .s6-left,
    .s6-right {
        display: contents;
    }

    .s6-header {
        order: 1;
        padding: 0 20px;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .s6-subtitle {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        white-space: nowrap;
        margin-bottom: 5px;
    }

    .s6-map {
        order: 2;
        width: 90%;
        max-width: 500px;
        margin: 5px auto 20px auto;
    }

    .s6-desc {
        order: 3;
        padding: 0 20px;
        width: 100%;
        margin-top: 10px !important;
        margin-bottom: 30px !important;
    }

    .s6-slider-wrap {
        order: 4;
        margin: 0 auto 15px auto;
        width: calc(100% - 40px);
        flex-shrink: 0;
        min-height: 180px;
    }

    .s6-bottom-desc {
        order: 5;
        padding: 0 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .s6-title-side {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 2vw;
    }

    .s6-100-text {
        font-size: clamp(6rem, 18vw, 8rem);
        text-shadow: 2px 2px 0px #9370BA, 4px 4px 0px #9370BA, 6px 6px 0px #9370BA, 8px 8px 0px #9370BA;
    }

    .s6-crown-wrap {
        top: -45px;
        right: -55px;
    }

    .s6-crown {
        width: 60px;
    }

    .section-6 .scroll-arrow {
        position: relative !important;
        bottom: auto !important;
        margin-top: 25px !important;
        margin-bottom: 40px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =========================================================================
   [섹션 7] 상담 및 견적 신청 폼
========================================================================= */
.section-7 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4vw !important;
    overflow: hidden;
    background-color: #FAFAFA;
}

.s7-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    gap: 4vw;
}

/* 1. 좌측 정보 영역 전체 중앙 정렬로 변경 */
.s7-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 수평 중앙 정렬 */
    text-align: center;
    /* 텍스트 중앙 정렬 */
}

.s7-logo {
    width: clamp(200px, 22vw, 350px);
    margin-bottom: 20px;
    margin-left: 0;
    /* 기존 -5px 제거로 완벽한 중앙 정렬 */
}

.s7-title {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.s7-phone {
    font-family: var(--font-title);
    font-size: clamp(3.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--main-green);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.s7-phone:hover {
    opacity: 0.8;
}

.s7-desc {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    font-weight: 600;
    line-height: 1.6;
    color: #333;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

/* 2. 반페이지 (노트북/태블릿) 환경에서 텍스트 및 로고 크기 대폭 확대 */
@media (max-width: 1400px) and (min-width: 992px) {
    .s7-logo {
        width: clamp(280px, 28vw, 450px);
    }

    .s7-title {
        font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    }

    .s7-phone {
        font-size: clamp(4.5rem, 6vw, 6.5rem);
    }

    .s7-desc {
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }
}

/* 우측 폼 영역 (기존에 넓힌 가로폭 유지) */
.s7-form-box {
    flex: 0 0 clamp(400px, 45%, 550px);
    background: #ffffff;
    padding: clamp(35px, 4vw, 45px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    width: 100%;
}

.form-title {
    font-family: var(--font-title);
    font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.form-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    word-break: keep-all;
}

.mypark-form .input-wrap {
    margin-bottom: 20px;
}

.mypark-form label {
    display: block;
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.mypark-form input[type="text"],
.mypark-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-main);
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.mypark-form input:focus {
    border-color: var(--main-green);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 110, 63, 0.1);
}

.privacy-wrap {
    margin-bottom: 25px;
}

.privacy-box {
    width: 100%;
    height: 90px;
    overflow-y: auto;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    box-sizing: border-box;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
}

.checkbox-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--main-green);
    cursor: pointer;
}

.agree-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.submit-btn {
    width: 100%;
    font-family: var(--font-main);
    background-color: var(--main-green);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 4px 6px 0px var(--dark-green);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.submit-btn:active {
    transform: translate(4px, 6px);
    box-shadow: 0px 0px 0px var(--dark-green);
}

/* 3. 모바일 반응형 & 스크롤 짤림 버그 완벽 해결 */
@media (max-width: 991px) {
    .section-7 {
        /* 핵심 수정: 높이를 100%로 고정해야 자바스크립트 풀페이지 스크롤이 내부 영역을 인식합니다 */
        height: 100% !important;
        min-height: 100% !important;
        display: block !important;
        overflow-y: auto !important;
        padding: 0 !important;
    }

    .s7-content-wrapper {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        /* 패딩을 감싸는 래퍼에 적용하여 맨 아래 버튼 밑 공간까지 넉넉하게 확보 */
        padding-top: max(80px, env(safe-area-inset-top));
        padding-bottom: 120px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .s7-info {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .s7-logo {
        width: clamp(220px, 50vw, 300px);
        margin-bottom: 15px;
    }

    .s7-phone {
        font-size: clamp(3.5rem, 10vw, 4.5rem);
    }

    .s7-form-box {
        width: 100%;
        flex: none;
        max-width: 600px;
        padding: 40px 25px;
    }
}

/* =========================================================================
   [진짜 최종 픽스] 원본 레이아웃 유지 + 노트북 전용 다이어트 및 스크롤
   ※ 이전에 드렸던 커스텀 @media 코드들을 모두 지우고, 이 코드만 style.css 맨 아래에 넣어주세요!
========================================================================= */

/* 화살표가 우측으로 쏠리는 현상(X축 틀어짐)을 방지하는 수직 전용 애니메이션 */
@keyframes bounce-centered {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-12px);
    }

    60% {
        transform: translateY(-6px);
    }
}

/* -------------------------------------------------------------------------
   [노트북 및 상하 폭이 좁은 PC 전용 최적화]
   일반 모니터(100% 비율)의 오리지널 레이아웃은 단 1px도 건드리지 않습니다.
------------------------------------------------------------------------- */
@media (max-height: 900px) and (min-width: 769px) {

    /* ★ 1. 로고 상단 고정 (스크롤 시 위로 밀려 올라가는 현상 완벽 차단) ★ */
    .header {
        position: fixed !important;
        top: 0 !important;
        transform: none !important;
    }

    /* [섹션 1] 좌측 텍스트는 좁은 화면에 맞게 조절 */
    .section-1 .s1-title {
        font-size: clamp(2rem, 6vh, 5rem) !important;
        margin-bottom: 2vh !important;
    }

    .section-1 .s1-desc {
        font-size: clamp(1rem, 2.5vh, 1.6rem) !important;
        margin-bottom: 3vh !important;
    }

    /* 800만원 관련 폰트를 억지로 줄이던 코드를 삭제하여 원본의 빵빵한 사이즈(vw)를 유지! */
    .section-1 .s1-price-group {
        margin-top: clamp(60px, 15vh, 400px) !important;
    }


    /* ★ 2. [섹션 3] 상단 텍스트 잘림 방지 + 영수증 하단 찰싹 붙이기 & 찌그러짐 방지 ★ */
    .section-3 {
        justify-content: flex-start !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    /* s3-part 박스가 내용물 크기에 맞춰 유연하게 늘어나도록 설정하여 잘림 방지 */
    .section-3 .s3-part {
        height: auto !important;
        min-height: 50vh !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 0 auto !important;
    }

    /* 래퍼가 100%를 차지하면서 패딩바텀은 0으로 두어 영수증이 배경 바닥에 딱 붙게 유지 */
    .section-3 .s3-content-wrapper {
        height: auto !important;
        flex: 1 !important;
        min-height: min-content !important;
        padding-top: 4vh !important;
        padding-bottom: 0 !important;
        align-items: stretch !important;
    }

    /* 좌측 텍스트 영역이 바닥에 너무 바짝 붙지 않도록 여백 부여 */
    .section-3 .s3-text-area {
        padding-bottom: 4vh !important;
    }

    /* 우측 영수증 영역이 바닥에 완벽히 붙으면서 최소 높이가 보장되게 설정 */
    .section-3 .s3-receipt-area {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }

    .section-3 .receipt-box {
        margin-bottom: 0 !important;
        min-height: min-content !important;
        height: auto !important;
    }

    .section-3 .s3-title {
        font-size: clamp(1.8rem, 4vh, 3.5rem) !important;
    }

    .section-3 .s3-desc {
        font-size: clamp(1rem, 2.2vh, 1.25rem) !important;
        margin-top: 2vh !important;
    }


    /* [섹션 4, 6] 하단 잘림 방지 (내부 스크롤 활성화) */
    .section-4,
    .section-6 {
        justify-content: flex-start !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .s4-content-wrapper {
        height: auto !important;
        flex-shrink: 0 !important;
    }

    /* ★ 3. [섹션 4] 좌측 표 높이를 우측 텍스트 길이에 맞춰 하단까지 쫙 늘려주기 ★ */
    .s4-body {
        align-items: stretch !important;
    }

    /* 좌, 우 블록의 전체 높이를 똑같이 동기화 */
    .s4-left {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 표(차트) 영역이 빈 세로 공간을 끝까지 꽉 채우도록 flex: 1을 주어 길이를 늘림 */
    .s4-chart-container {
        height: auto !important;
        flex: 1 !important;
        min-height: 250px !important;
        margin-bottom: 0 !important;
    }

    /* 4섹션 폰트 다이어트 */
    .s4-title {
        font-size: clamp(1.8rem, 4.5vh, 3.5rem) !important;
    }

    .s4-desc {
        font-size: clamp(1rem, 2.2vh, 1.4rem) !important;
    }

    .s4-stat-icon {
        width: clamp(50px, 8vh, 80px) !important;
        height: clamp(50px, 8vh, 80px) !important;
        margin-bottom: 1vh !important;
    }

    .s4-stat-val {
        font-size: clamp(1.5rem, 4vh, 2.5rem) !important;
    }


    /* [섹션 6] 왕관 잘림 100% 완벽 방지 */
    .s6-container {
        height: auto !important;
        flex-shrink: 0 !important;
        padding-top: max(50px, 10vh) !important;
        /* 왕관 위쪽으로 넉넉하게 숨통을 트여줌 (천장 잘림 해결) */
    }

    /* 6섹션: 왕관 100호점 겹침 방지 (em 단위 비율 고정) */
    .s6-100-wrap {
        font-size: clamp(4rem, 15vh, 15rem) !important;
    }

    .s6-100-text {
        font-size: 1em !important;
    }

    .s6-crown-wrap {
        top: -0.54em !important;
        right: -0.33em !important;
    }

    .s6-crown {
        width: 0.5em !important;
    }

    .s6-map {
        max-width: clamp(300px, 45vh, 800px) !important;
        height: auto !important;
    }

    .s6-slider-wrap {
        max-width: clamp(300px, 40vh, 500px) !important;
        margin-bottom: 2vh !important;
    }


    /* [화살표 공통] 우측 쏠림 완벽 해결 및 맨 아래 중앙 고정 */
    .section-4 .scroll-arrow,
    .section-6 .scroll-arrow {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        align-self: center !important;
        margin-top: 4vh !important;
        margin-bottom: 4vh !important;
        animation: bounce-centered 2s infinite !important;
    }

    /* 5섹션은 이미지를 덮지 않게 바닥으로 살짝 내림 */
    .section-5 .scroll-arrow {
        bottom: 1.5vh !important;
    }
}

/* =========================================================================
   [섹션 7 추가] 1800-8907 각 숫자 위 '파크공칠' 1:1 매칭
========================================================================= */
.s7-phone {
    display: inline-flex;
    align-items: flex-end; /* 1800- 과 8907의 하단 라인을 완벽하게 맞춤 */
    justify-content: center;
}

.s7-prefix {
    line-height: 1;
    margin-right: 5px; /* '1800-'과 '8907' 묶음 사이의 여백 */
}

/* 숫자와 위 글자를 위아래로 묶는 박스 */
.s7-char-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center; /* 세로로 글자와 숫자를 정중앙 정렬 */
    justify-content: flex-end;
    margin: 0 -1px; /* 8, 9, 0, 7 숫자 사이 간격 미세 조정 */
}

/* 상단 '파크공칠' 글자 디자인 */
.s7-char {
    font-family: var(--font-main);
    font-size: 0.28em;
    font-weight: 900;           /* 기존 800에서 900으로 변경하여 최대한 굵게 */
    color: var(--main-green);   /* 빨간색에서 하단 번호와 어울리는 메인 초록색으로 변경 */
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 0;
}

/* 하단 큰 8907 숫자 */
.s7-num {
    line-height: 1;
    letter-spacing: 0;      /* 개별 박스 중앙 정렬을 위해 자간 초기화 */
}