/* =========================================================
RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    background: #0c0c0c;
    color: #fff;
    overflow-x: hidden;
}


/* =========================================================
SCROLL PROGRESS BAR
========================================================= */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #D4AF37;
    width: 0%;
    z-index: 9999;
}


/* =========================================================
LAYOUT
========================================================= */

.container {
    max-width: 1500px;
    width: 92%;
    margin: auto;
    position: relative;
    z-index: 2;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    scroll-snap-align: start;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 0;
}


/* =========================================================
TYPOGRAPHY
========================================================= */

h1 {
    font-size: clamp(36px,6vw,90px);
    font-weight: 800;
    line-height: 1.2;
}

.h1_margin {
    margin-bottom: 40px;
}

h2 {
    font-size: clamp(32px,4vw,80px);
    font-weight: 800;
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(18px,5vw,20px);
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    color: #ccc;
    letter-spacing: -0.04em;
    line-height: 1.6;
}

.gold {
    color: #f3b31b;
}


/* =========================================================
ICON
========================================================= */

.section-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #000;
}

.section-icon img {
    width: 70%;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg,#D4AF37,#b8902d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}


/* =========================================================
HERO
========================================================= */

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo img {
    height: 220px;
}


/* =========================================================
GRID / CARD
========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-6px);
    border: 1px solid #D4AF37;
}

.hero_card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: .3s;
}

.hero_card:hover {
    transform: translateY(-6px);
    border: 1px solid #D4AF37;
}


/* =========================================================
PROBLEM SECTION
========================================================= */

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

.problem-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: .3s;
}

.problem-card:hover {
    transform: translateY(-6px);
    border: 1px solid #D4AF37;
}


/* =========================================================
SOLUTION
========================================================= */

.solution-box {
    margin-top: 60px;
    padding: 35px;
    background: linear-gradient(135deg,#111,#1a1a1a);
    border-radius: 20px;
    border: 1px solid #D4AF37;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
COUNTER
========================================================= */

.counter {
    font-size: 90px;
    font-weight: 900;
    color: #f3b31b;
}


/* =========================================================
SUCCESS / CASE
========================================================= */

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

.case-card {
    background: #111;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #333;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

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

.case-card strong {
    font-size: 36px;
    color: #D4AF37;
}


/* =========================================================
FAQ
========================================================= */

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    background: rgba(0,0,0,0.6);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 25px 30px;
    cursor: pointer;
    text-align: left;
    transition: .3s;
}

.faq-card:hover {
    border: 1px solid #D4AF37;
    transform: translateY(-3px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    word-break: keep-all;
}

.faq-q {
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 15px;
    line-height: 1.6;
    color: #ccc;
    transition: all .35s ease;
    display: flex;
    gap: 12px;
}

.faq-a {
    color: #D4AF37;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-card.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}


/* =========================================================
CONSULT STATUS
========================================================= */

.consult-status {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}

.status-card {
    background: #111;
    border: 1px solid #D4AF37;
    padding: 30px;
    border-radius: 16px;
}

.status-card strong {
    font-size: 42px;
    color: #f3b31b;
}

.consultSwiper {
    margin-top: 50px;
    height: 220px;
}

.consult-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.consult-card span {
    color: #f3b31b;
}


/* =========================================================
FOOTER
========================================================= */

.consult-section {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
}

.consult-section footer {
    position: relative;
    z-index: 5;
    width: 100vw;
    margin-top: 100px;
    background: #111;
    padding: 40px 20px;
    margin-left: calc(-50vw + 50%);
}

.consult-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.footer-info {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

footer {
    background: #111;
    padding: 40px;
    text-align: center;
    color: #c9c9c9;
    font-size: 15px;
}


/* =========================================================
FORM
========================================================= */

form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 420px;
    margin: auto;
}

input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    background: #ddd;
}

.btn {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(45deg,#f3b31b,#b8902d);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}


/* =========================================================
FLOATING BUTTON
========================================================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.consult-btn {
    background: linear-gradient(45deg,#f3b31b,#b8902d);
    color: #000;
    padding: 14px 18px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.kakao-btn {
    background: #FEE500;
    color: #000;
    padding: 14px 18px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
}


/* =========================================================
SUCCESS SWIPER
========================================================= */

.successSwiper {
    margin-top: 70px;
    padding-bottom: 40px;
}

.successSwiper .swiper-slide {
    opacity: 0.35;
    transform: scale(0.82);
    transition: 0.4s;
}

.successSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

.successSwiper .swiper-slide-prev,
.successSwiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.92);
}

.successSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}


/* =========================================================
REVENUE SECTION
========================================================= */

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 60px;
}

.revenue-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: .3s;
}

