@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #007bff 0%, #00d2ff 100%);
    --primary-color: #007bff;
    --secondary-color: #00d2ff;
    --text-dark: #243038;
    --text-muted: #667085;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --navbar-bg: rgba(255, 255, 255, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);

    /* System Tokens */
    --naver-green: #03C75A;
    --naver-green-hover: #02b350;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --border-color: #f0f0f0;
    --border-light: #efefef;
    --bg-alt: #f8fbff;
    --bg-tint: #f1f8ff;
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased; /* Safari 텍스트 렌더링 최적화 */
}

.nowrap {
    white-space: nowrap !important;
}

h1, h2, h3, .eng-font {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Global Utilities */
.text-center { text-align: center; }
.bg-white { background-color: var(--bg-white); }
.nowrap { white-space: nowrap; }


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* 20px -> 40px로 늘려 좌우 여백 확보 */
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0; /* 여유로운 상단 여백 */
    background-color: transparent;
    transition: var(--transition-smooth);
    backdrop-filter: blur(0px);
}

header.scrolled {
    background-color: var(--navbar-bg);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 26px; /* 메뉴 글자가 커진 만큼 로고도 확대 */
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 45px; /* 항목이 줄어든 만큼 간격을 다시 시원하게 확대 */
    margin: 0;
    padding: 0;
    list-style: none;
    transition: var(--transition-smooth);
}

.nav-links a {
    font-weight: 700; /* 조금 더 강조 */
    font-size: 1.15rem; /* 글자 크기 대폭 확대 */
    white-space: nowrap;
    padding: 10px 0;
    word-break: keep-all;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 33, 116, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 20px; /* 로고/메뉴와 간격 확보 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 33, 116, 0.5);
    color: white;
}

/* Floating Action Button (FAB) 제거 (헤더 근처 오배치됨) */

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none; /* 기본적으로 숨김 */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    height: auto;
    padding-top: 160px; /* 상단바와의 간격 대폭 확대 */
    padding-bottom: 120px; /* 하단 여백 확대 */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-blob {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 33, 116, 0.15) 0%, rgba(145, 0, 179, 0.05) 50%, transparent 100%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-50px, 50px) scale(1.1); }
}

.hero-content {
    max-width: 800px;
}

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

.hero-content h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-pill {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: var(--primary-color);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--primary-gradient) border-box;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-pill.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--naver-green); /* 네이버 초록색 강조 */
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.1);
}

.btn-pill.btn-secondary:hover {
    background: var(--naver-green);
    color: white;
    box-shadow: 0 8px 20px rgba(3, 199, 90, 0.2);
}

/* --- Sections --- */
section {
    padding: 140px 0; /* 섹션 간 간격 확대 */
}

.section-head {
    text-align: center;
    margin-bottom: 80px; /* 제목과 본문 사이 간격 확대 */
}

.section-head h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 레이아웃 적용 */
    gap: 30px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%; /* 카드 높이 동일화 */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bg-tint) 0%, #e1f0ff 100%);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-img-frame {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.service-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-frame img {
    transform: scale(1.1);
}

/* --- FAQ --- */
.faq-section {
    padding: 120px 0;
}

.faq-item {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 123, 255, 0.05);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    word-break: keep-all;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    word-break: keep-all;
}

/* Statistics */
.stats {
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.stat-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

/* --- How It Works (3-Step Cards) --- */
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
    border-color: var(--primary-color);
}

.step-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(0, 123, 255, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    word-break: keep-all;
}

.step-card .step-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.step-card .point-text {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.warning-box {
    background: rgba(220, 38, 38, 0.05);
    border-left: 4px solid var(--danger-color);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
}

.warning-box strong {
    color: var(--danger-color);
    display: block;
    margin-bottom: 5px;
}

.warning-box p {
    color: var(--danger-color) ;
    font-size: 14px ;
    margin-bottom: 0 ;
    font-weight: 500;
}

/* --- Reservation Section --- */
.reservation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 100px 0;
}

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

.naver-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--naver-green);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(3, 199, 90, 0.2);
    transition: var(--transition-smooth);
}

.naver-btn:hover {
    background-color: var(--naver-green-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 199, 90, 0.3);
    color: white;
}

.reservation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.res-step-box {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.res-step-box:hover {
    border-color: var(--naver-green);
    transform: translateY(-5px);
}

.res-step-icon {
    width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: var(--naver-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
}

.res-step-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.res-step-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.res-info-small {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* --- About Section --- */
.about-section {
    background-color: #f8f9fa; /* 연한 그레이 배경 */
    padding: 100px 0;
}

.about-header {
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 36px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
    word-break: keep-all;
}

.about-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
    word-break: keep-all;
}

.about__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
}

.about__content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    word-break: keep-all;
}

.about__content p:last-child {
    margin-bottom: 0;
}

