*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Pretendard','Noto Sans KR',sans-serif;
    line-height:1.7;
    color:#1e293b;
    background:#f8fafc;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

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

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:75px;
}

.logo{
    font-size:1.5rem;
    font-weight:800;
    color:#0f172a;
}

.logo span{
    color:#10b981;
}

nav{
    display:flex;
    gap:24px;
}

nav a{
    color:#334155;
    font-weight:600;
}

/* HERO */

.hero{
    padding:80px 0;
    background:linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 60%,
        #10b981 100%
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-text{
    color:white;
}

.badge{
    display:inline-block;
    background:#10b981;
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-desc{
    font-size:1.1rem;
    opacity:.9;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 24px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.btn.primary{
    background:#f59e0b;
    color:white;
}

.btn.secondary{
    background:white;
    color:#0f172a;
}

.btn:hover{
    transform:translateY(-2px);
}

.hero-photo img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

/* SECTION */

.section{
    padding:90px 0;
}

.section-label{
    color:#10b981;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section h2{
    font-size:2.3rem;
    margin-bottom:40px;
    color:#0f172a;
}

/* SERVICE */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-grid article{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.service-grid article:hover{
    transform:translateY(-5px);
}

.service-grid h3{
    margin-bottom:12px;
    color:#10b981;
}

/* PRICE */

.price{
    background:#ecfdf5;
}

.price-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.price-info strong{
    display:block;
    margin-top:20px;
    color:#f59e0b;
    font-size:1.1rem;
}

/* PROCESS */

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.process-grid div{
    background:white;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.process-grid span{
    width:60px;
    height:60px;
    background:#10b981;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    font-weight:800;
}

/* GALLERY */

.gallery{
    background:#f1f5f9;
}

.gallery-title{
    margin-top:40px;
    margin-bottom:20px;
    color:#0f172a;
}

.photo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.photo-grid img{
    height:240px;
    object-fit:cover;
    border-radius:15px;
    transition:.3s;
}

.photo-grid img:hover{
    transform:scale(1.03);
}

.car-grid{
    margin-top:20px;
}

/* AREA */

.area{
    background:white;
}

/* FAQ */

.faq{
    background:#f8fafc;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.faq-list details{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.faq-list summary{
    cursor:pointer;
    font-weight:700;
}

/* CONTACT */

.contact{
    background:#0f172a;
    color:white;
}

.contact-box{
    max-width:800px;
}

.contact form{
    margin-top:30px;
    display:grid;
    gap:15px;
}

.contact input,
.contact select,
.contact textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.contact textarea{
    min-height:150px;
}

.contact button{
    background:#10b981;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
}

/* FOOTER */

footer{
    background:#020617;
    color:white;
    padding:35px 0;
    text-align:center;
}

/* MOBILE */

@media(max-width:991px){

    .hero-grid,
    .price-box{
        grid-template-columns:1fr;
    }

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

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

    .hero h1{
        font-size:2.2rem;
    }
}

@media(max-width:768px){

    nav{
        display:none;
    }

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

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

    .section{
        padding:70px 0;
    }

    .section h2{
        font-size:1.8rem;
    }

    .hero h1{
        font-size:1.9rem;
    }
}
/* 개인정보동의 */

.privacy-box{
    background:rgba(255,255,255,0.08);
    padding:15px;
    border-radius:10px;
}

.privacy-box label{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    cursor:pointer;
}

.privacy-box input[type="checkbox"]{
    width:18px;
    height:18px;
}

.privacy-text{
    margin-top:10px;
    font-size:14px;
    opacity:0.85;
    line-height:1.6;
}
/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(2,6,23,0.9);
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:95%;
    max-height:85vh;
    object-fit:contain;
    border-radius:12px;
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:25px;
    background:#10b981;
    color:white;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    font-size:30px;
    cursor:pointer;
    line-height:1;
}
.form-message{
    margin-top:15px;
    font-weight:700;
    color:#10b981;
}
/* SEO CONTENT */

.seo-content{
    background:#ffffff;
}

.seo-content h3{
    margin-top:40px;
    margin-bottom:15px;
    color:#0f172a;
    font-size:1.4rem;
}

.seo-content p{
    margin-bottom:20px;
    color:#475569;
    line-height:1.9;
}
/* REGION LINKS */

.region-links{
    background:#f8fafc;
}

.region-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.region-grid a{
    display:block;
    background:#ffffff;
    padding:18px;
    border-radius:12px;
    text-align:center;
    font-weight:700;
    color:#0f172a;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    transition:.3s;
}

.region-grid a:hover{
    background:#10b981;
    color:white;
    transform:translateY(-3px);
}
.form-message{
    margin-top:15px;
    padding:14px;
    border-radius:10px;
    background:rgba(16,185,129,0.12);
    color:#10b981;
    font-weight:800;
    text-align:center;
    display:none;
}

.form-message.show{
    display:block;
}