/* ====================================
   혜안 공인중개사 사무소 랜딩페이지 스타일
   ==================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #eef3ff 0%, #f7faff 45%, #ffffff 100%);
    position: relative;
    min-height: 100vh;
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.85;
}

body::before {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -160px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.28) 0%, rgba(59, 130, 246, 0) 70%);
}

body::after {
    width: 420px;
    height: 420px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 70%);
}

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

/* ====================================
   Language Visibility
   ==================================== */

[data-lang] {
    display: none;
}

body.lang-ko [data-lang="ko"],
body.lang-en [data-lang="en"],
body.lang-zh [data-lang="zh"] {
    display: initial;
}

body.lang-ready [data-lang] {
    visibility: visible;
}

/* ====================================
   Language Switcher
   ==================================== */

.language-switcher {
    position: fixed;
    top: 90px;
    right: 30px;
    display: flex;
    gap: 6px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(6px);
}

/* ====================================
   Event Popup
   ==================================== */
.event-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: white;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.event-popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-light);
    color: var(--text-gray);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--text-dark);
    color: white;
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.popup-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.discount-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.discount-text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.popup-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.popup-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.popup-benefits {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.popup-benefits li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.popup-benefits i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.popup-countdown {
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 15px;
}

.countdown-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    min-width: 60px;
    padding: 12px 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
}

.countdown-unit {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.popup-btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: block;
}

.popup-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.popup-btn-secondary {
    background: transparent;
    color: var(--text-gray);
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.popup-btn-secondary:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.popup-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.6;
}

/* Popup Mobile Styles */
@media (max-width: 480px) {
    .popup-content {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .discount-number {
        font-size: 3rem;
    }
    
    .discount-text {
        font-size: 1.5rem;
    }
    
    .popup-subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-value {
        font-size: 2rem;
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
}

/* ====================================
   WeChat QR Modal
   ==================================== */
.qr-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 11000;
}

.qr-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.qr-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
}

.qr-modal__content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 32px 28px 36px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    text-align: center;
    z-index: 1;
}

.qr-modal__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.qr-modal__subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.qr-modal__image {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
    margin-bottom: 20px;
}

.qr-modal__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.qr-modal__hint {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.qr-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.qr-modal__close:hover {
    background: var(--primary-color);
    color: white;
}

.qr-modal__close i {
    font-size: 1rem;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 480px) {
    .qr-modal__content {
        padding: 24px 20px 28px;
        border-radius: 18px;
    }

    .qr-modal__title {
        font-size: 1.4rem;
    }
}

/* ====================================
   Top Notice Bar
   ==================================== */
.notice-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.notice-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.notice-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.notice-actions {
    display: flex;
    align-items: center;
}

.notice-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
}

.notice-action-btn svg {
    width: 18px;
    height: 18px;
}

.notice-action-btn:hover,
.notice-action-btn:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.contact-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 640px) {
    .notice-content {
        flex-direction: column;
        gap: 14px;
    }

    .notice-actions {
        width: 100%;
        justify-content: center;
    }

    .notice-action-btn {
        width: 100%;
        justify-content: center;
    }
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Phone Icon */
.contact-phone {
    background: rgba(255, 255, 255, 0.25) !important;
}

.contact-phone:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.15) rotate(15deg);
}

/* KakaoTalk Icon */
.contact-kakao {
    background: #FEE500 !important;
    padding: 6px;
}

.contact-kakao:hover {
    background: #FFD900 !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
}

.contact-kakao .contact-brand-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* WeChat Icon */
.contact-wechat {
    background: white !important;
}

.contact-wechat:hover {
    background: #09b83e !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(9, 184, 62, 0.3);
}

.contact-wechat svg {
    fill: #09b83e;
}

.contact-wechat:hover svg {
    fill: white;
}

/* WhatsApp Icon */
.contact-whatsapp {
    background: white !important;
}

