/* ===== 전역 스타일 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 새로운 색상 체계 */
    --primary-color: #2d5016;          /* 딥 포레스트 그린 (헤더/구분선) */
    --primary-dark: #1a3a0f;           /* 더 진한 그린 */
    --primary-light: #4a7a28;          /* 밝은 그린 */
    --cta-color: #5a8f3a;              /* 미디엄 그린 (CTA 버튼) */
    --accent-gold: #c9a961;            /* 소프트 골드 (강조 라인) */
    --text-dark: #3a3a3a;              /* 다크 그레이 (강조 텍스트) */
    --text-medium: #666666;
    --text-light: #888888;
    --bg-ivory: #f5f3ed;               /* 웜 아이보리 (메인 배경) */
    --bg-white: #ffffff;
    --border-color: #e0ddd5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===== 상단 고정 바 - 디자인 최적화 ===== */
.top-bar {
    background: linear-gradient(135deg, #556B2F 0%, #6b8e3f 100%);
    color: #ffffff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(85,107,47,0.25);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255,255,255,0.95);
}

.top-bar-text i {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

.top-bar-label {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 700;
    letter-spacing: -0.3px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-bar-phone {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.top-bar-phone i {
    font-size: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

/* ===== 히어로 섹션 ===== */
.hero {
    background: linear-gradient(135deg, rgba(45,80,22,0.75), rgba(45,80,22,0.65)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.98;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.hero-contact {
    margin: 30px 0;
}

.hero-phone {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-phone a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.3s;
}

.hero-phone a:hover {
    border-color: white;
}

.hero-description {
    font-size: 16px;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-info {
    margin: 30px 0;
    font-size: 16px;
    line-height: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

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

/* ===== 버튼 스타일 ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    min-height: 48px;
}

.btn i {
    font-size: 18px;
}

.btn-primary {
    background: var(--cta-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.15);
    border: 2px solid var(--cta-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25), 0 3px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    border: 2px solid white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-cta-primary {
    background: var(--cta-color);
    color: white;
    padding: 24px 48px;
    font-size: 20px;
    flex-direction: column;
    gap: 8px;
    border: 2px solid var(--cta-color);
}

.btn-cta-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-phone {
    font-size: 24px;
    font-weight: 700;
}

.btn-cta-secondary {
    background: white;
    color: var(--cta-color);
    border: 2px solid var(--cta-color);
    padding: 20px 40px;
    font-size: 18px;
}

.btn-cta-secondary:hover {
    background: var(--bg-ivory);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== 섹션 공통 스타일 ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.section-desc {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-medium);
    margin-bottom: 50px;
    line-height: 1.8;
}

/* ===== 시작 섹션 ===== */
.intro-section {
    background: white;
}

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

.reason-item {
    background: var(--bg-ivory);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reason-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reason-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.highlight-text {
    text-align: center;
    font-size: 20px;
    margin-top: 50px;
    line-height: 1.8;
}

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

/* ===== 선택 이유 섹션 ===== */
.why-section {
    background: white;
}

.why-card {
    background: var(--bg-ivory);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-gold);
}

.why-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.highlight-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: var(--shadow-sm);
}

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

.info-box {
    background: rgba(45,80,22,0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* ===== 가격 섹션 - 확대된 인포그래픽 ===== */
.price-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245,243,237,0.5) 100%);
    padding: 120px 0;
    position: relative;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--cta-color), var(--accent-gold));
}

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

.price-card {
    background: linear-gradient(145deg, rgba(250,250,245,1) 0%, rgba(245,243,237,1) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45,80,22,0.15), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: visible;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--cta-color) 100%);
    border-radius: 24px 24px 0 0;
}

.price-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(45,80,22,0.25), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--cta-color);
}

.price-icon {
    font-size: 80px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-shadow: 0 4px 8px rgba(45,80,22,0.15);
    display: block;
    line-height: 1;
}

.price-type {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.price-amount {
    font-size: clamp(26px, 3.5vw, 34px);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.price-factors {
    background: linear-gradient(135deg, rgba(245,243,237,0.95) 0%, rgba(250,250,245,1) 100%);
    padding: 70px 60px;
    border-radius: 24px;
    margin: 80px 0;
    box-shadow: 0 12px 40px rgba(45,80,22,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
    border: 4px solid var(--primary-color);
    position: relative;
}

.price-factors::before {
    content: '\f155';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201,169,97,0.3), inset 0 2px 4px rgba(255,255,255,0.8);
}

.price-factors h3 {
    text-align: center;
    font-size: clamp(34px, 4.5vw, 44px);
    margin-bottom: 50px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.factor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    list-style: none;
    margin: 50px 0;
}

.factor-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--text-dark);
    font-weight: 700;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.factor-list li:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 28px rgba(90,143,58,0.2);
    border-color: var(--cta-color);
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(250,250,245,1));
}