.about__content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about__features-box {
    text-align: left;
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.competencies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.strength-section {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.strength-section h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.strength-item {
    text-align: center;
}

.strength-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.strength-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.strength-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.stat-number {
    font-size: 80px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Helper for grid columns since i used 1-fraction typo */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 48px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .step-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
    .reservation-steps { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links a {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* 모바일에서 표시 */
        order: 2;
    }
    
    .logo {
        order: 1;
        font-size: 1.1rem; /* 모바일 로고 크기 최적화 */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%; /* 조금 더 넓게 */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        margin: 0;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px;
    }

    #nav-links .nav-reserve a {
        width: 150px;
        text-align: center;
    }

    /* iPhone/Mobile Spacing & Typography */
    .container {
        padding: 0 25px;
    }

    .hero { 
        padding-top: 140px; 
        padding-bottom: 60px; 
        text-align: center;
    }
    .hero-content h1 { 
        font-size: 1.8rem ; 
        line-height: 1.3;
    }
    .hero-content h2 {
        font-size: 1rem ;
    }
    .hero-btns { 
        flex-direction: column;
        gap: 15px;
        align-items: center; 
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-head h2 {
        font-size: 1.6rem ;
    }

    /* All Grids to 1 Column on Mobile */
    .services-grid, .step-grid, .about-grid, .strength-grid, .reservation-steps, .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--naver-green); /* 네이버 초록색 */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(3, 199, 90, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    white-space: nowrap;
    word-break: keep-all;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(3, 199, 90, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}



/* CSS Append - Pricing Table, Map Card, Img Fluid & Layout Fixes */

/* Pricing Table */
.pricing-wrapper {
    overflow-x: auto;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    background: white;
    margin: 30px 0;
}

.pricing-table {
    width: 100%;
    min-width: 350px;
    border-collapse: collapse;
    font-size: 16px;
    word-break: keep-all;
}

.pricing-table th, .pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-table td.pricing-price {
    text-align: right;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}

.price-scan { color: var(--warning-color) ; } /* Dark Amber/Orange for Yellow category */
.price-large { color: var(--danger-color) ; } /* Red */
.price-print { color: #007bff ; } /* Blue */

.pricing-table .category-row td {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
    text-align: left;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

.pricing-table tr.item-row:nth-child(even) td {
    background-color: #fafafa;
}

.pricing-table tr.item-row:hover td {
    background-color: var(--bg-tint);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Map Link Card */
.map-card {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.map-card:hover {
    box-shadow: 0 15px 40px rgba(145, 0, 179, 0.15);
    transform: translateY(-5px);
}

.map-icon {
    font-size: 50px;
    margin-right: 25px;
}

.map-text h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
}

.map-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* Base Image styling */
.img-fluid {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    display: block;
    object-fit: cover;
}

/* Hero Modern Layout */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-layout .hero-content {
    flex: 1.2;
}

.hero-layout .hero-image {
    flex: 1;
}

@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    .hero-layout .hero-content {
        order: 1;
    }
    .hero-layout .hero-image {
        order: 2;
        margin-top: 30px;
    }
    .map-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .map-icon { margin-right: 0; }
}

/* Floating Action Button (FAB) */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--naver-green); /* 네이버 초록색 */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(3, 199, 90, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    white-space: nowrap;
    word-break: keep-all;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(3, 199, 90, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    .container {
        padding: 0 25px; /* 모바일 가로 여백 최소 25px 확보 */
    }
    .about__content {
        padding: 30px 20px;
    }
    .about__features-box {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .competencies {
        grid-template-columns: 1fr;
    }
}

/* Reservation CTA Highlight (Naver Green var(--naver-green)) */
#nav-links .nav-reserve a {
    background-color: var(--naver-green) ;
    color: white ;
    padding: 10px 22px ;
    border-radius: 30px ;
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.3) ;
    transition: var(--transition-smooth);
}

#nav-links .nav-reserve a:hover {
    background-color: var(--naver-green-hover) ;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.4) ;
}

.btn-reserve {
    background-color: var(--naver-green) ;
    color: white ;
    border-color: var(--naver-green) ;
}

.btn-reserve:hover {
    background-color: var(--naver-green-hover) ;
}



/* Extracted Component Styles (BEM) */




/* Hero */
.hero__subtitle { font-size: 24px; color: var(--text-dark); margin-bottom: 20px; font-weight: 500; }
.hero__image-styled { border-radius: 30px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* About */
.about__title { font-size: 32px; line-height: 1.4; margin-bottom: 20px; }
.about__desc-container { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.about__desc { margin-bottom: 25px; font-size: 1.1em; }
.about__desc-last { margin-bottom: 40px; }
.about__quote { font-size: 1.2em; font-weight: 700; color: var(--primary-color); font-style: italic; }
.about__emoji-icon { font-size: 20px; }
.about__feature-row { display: flex; gap: 12px; }
.about__feature-text { margin: 0; }

/* Sections */
.section__subtitle { color: var(--text-muted); margin-top: 10px; }
.how-it-works__footer { margin-top: 80px; }
.how-it-works__footer-title { margin-bottom: 20px; }
.how-it-works__footer-desc { max-width: 800px; margin: 0 auto 40px; }
.how-it-works__footer-img { margin: 0 auto; max-width: 900px; }

/* Pricing */
.pricing-section { background-color: var(--bg-light); padding: 80px 0; }
.pricing__note { text-align: center; color: var(--text-muted); font-size: 14px; margin-top: 15px; }
.pricing__banner { margin-top: 30px; padding: 25px; background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,210,255,0.1) 100%); border: 2px solid var(--secondary-color); border-radius: 20px; text-align: center; box-shadow: var(--shadow-soft); }
.pricing__banner-title { color: var(--primary-color); font-size: 24px; margin-bottom: 10px; }
.pricing__banner-desc { font-size: 18px; font-weight: 500; color: var(--text-dark); margin: 0; }

/* Reservation & Map */
.reservation__desc { max-width: 750px; margin: 20px auto 0; line-height: 1.7; }
.reservation__note { font-size: 0.9em; color: var(--text-muted); }
.map-section__wrapper { position: relative; width: 100%; height: 400px; border-radius: 20px; overflow: hidden; margin: 40px auto; max-width: 800px; box-shadow: var(--shadow-soft); border: 1px solid var(--border-color); background: var(--bg-tint); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.map-section__iframe { border: none; }
.map-section__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; display: block; }
.map-section__btn-overlay { position: absolute; top: 15px; right: 15px; padding: 10px 20px; background: var(--primary-gradient); color: white; border-radius: 20px; font-weight: bold; pointer-events: none; z-index: 5; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.map-section__note { color: var(--text-muted); margin-top: 30px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