.contact-whatsapp:hover {
    background: #25d366 !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp svg {
    fill: #25d366;
}

.contact-whatsapp:hover svg {
    fill: white;
}

/* LINE Icon */
.contact-line {
    background: white !important;
}

.contact-line:hover {
    background: #00C300 !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
}

.contact-line i {
    color: #00C300;
}

.contact-line:hover i {
    color: white;
}

/* Naver Email Icon */
.contact-naver {
    background: white !important;
}

.contact-naver:hover {
    background: #03C75A !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(3, 199, 90, 0.3);
}

.contact-naver svg {
    fill: #03C75A;
}

.contact-naver:hover svg {
    fill: white;
}

.contact-brand-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ====================================
   Language Visibility Helpers
   ==================================== */
[data-lang][aria-hidden="true"] {
    display: none !important;
}

/* ====================================
   Language Switcher Buttons
   ==================================== */

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: var(--bg-light);
}

/* ====================================
   Header
   ==================================== */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 48px;
    z-index: 998;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-primary-small {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    position: relative;
    padding: 110px 0 150px;
    text-align: center;
    background: linear-gradient(135deg, #dff2ff 0%, #d5e4ff 50%, #cdd6ff 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: -260px;
    left: -180px;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.18) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 220px;
    background: #ffffff;
    clip-path: ellipse(75% 100% at 50% 0%);
    z-index: 0;
}

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

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-content::before {
    width: 220px;
    height: 220px;
    top: -80px;
    right: -120px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0) 70%);
}

.hero-content::after {
    width: 160px;
    height: 160px;
    bottom: -60px;
    left: -40px;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.hero-headline span {
    display: block;
}

.hero-headline .headline-sub {
    margin-top: 0;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 20px auto 40px;
    line-height: 1.8;
    max-width: 720px;
}

.hero-subtext span {
    display: block;
    margin-top: 8px;
}

.hero-subtext span:first-child {
    margin-top: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.working-hours {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 20px;
}

.working-hours i {
    color: var(--secondary-color);
}

/* ====================================
   Section Styles
   ==================================== */
section {
    position: relative;
    padding: 80px 0;
    isolation: isolate;
}

section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 50px 0 30px;
    color: var(--text-dark);
}

/* ====================================
   Problems Section
   ==================================== */
.problems {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 243, 255, 0.95) 100%);
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 65%);
    top: -160px;
    right: -120px;
    pointer-events: none;
    z-index: 0;
}

.problems::after {
    content: '';
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(220, 234, 255, 0.9) 0%, rgba(220, 234, 255, 0));
    clip-path: ellipse(72% 100% at 50% 100%);
    z-index: 0;
}

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

.problem-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #6366f1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.problem-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    transition: transform 0.5s ease;
}

.problem-card:hover .problem-badge {
    transform: scale(1.15) rotate(-10deg);
}

.problem-badge svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

/* Old problem-icon - hide */
.problem-icon {
    display: none;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1rem;
    margin-top: 12px;
    white-space: pre-line;
}

/* ====================================
   Process Section
   ==================================== */