.factor-icon {
    font-size: 52px;
    flex-shrink: 0;
    color: var(--cta-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.factor-desc {
    text-align: center;
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--text-dark);
    margin-top: 40px;
    font-weight: 700;
    line-height: 1.8;
}

.warning-box {
    background: linear-gradient(135deg, rgba(201,169,97,0.18) 0%, rgba(201,169,97,0.28) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    margin: 80px 0;
    text-align: center;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 10px 35px rgba(201,169,97,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
}

.warning-box::before {
    content: '\f071';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 56px;
    color: var(--accent-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 6px 20px rgba(201,169,97,0.3), inset 0 2px 4px rgba(255,255,255,0.8);
}

.warning-box p {
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 2.2;
    color: var(--text-dark);
    margin: 15px 0;
    font-weight: 700;
    padding-top: 15px;
}

.warning-box strong {
    color: var(--primary-color);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 32px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== 지역별 비교 섹션 ===== */
.location-section {
    background: var(--bg-ivory);
}

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

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.location-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.placeholder-image {
    font-size: 64px;
    opacity: 0.8;
}

.location-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px 20px 10px 20px;
}

.location-features {
    list-style: none;
    padding: 0 20px 20px 20px;
}

.location-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-medium);
}

.location-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== 체크리스트 섹션 - 6가지 항목 ===== */
.checklist-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245,243,237,0.5) 100%);
    padding: 100px 0;
}

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

.checklist-item {
    background: linear-gradient(145deg, rgba(250,250,245,1) 0%, rgba(245,243,237,1) 100%);
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(45,80,22,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--primary-color);
    position: relative;
}

.checklist-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--cta-color) 100%);
    border-radius: 20px 20px 0 0;
}

.checklist-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(45,80,22,0.2), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--cta-color);
}

.checklist-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--cta-color);
    text-shadow: 0 4px 8px rgba(90,143,58,0.2);
}

.checklist-item h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.checklist-warning {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    line-height: 1.8;
    color: var(--text-medium);
}

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

/* ===== 고객 후기 섹션 ===== */
.review-section {
    background: var(--bg-ivory);
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffc107;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    min-height: 120px;
}

.review-author {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: right;
}

/* ===== 상담 효과 섹션 ===== */
.consultation-section {
    background: white;
}

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

.consultation-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 50px;
}

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

.consultation-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.process-step {
    background: var(--bg-ivory);
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    min-width: 120px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--cta-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px auto;
}

.process-step p {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 600;
}

.process-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.consultation-result {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 50px 0;
}

.consultation-quote {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-gold);
}

.consultation-quote strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

/* ===== FAQ 섹션 ===== */
.faq-section {
    background: var(--bg-ivory);
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-ivory);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--cta-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-toggle {
    font-size: 28px;
    color: var(--cta-color);
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 85px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===== 상담 혜택 섹션 ===== */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.benefit-card {
    background: var(--bg-ivory);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 48px;
    color: var(--cta-color);
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 600;
}

.benefits-promise {
    text-align: center;
    margin-top: 50px;
}

.benefits-promise p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== CTA 섹션 ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 마무리 섹션 ===== */
.closing-section {
    background: var(--bg-ivory);
    padding: 80px 0;
}

.closing-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.closing-text {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.closing-highlight {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-gold);
    border: 1px solid var(--border-color);
}

.closing-highlight p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
}

.closing-highlight strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 22px;
}

/* ===== 푸터 ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
}

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

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-phone a {
    color: white;
    text-decoration: none;
}

.footer-hours {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.3s;
}

.footer-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

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

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-phone {
    background: var(--cta-color);
    color: white;
}

.floating-form {
    background: white;
    color: var(--cta-color);
    border: 2px solid var(--cta-color);
}

/* ===== 상단 이동 버튼 ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--cta-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.scroll-top:hover {
    background: var(--primary-color);
    transform: translateX(-50%) translateY(-3px);
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-phone {
        font-size: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .price-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
    }
    
    .top-bar-content {
        gap: 10px;
    }
    
    .top-bar-label {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .top-bar-phone {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .btn-cta-primary {
        padding: 20px 32px;
        font-size: 18px;
    }
    
    .btn-phone {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .why-card {
        padding: 25px;
    }
    
    .price-factors {
        padding: 25px;
    }
    
    .factor-list {
        grid-template-columns: 1fr;
    }
    
    .scroll-top {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-top.visible {
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== 애니메이션 ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== 스크롤 스무스 ===== */
html {
    scroll-behavior: smooth;
}