.revenue-card:hover {
    border: 1px solid #D4AF37;
    transform: translateY(-6px);
}

.revenue-card strong {
    display: block;
    font-size: 28px;
    color: #f3b31b;
    margin-top: 10px;
}


/* =========================================================
MARKETING
========================================================= */

.marketing-box {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg,#111,#1a1a1a);
    border: 1px solid #D4AF37;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
}

.marketing-box p {
    margin-bottom: 10px;
}


/* =========================================================
TRAINING
========================================================= */

.training-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 60px;
}

.training-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
}

.training-card strong {
    color: #f3b31b;
}


/* =========================================================
RESPONSIVE (TABLET)
========================================================= */

@media (max-width:1024px) {

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

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

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

}

/* =========================================================
°³ÀÎÁ¤º¸ µ¿ÀÇ 
========================================================= */


.agree-box{
    margin-top:15px;
    font-size:13px;
}

.policy-link{
    display:inline-block;
    margin-left:10px;
    color:#fff;
    cursor:pointer;
}

/* ÆË¾÷ */
.policy-layer{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
	color:#111;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.policy-content{
    background:#fff;
    width:90%;
    max-width:400px;
    padding:20px;
    border-radius:10px;
}

.policy-text{
    max-height:300px;
    overflow-y:auto;
    font-size:13px;
    line-height:1.5;
    margin-bottom:15px;
}


/* =========================================================
RESPONSIVE (MOBILE)
========================================================= */

@media (max-width:768px) {

    .container {
        width: 96%;
    }

    html {
        scroll-snap-type: none;
    }

    /* typography */

    h1 {
        letter-spacing: -0.04em;
        word-break: keep-all;
        line-height: 1.3;
    }

    .h1_margin {
        margin-bottom: 20px;
    }

    h2 {
        letter-spacing: -0.06em;
        line-height: 1.3;
        word-break: keep-all;
    }

    h3 {
        letter-spacing: -0.04em;
        line-height: 1.3;
        word-break: keep-all;
    }

    p {
        line-height: 1.3;
        word-break: keep-all;
    }

    .gold {
        color: #f3b31b;
    }

    .hero_card {
        text-align: left;
        padding: 24px;
    }

    .problem-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }

    .card-text h3 {
        font-size: 20px;
        margin-bottom: 6px;
        letter-spacing: -0.04em;
    }

    .card-text p {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: -0.04em;
    }

    .problem-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
        letter-spacing: -0.04em;
    }

    .problem-card p {
        font-size: 17px;
        line-height: 1.5;
        letter-spacing: -0.04em;
    }

    .status-card {
        padding: 20px;
        border-radius: 16px;
    }

    .status-card strong {
        font-size: 36px;
    }

    /* grid */

    .grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 20px;
    }

    .card {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .icon {
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin: 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 22px;
    }

    .problem-card .icon {
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin: 0;
    }

    .solution-box {
        text-align: left;
        padding: 24px;
    }

    section {
        min-height: auto;
        padding: 70px 20px;
    }

    .hero-logo img {
        height: 140px;
    }

    .counter {
        font-size: 60px;
    }

    .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .consultSwiper {
        height: 200px;
    }

    .consult-card {
        padding: 16px 24px;
    }

    .faq-answer {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    /* revenue */

    .revenue-grid {
        background: rgba(255,255,255,0.05);
        margin-top: 60px;
        grid-template-columns: repeat(2,1fr);
    }


    .revenue-card {
        padding: 10px;
        letter-spacing: -0.04em;
        text-align: center;
    }

    .revenue-card strong {
        font-size: 20px;
        letter-spacing: -0.04em;
        margin-top: 12px;
    }



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


    .marketing-box {
        padding: 24px;
    }

}


img{
    max-width:100%;
    height:auto;
}

.swiper{
    width:100%;
}

.grid,
.problem-grid,
.case-grid,
.revenue-grid,
.training-grid{
    width:100%;
}