.process {
    background:
        radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 60%),
        radial-gradient(circle at 12% 85%, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0) 65%),
        linear-gradient(180deg, rgba(221, 234, 254, 0.95) 0%, rgba(233, 246, 255, 0.95) 100%);
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(220, 234, 255, 0.95) 0%, rgba(220, 234, 255, 0));
    clip-path: ellipse(74% 100% at 50% 0%);
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 210px;
    background: linear-gradient(180deg, rgba(233, 246, 255, 0.95) 0%, rgba(233, 246, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

.process-steps {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 12px;
    white-space: pre-line;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ====================================
   Services Section
   ==================================== */
.services {
    background:
        radial-gradient(circle at 92% 8%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 65%),
        radial-gradient(circle at 8% 85%, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 249, 255, 0.95) 100%);
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(241, 249, 255, 0.95) 0%, rgba(241, 249, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

.service-area {
    text-align: center;
    margin-bottom: 50px;
}

.area-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.area-text i {
    color: var(--primary-color);
}

.area-text strong {
    color: var(--primary-color);
}

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

.housing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.housing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.housing-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.housing-card:hover .housing-image img {
    transform: scale(1.1);
}

.housing-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.housing-card:hover .housing-overlay {
    transform: rotate(360deg) scale(1.1);
    background: rgba(16, 185, 129, 0.95);
}

.housing-content {
    padding: 25px 20px;
    text-align: center;
}

.housing-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.housing-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 10px;
    white-space: pre-line;
}

/* Old housing icon - remove or keep hidden */
.housing-icon {
    display: none;
}

/* ====================================
   Trust Section
   ==================================== */
.trust {
    background:
        radial-gradient(circle at 88% 15%, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 65%),
        radial-gradient(circle at 12% 85%, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 65%),
        linear-gradient(180deg, rgba(233, 243, 255, 0.95) 0%, rgba(244, 249, 255, 0.95) 100%);
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 190px;
    background: linear-gradient(180deg, rgba(233, 243, 255, 0.95) 0%, rgba(233, 243, 255, 0));
    clip-path: ellipse(74% 100% at 50% 0%);
    z-index: 0;
}

.trust::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.95) 0%, rgba(244, 249, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

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

.trust-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trust-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    transition: transform 0.5s ease;
}

.trust-card:hover .trust-badge {
    transform: scale(1.1) rotate(5deg);
}

.trust-badge svg {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

/* Old trust-icon - hide */
.trust-icon {
    display: none;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1rem;
    margin-top: 12px;
    white-space: pre-line;
}

.license-number {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 5px 0;
}

.company-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.company-info p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.company-info strong {
    color: var(--text-dark);
}

.company-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

/* ====================================
   Checklist Section
   ==================================== */
.checklist {
    background:
        radial-gradient(circle at 88% 10%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 65%),
        radial-gradient(circle at 12% 90%, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 249, 255, 0.95) 100%);
    overflow: hidden;
}

.checklist::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 190px;
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.95) 0%, rgba(244, 249, 255, 0));
    clip-path: ellipse(74% 100% at 50% 0%);
    z-index: 0;
}

.checklist::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(244, 249, 255, 0.95) 0%, rgba(244, 249, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

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

.checklist-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.25;
}

.checklist-text .headline-main,
.checklist-text .headline-sub {
    display: block;
}

