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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background-color: #cfbeb0;
    color: #3a3a3a;
    line-height: 1.6;
    font-weight: 500;
}

/* 헤더 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    height: 100px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #cfbeb0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #cfbeb0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* 모바일 메뉴 토글 버튼 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2a2a2a;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
    background-color: #2a2a2a;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
    background-color: #2a2a2a;
}

/* 모바일 사이드바 */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #cfbeb0 0%, #b8a99c 100%);
    padding: 20px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.sidebar-logo-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.sidebar-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 300;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
}

.sidebar-close span {
    line-height: 1;
    display: block;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    gap: 8px;
}

.sidebar-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link:hover,
.sidebar-link:active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 15px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.sidebar-phone,
.sidebar-kakao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-phone {
    background-color: rgba(255, 255, 255, 0.15);
}

.sidebar-phone:hover,
.sidebar-phone:active {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-kakao {
    background-color: #FEE500;
    color: #3c1e1e;
    border-color: #FEE500;
}

.sidebar-kakao:hover,
.sidebar-kakao:active {
    background-color: #FFE500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

.contact-phone {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #cfbeb0;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background-color: #b8a99c;
    transform: translateY(-2px);
}

/* 히어로 섹션 스타일 */
.hero-section {
    width: 100%;
    height: 850px;
    position: relative;
    margin-top: 120px;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 850px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

/* 플로팅 버튼 */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn:active {
    transform: translateY(-1px);
}

.top-btn {
    background-color: #cfbeb0;
}

.top-btn:hover {
    background-color: #b8a99c;
}

.phone-btn {
    background-color: #4CAF50;
}

.phone-btn:hover {
    background-color: #45a049;
}

.kakao-btn {
    background-color: #FEE500;
    color: #3c1e1e;
}

.kakao-btn:hover {
    background-color: #e6ce00;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.8;
}

.hero-main-copy {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #cfbeb0;
    letter-spacing: -0.5px;
}

.pain-points-emotional {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.emotional-item {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.emotional-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.emotional-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.emotional-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.6;
}

.hero-quote {
    margin-bottom: 40px;
    padding: 20px 30px;
    background-color: rgba(207, 190, 176, 0.2);
    border-left: 4px solid #cfbeb0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
    line-height: 1.6;
}

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

.cta-button {
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: #cfbeb0;
    color: white;
}

.cta-button.primary:hover {
    background-color: #b8a99c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #2a2a2a;
}

.cta-button.secondary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

/* 섹션 이미지 공통 스타일 */
.section-image-wrapper {
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* 불안 섹션 */
.anxiety-section {
    padding: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: white;
}

.anxiety-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.anxiety-section .section-title {
    color: white;
}

.anxiety-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    font-weight: 500;
    font-style: italic;
}

.anxiety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.anxiety-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.anxiety-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: #cfbeb0;
}

.anxiety-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.anxiety-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 900;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.anxiety-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.1px;
}

/* 해결 제시 섹션 - 철칙 3가지 */
.solution-principles-section {
    padding: 0;
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
}

.solution-principles-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.principles-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.principle-main {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: -0.3px;
}

.principle-main strong {
    color: #cfbeb0;
    font-weight: 900;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.principle-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: #cfbeb0;
}

.principle-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #cfbeb0 0%, #b8a99c 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.principle-icon {
    font-size: 4rem;
    margin: 30px 0 20px;
}

.principle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.principle-subtitle {
    font-size: 1.3rem;
    color: #cfbeb0;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.principle-card p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

/* 감동 포인트 섹션 */
.touching-story-section {
    padding: 0;
    background-color: white;
}

.touching-story-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.story-box {
    background: linear-gradient(135deg, #f8f6f4 0%, #e8ddd4 100%);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #cfbeb0;
    position: relative;
    margin-top: 60px;
}

.story-quote-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 30px;
}

.story-opening {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: -0.4px;
    font-style: italic;
}

.story-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.story-detail-item {
    background-color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #cfbeb0;
}

.detail-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.story-detail-item p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

.story-conclusion {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    padding: 30px;
    background-color: rgba(207, 190, 176, 0.3);
    border-radius: 15px;
    line-height: 1.8;
    letter-spacing: -0.3px;
    margin: 0;
}

/* 핵심 혜택 섹션 */
.core-benefits-section {
    padding: 0;
    background: linear-gradient(135deg, #e8ddd4 0%, #cfbeb0 100%);
}

.core-benefits-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #cfbeb0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: #cfbeb0;
    font-weight: 900;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.benefit-card p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

/* 후기 섹션 강화 */
.review-detail {
    color: #1a1a1a;
    line-height: 2;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.1px;
}

/* 스토리 섹션 */
.story-section {
    padding: 0;
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
    text-align: center;
}

.story-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.story-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-text {
    text-align: left;
    font-size: 1.5rem;
    line-height: 2.2;
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.story-text p {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.story-text p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cfbeb0;
    font-size: 1.5rem;
    font-weight: bold;
}

.story-highlight {
    font-size: 2rem !important;
    font-weight: 900 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    padding: 40px !important;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-top: 40px !important;
    padding-left: 40px !important;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #cfbeb0;
}

.story-highlight:before {
    display: none;
}

/* 회사 스토리 섹션 */
.company-story-section {
    padding: 0;
    background-color: white;
}

.company-story-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

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

.story-intro {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f6f4;
    border-radius: 15px;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: -0.4px;
    border-left: 5px solid #cfbeb0;
}

.story-timeline {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #cfbeb0, #e8ddd4);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #cfbeb0;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #cfbeb0;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #cfbeb0;
    min-width: 80px;
    text-align: center;
    padding: 10px;
    background-color: #f8f6f4;
    border-radius: 10px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.timeline-content p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.story-mission {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
    border-radius: 20px;
    margin-top: 50px;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    letter-spacing: -0.4px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 고민 포인트 섹션 */
.pain-points-section {
    padding: 0;
    background: linear-gradient(135deg, #e8ddd4 0%, #cfbeb0 100%);
}

.pain-points-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 50px;
}

.pain-point-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ff6b6b;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pain-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.pain-point-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.pain-point-card p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.solution-box {
    background-color: #2a2a2a;
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.solution-box h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #cfbeb0;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.solution-box p {
    font-size: 1.5rem;
    line-height: 2;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* 신뢰 섹션 확장 */
.trust-section-extended {
    padding: 100px 0;
    background-color: #f8f6f4;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.trust-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.trust-item p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

/* 연락처 메시지 */
.contact-message {
    background: linear-gradient(135deg, rgba(207, 190, 176, 0.2) 0%, rgba(232, 221, 212, 0.2) 100%);
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #cfbeb0;
}

/* 문의 폼 */
.contact-form-wrapper {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e8ddd4;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    background-color: #f8f6f4;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cfbeb0;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(207, 190, 176, 0.2);
}

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

.form-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #cfbeb0 0%, #b8a99c 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8a99c 0%, #cfbeb0 100%);
}

.button-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

.contact-message p {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    font-style: italic;
    margin: 0;
    line-height: 1.8;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 서비스 섹션 */
.services-section {
    padding: 0;
    background-color: white;
}

.services-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-description {
    text-align: center;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 2;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: #f8f6f4;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #cfbeb0;
}

.service-card.featured {
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
    border-color: #cfbeb0;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.service-desc {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.service-story {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    padding: 20px;
    background-color: rgba(207, 190, 176, 0.2);
    border-left: 5px solid #cfbeb0;
    border-radius: 5px;
    line-height: 1.9;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    color: #1a1a1a;
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.8;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #cfbeb0;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #cfbeb0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px solid #e8ddd4;
    letter-spacing: -0.3px;
}

.service-inquiry-btn {
    display: block;
    width: 100%;
    padding: 18px 30px;
    margin-top: 20px;
    background: linear-gradient(135deg, #cfbeb0 0%, #b8a99c 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.2px;
}

.service-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8a99c 0%, #cfbeb0 100%);
}

.service-inquiry-btn:active {
    transform: translateY(-1px);
}

/* 변화 섹션 */
.transformation-section {
    padding: 0;
    background-color: white;
}

.transformation-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 60px;
}

.transformation-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.transformation-item:hover {
    transform: scale(1.02);
}

.transformation-before,
.transformation-after {
    text-align: center;
    padding: 50px 40px;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.transformation-before {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    color: white;
    border: 3px solid #1a1a1a;
}

.transformation-before::before {
    content: "😫";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background-color: #ff6b6b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.transformation-after {
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
    color: #1a1a1a;
    border: 3px solid #b8a99c;
}

.transformation-after::before {
    content: "✨";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background-color: #4ade80;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

.transformation-before:hover,
.transformation-after:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.transformation-before h4,
.transformation-after h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

.transformation-before h4 {
    color: #ff6b6b;
}

.transformation-after h4 {
    color: #1a1a1a;
}

.transformation-before p,
.transformation-after p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 700;
    margin: 0;
}

.transformation-before p {
    color: rgba(255, 255, 255, 0.95);
}

.transformation-after p {
    color: #1a1a1a;
}

.transformation-arrow {
    font-size: 4rem;
    color: #cfbeb0;
    font-weight: 900;
    flex-shrink: 0;
    text-shadow: 0 2px 10px rgba(207, 190, 176, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 왜 선택하는지 섹션 */
.why-section {
    padding: 0;
    background-color: #cfbeb0;
}

.why-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

/* 프로세스 섹션 */
.process-section {
    padding: 0;
    background-color: #e8ddd4;
}

.process-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    background-color: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 5rem;
    font-weight: 700;
    color: #cfbeb0;
    margin-bottom: 15px;
    opacity: 0.2;
    line-height: 1;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.process-step p {
    color: #1a1a1a;
    line-height: 2;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

/* 후기 섹션 */
.reviews-section {
    padding: 100px 0;
    background-color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background-color: #f8f6f4;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.review-text {
    color: #1a1a1a;
    line-height: 2;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.review-author {
    color: #888;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8ddd4;
}

.review-author strong {
    color: #2a2a2a;
    font-weight: 600;
}

.blog-link-wrapper {
    text-align: center;
    margin: 40px 0 60px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #cfbeb0 0%, #e8ddd4 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #b8a99c 0%, #cfbeb0 100%);
}

.blog-icon {
    font-size: 1.5rem;
}

.blog-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.blog-link:hover .blog-arrow {
    transform: translateX(5px);
}

/* 통계 섹션 */
.stats-section {
    padding: 80px 0;
    background-color: #2a2a2a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #cfbeb0;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 연락처 섹션 */
.contact-section {
    padding: 100px 0;
    background-color: #cfbeb0;
    text-align: center;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.contact-button.phone {
    background-color: #2a2a2a;
    color: white;
}

.contact-button.phone:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-button.kakao {
    background-color: #FEE500;
    color: #3c1e1e;
}

.contact-button.kakao:hover {
    background-color: #FFE500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-button.estimate {
    background-color: white;
    color: #2a2a2a;
}

.contact-button.estimate:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.button-icon {
    font-size: 1.3rem;
}

.contact-info {
    margin-top: 40px;
    color: #666;
    font-size: 0.95rem;
}

.contact-info p {
    margin: 5px 0;
}

/* 푸터 */
.footer {
    background-color: #2a2a2a;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info p {
    margin: 5px 0;
}

.footer-info strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.footer-link {
    color: #cfbeb0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* 모달창 스타일 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #cfbeb0 0%, #8b7355 100%);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: modalIconBounce 0.6s ease;
}

@keyframes modalIconBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-message {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.modal-submessage {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #cfbeb0 0%, #8b7355 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.modal-btn.secondary {
    background: white;
    color: #8b7355;
    border: 2px solid #cfbeb0;
}

.modal-btn.secondary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 모달 모바일 스타일 */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        padding: 0 10px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .modal-message {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .modal-submessage {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .modal-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 10px;
        position: relative;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }

    .logo-link {
        flex: 0 0 auto;
    }

    .logo {
        height: 50px;
    }

    .header-nav {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: 0;
        flex-shrink: 0;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        width: 95%;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-tagline {
        display: none;
    }
    
    .hero-subtitle {
        display: none;
    }

    .hero-quote {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 30px;
        font-size: 1rem;
    }

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

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .story-text p {
        padding-left: 20px;
    }

    .story-highlight {
        font-size: 1.4rem !important;
        padding: 25px !important;
    }

    .hero-quote {
        padding: 15px 20px;
    }

    .hero-quote p {
        font-size: 1rem;
    }

    .story-intro {
        font-size: 1.4rem;
        padding: 25px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.2rem;
    }

    .story-title {
        font-size: 2.5rem;
    }

    .story-text {
        font-size: 1.2rem;
    }

    .story-mission {
        font-size: 1.4rem;
        padding: 30px 20px;
    }

    .service-card h3,
    .feature-card h3,
    .pain-point-card h3,
    .trust-item h3 {
        font-size: 1.4rem;
    }

    .service-desc {
        font-size: 1.1rem;
    }

    .service-story {
        font-size: 1rem;
    }

    .service-list li {
        font-size: 1rem;
    }

    .service-price {
        font-size: 1.4rem;
    }

    .service-inquiry-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .solution-box h3 {
        font-size: 2rem;
    }

    .solution-box p {
        font-size: 1.2rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .timeline-content p {
        font-size: 1.1rem;
    }

    .process-step h3 {
        font-size: 1.5rem;
    }

    .process-step p {
        font-size: 1rem;
    }

    .review-text {
        font-size: 1.05rem;
    }

    .contact-message p {
        font-size: 1.3rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .blog-link {
        font-size: 1rem;
        padding: 15px 20px;
        flex-direction: column;
        gap: 8px;
    }

    .button-number {
        font-size: 0.85rem;
    }

    .story-timeline {
        padding-left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-year {
        font-size: 1.5rem;
        min-width: auto;
        width: 100%;
    }

    .story-mission {
        font-size: 1.2rem;
        padding: 30px 20px;
    }

    .pain-points-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .solution-box {
        padding: 30px 20px;
    }

    .solution-box h3 {
        font-size: 1.5rem;
    }

    .solution-box p {
        font-size: 1rem;
    }

    .contact-message {
        padding: 20px;
    }

    .contact-message p {
        font-size: 1.1rem;
    }

    .section-image-wrapper {
        min-height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .process-steps,
    .reviews-grid,
    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .transformation-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        font-size: 3rem;
        margin: 10px 0;
    }

    .transformation-before,
    .transformation-after {
        width: 100%;
        padding: 40px 25px;
    }

    .transformation-before::before,
    .transformation-after::before {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
        top: -15px;
    }

    .transformation-before h4,
    .transformation-after h4 {
        font-size: 1.3rem;
    }

    .transformation-before p,
    .transformation-after p {
        font-size: 1.1rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    /* 새로 추가된 섹션 모바일 스타일 */
    .hero-main-copy {
        font-size: 1.8rem;
    }

    .pain-points-emotional {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .emotional-item {
        padding: 20px 15px;
    }

    .emotional-item p {
        font-size: 1rem;
    }

    .anxiety-subtitle {
        font-size: 1.1rem;
    }

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

    .anxiety-card h3 {
        font-size: 1.4rem;
    }

    .anxiety-card p {
        font-size: 1rem;
    }

    .principles-intro {
        padding: 30px 20px;
    }

    .principle-main {
        font-size: 1.4rem;
    }

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

    .principle-card {
        padding: 30px 20px;
    }

    .principle-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -15px;
        left: 20px;
    }

    .principle-card h3 {
        font-size: 1.4rem;
    }

    .principle-card p {
        font-size: 1rem;
    }

    .story-box {
        padding: 40px 25px;
    }

    .story-opening {
        font-size: 1.4rem;
    }

    .story-details {
        grid-template-columns: 1fr;
    }

    .story-detail-item p {
        font-size: 1rem;
    }

    .story-conclusion {
        font-size: 1.3rem;
        padding: 20px;
    }

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

    .benefit-card h3 {
        font-size: 1.4rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }
}

/* 실시간 비포 에프터 전후사진 섹션 */
.before-after-section {
    padding: 80px 0;
    background-color: #f8f6f4;
}

.before-after-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.before-after-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.before-after-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.before-after-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.before-after-card {
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.before-after-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* PC 스타일 - 2~3장씩 보이게 */
@media (min-width: 769px) {
    .before-after-slider {
        gap: 20px;
    }
    
    .before-after-card {
        width: calc((100% - 40px) / 3); /* 3장씩 보이게 (gap 20px * 2 = 40px) */
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .before-after-card {
            width: calc((100% - 20px) / 2); /* 중간 화면에서는 2장 (gap 20px * 1 = 20px) */
        }
    }
}

/* 모바일 스타일 - 한 장씩 보이게 */
@media (max-width: 768px) {
    .before-after-section {
        padding: 60px 0;
    }
    
    .before-after-slider-wrapper {
        padding: 0 20px;
    }
    
    .before-after-slider {
        gap: 15px;
    }
    
    .before-after-card {
        width: calc(100% - 0px); /* 한 장씩, gap은 슬라이더에만 적용 */
        min-width: calc(100% - 0px);
    }
    
    .before-after-section .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}