.checklist-text .headline-sub {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.checklist-lead {
    text-align: center;
    color: var(--text-gray);
    margin: 0 auto 30px;
    white-space: pre-line;
    max-width: 680px;
    line-height: 1.8;
}

.checklist-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.checklist-items {
    list-style: none;
    margin-bottom: 30px;
}

.checklist-items li {
    padding: 12px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-items i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.checklist-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.btn-download {
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-download:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-view {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-view:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.checklist-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ====================================
   FAQ Section
   ==================================== */
.faq {
    background:
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 65%),
        radial-gradient(circle at 10% 88%, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0) 70%),
        linear-gradient(180deg, rgba(230, 240, 255, 0.95) 0%, rgba(241, 248, 255, 0.95) 100%);
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 190px;
    background: linear-gradient(180deg, rgba(241, 248, 255, 0.95) 0%, rgba(241, 248, 255, 0));
    clip-path: ellipse(74% 100% at 50% 0%);
    z-index: 0;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(241, 248, 255, 0.95) 0%, rgba(241, 248, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

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

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
}

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

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ====================================
   Contact Form Section
   ==================================== */
.contact-form {
    background:
        radial-gradient(circle at 90% 8%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 65%),
        radial-gradient(circle at 8% 92%, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 248, 255, 0.95) 100%);
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 190px;
    background: linear-gradient(180deg, rgba(239, 248, 255, 0.95) 0%, rgba(239, 248, 255, 0));
    clip-path: ellipse(74% 100% at 50% 0%);
    z-index: 0;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: linear-gradient(180deg, rgba(239, 248, 255, 0.95) 0%, rgba(239, 248, 255, 0));
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

.form-intro {
    text-align: center;
    color: var(--text-gray);
    margin: 0 auto 40px;
    font-size: 1.1rem;
    max-width: 720px;
    line-height: 1.7;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.netlify-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.form-success {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: #d1fae5;
    border-radius: 15px;
    text-align: center;
}

.form-success i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-gray);
    line-height: 1.8;
}

.form-success a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.form-success a:hover {
    text-decoration: underline;
}

/* ====================================
   Final CTA Section
   ==================================== */
.final-cta {
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 65%),
        linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 220px;
    background: rgba(255, 255, 255, 0.2);
    clip-path: ellipse(74% 100% at 50% 100%);
    z-index: 0;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.cta-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-channel {
    background: white;
    color: var(--text-dark);
    padding: 35px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-channel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.cta-channel:hover::before {
    transform: scaleX(1);
}

.cta-channel:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background: var(--bg-light);
}

.cta-icon svg {
    width: 40px;
    height: 40px;
}

.cta-icon i {
    font-size: 34px;
    line-height: 1;
}

.cta-phone .cta-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cta-phone .cta-icon svg {
    fill: white;
}

.cta-phone:hover .cta-icon {
    transform: rotate(15deg) scale(1.1);
}

.cta-kakao .cta-icon {
    background: #FEE500;
}

.cta-kakao:hover .cta-icon {
    transform: scale(1.1);
    background: #F5DC00;
}

.cta-wechat .cta-icon {
    background: linear-gradient(135deg, #09b83e, #07a637);
}

.cta-wechat .cta-icon svg {
    fill: white;
}

.cta-wechat:hover .cta-icon {
    transform: scale(1.1);
}

.cta-whatsapp .cta-icon {
    background: linear-gradient(135deg, #25d366, #1ebe5d);
}

.cta-whatsapp .cta-icon svg {
    fill: white;
}

.cta-whatsapp:hover .cta-icon {
    transform: rotate(8deg) scale(1.12);
}

.cta-line .cta-icon {
    background: linear-gradient(135deg, #00C300, #009F2B);
    color: white;
}

.cta-line .cta-icon i {
    font-size: 36px;
}

.cta-line:hover .cta-icon {
    transform: rotate(10deg) scale(1.1);
}

.cta-naver .cta-icon {
    background: linear-gradient(135deg, #03C75A, #00B050);
}

.cta-naver .cta-icon svg {
    fill: white;
}

.cta-naver:hover .cta-icon {
    transform: scale(1.1);
}

.cta-channel span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cta-channel small {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.footer-company h3,
.footer-contact h4,
.footer-links h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-company p,
.footer-contact p {
    color: #9ca3af;
    line-height: 1.8;
}

.footer a {
    color: #60a5fa;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
}

/* ====================================
   Scroll to Top Button
   ==================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 997;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .nav {
        display: none;
    }
    
    .header .logo h1 {
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checklist-content {
        grid-template-columns: 1fr;
    }
    
    .checklist-text h2 {
        text-align: center;
    }
    
    .process-arrow {
        display: none;
    }
    
    .language-switcher {
        top: 50px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .problem-grid,
    .housing-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .housing-image {
        height: 200px;
    }
    
    .consultation-form {
        padding: 25px;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-icons {
        gap: 10px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
    }
    
    .language-switcher {
        flex-direction: column;
        gap: 3px;
        padding: 3px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Print Styles */
@media print {
    .notice-bar,
    .language-switcher,
    .header,
    .scroll-top,
    .btn-primary,
    .btn-secondary,
    .btn-download,
    .btn-submit {
        display: none;
    }
}