/* ============================================
   힐스테이트 장안 센트럴 - 고효율 세일즈 랜딩페이지
   모바일 우선 반응형 디자인
   ============================================ */

/* 기본 리셋 및 폰트 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #007AFF;
    --primary-green: #34C759;
    --kakao-yellow: #FEE500;
    --urgent-red: #FF3B30;
    --urgent-bg: #FFE5E5;
    --dark-bg: #1C1C1E;
    --text-dark: #1C1C1E;
    --text-gray: #8E8E93;
    --text-light: #F2F2F7;
    --border-light: #E5E5EA;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ============================================
   1. 메인 히어로 섹션
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

/* 이미지만 있는 히어로 섹션 */
.hero-section.hero-image-only {
    padding: 0;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1C1C1E;
    background-image: url('https://www.genspark.ai/api/files/s/g6U67aSm');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* 이미지만 있는 히어로의 오버레이 제거 */
.hero-section.hero-image-only .hero-overlay {
    background: none;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #E5E5EA;
    line-height: 1.6;
    margin-bottom: 25px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-message {
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    color: #C7C7CC;
    animation: fadeInUp 1.4s ease-out;
}

/* 손실액 강조 박스 (NEW - 30년차 마케터 전략) */
.hero-loss-box {
    margin: 35px auto 0;
    max-width: 600px;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.5);
    animation: urgentShake 3s ease-in-out infinite;
}

@keyframes urgentShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

.hero-loss-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: center;
}

.hero-loss-text strong {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

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

/* 시행사 보유분 강조 배너 */
.hero-banner {
    margin: 30px auto 0;
    max-width: 650px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: heroBannerGlow 2s ease-in-out infinite;
}

@keyframes heroBannerGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 10px 30px rgba(0, 0, 0, 0.5);
        border-color: #FFD700;
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.9), 0 15px 40px rgba(0, 0, 0, 0.7);
        border-color: #FFA500;
    }
}

.hero-banner-label {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.hero-banner-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-banner-icon {
    font-size: 2rem;
    animation: iconBlink 1.5s ease-in-out infinite;
}

@keyframes iconBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-banner-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.5px;
}

/* ============================================
   2. 긴급 공지 섹션 (개선)
   ============================================ */
.urgent-section {
    background: var(--urgent-bg);
    padding: 50px 20px;
    border-bottom: 3px solid var(--urgent-red);
}

.urgent-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--urgent-red);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
}

.urgent-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 35px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.status-box {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.status-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 평면도 이미지 */
.floorplan-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.4s ease;
}

.status-box:hover .floorplan-image img {
    transform: scale(1.05);
}

.status-type {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 20px 0 12px;
    padding: 0 15px;
}

.status-label {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.status-label.blink {
    animation: blinkLabel 1.5s ease-in-out infinite;
}

@keyframes blinkLabel {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.status-box.sold-out .status-type {
    color: var(--text-gray);
    margin: 25px 0 12px;
}

.status-box.sold-out .status-label {
    margin-bottom: 25px;
}

.status-box.sold-out .status-label {
    background: #F2F2F7;
    color: var(--text-gray);
}

.status-box.urgent .status-type {
    color: var(--urgent-red);
}

.status-box.urgent .status-label {
    background: var(--urgent-red);
    color: #fff;
    font-weight: 700;
}

/* 특별혜택 박스 */
.special-benefit-box {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px 25px;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border: 3px solid #FFD700;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    animation: benefitPulse 2s ease-in-out infinite;
}

/* 히어로 섹션용 특별혜택 박스 */
.special-benefit-box.hero-benefit {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 193, 7, 0.95) 100%);
    border: 3px solid #FFF;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    margin-top: 35px;
    animation: heroGlowPulse 2.5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 16px 50px rgba(255, 215, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.6);
    }
}

.special-benefit-box.hero-benefit .benefit-text {
    color: #1C1C1E;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    line-height: 1.6;
}

.special-benefit-box.hero-benefit .benefit-text strong {
    color: #8B0000;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.8);
    letter-spacing: -0.5px;
    display: inline;
    margin-top: 0;
}

.special-benefit-box.hero-benefit .benefit-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.8));
}

/* 히어로 섹션 즉시 전화 CTA (30년차 전략 - 최우선) */
.hero-cta-wrapper {
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-main {
    display: block;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    padding: 25px 40px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 3px solid #FFD700;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 50px rgba(255, 0, 0, 0.6);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 20px 60px rgba(255, 0, 0, 0.8);
    }
}

.hero-cta-main:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.9) !important;
}

.hero-cta-flash {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    text-align: center;
    margin-bottom: 10px;
    animation: flashText 1.5s ease-in-out infinite;
}

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

.hero-cta-phone {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-cta-sub {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.hero-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hero-cta-small {
    display: block;
    padding: 18px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-cta-sms {
    background: linear-gradient(135deg, #34C759, #28A745);
    color: #fff;
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.4);
}

.hero-cta-sms:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 199, 89, 0.6);
}

.hero-cta-kakao {
    background: #FEE500;
    color: #000;
    box-shadow: 0 8px 25px rgba(254, 229, 0, 0.4);
}

.hero-cta-kakao:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 229, 0, 0.6);
}

@keyframes benefitPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
    }
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: benefitIconSpin 3s ease-in-out infinite;
}

@keyframes benefitIconSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* 히어로 섹션 간소화 CTA (문자/카톡만) */
.hero-cta-wrapper.hero-cta-simple {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-cta-button {
    flex: 1;
    display: block;
    padding: 25px 35px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-cta-button.hero-cta-sms {
    background: linear-gradient(135deg, #34C759, #28A745);
    color: #fff;
}

.hero-cta-button.hero-cta-kakao {
    background: #FEE500;
    color: #000;
}

.hero-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* 특별 혜택 안내 섹션 (히어로 하단) */
.hero-benefits-section {
    background: linear-gradient(135deg, #1C1C1E 0%, #2C2C2E 100%);
    padding: 60px 20px;
    position: relative;
}

.hero-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.hero-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.benefit-card.benefit-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
    animation: benefitFloat 3s ease-in-out infinite;
}

@keyframes benefitFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
}

.benefit-desc {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.benefit-phone {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.benefit-phone:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.05);
}

.benefit-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.benefit-text strong {
    font-size: 1.4rem;
    color: #FF6B00;
    font-weight: 900;
    display: block;
    margin-top: 8px;
}

/* ============================================
   중간 CTA 섹션 (문자/카톡)
   ============================================ */
.middle-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 20px;
    text-align: center;
}

.middle-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.middle-cta-button {
    display: block;
    padding: 35px 40px;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.middle-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.middle-cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.middle-cta-button.middle-cta-sms {
    background: linear-gradient(135deg, #34C759, #28A745);
    color: #fff;
}

.middle-cta-button.middle-cta-kakao {
    background: #FEE500;
    color: #000;
}

.middle-cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ============================================
   3. 핵심 경쟁력 섹션
   ============================================ */
.features-section {
    padding: 80px 20px;
    background: #fff;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 0;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

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

/* 특징 카드 이미지 */
.feature-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 0;
}

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

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

.feature-icon {
    font-size: 4rem;
    margin: 25px 0 15px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding: 0 30px;
}

.feature-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #48484A;
    padding: 0 30px 40px;
}

.feature-desc strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.price-highlight {
    color: #FF0000 !important;
    font-size: 1.25rem !important;
    display: block;
    margin-bottom: 8px;
}

.save-money {
    display: block;
    color: #00C853 !important;
    font-weight: 900 !important;
    font-size: 1.15rem !important;
    margin-top: 8px;
}

/* ============================================
   🎉 스타벅스 이벤트 섹션 (간결화 - 30년차 전략)
   ============================================ */
.event-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF4500, #FF6347);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.event-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    color: #2C1810;
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-period {
    font-size: 1.15rem;
    text-align: center;
    color: #D84315;
    font-weight: 600;
    margin-bottom: 30px;
}

.event-box-simple {
    max-width: 700px;
    margin: 0 auto 30px;
    background: #fff;
    border: 4px solid #00704A;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 112, 74, 0.3);
    text-align: center;
}

.starbucks-logo-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.starbucks-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 112, 74, 0.3));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.event-coffee-big {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: coffeeBounce 2s ease-in-out infinite;
}

@keyframes coffeeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.event-simple-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 25px 0;
}

.event-simple-text strong {
    color: #00704A;
    font-weight: 900;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.event-gift {
    display: block;
    color: #D84315;
    font-weight: 900;
    font-size: 1.6rem;
    margin-top: 15px;
}

/* 이벤트 프로세스 */
.event-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dashed #00704A;
}

.process-step {
    background: linear-gradient(135deg, #00704A, #005a3c);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

.process-arrow {
    font-size: 1.5rem;
    color: #00704A;
    font-weight: 900;
}

/* 방문예약 CTA (간소화) */
.visit-cta-simple {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visit-btn-main {
    display: block;
    padding: 25px 35px;
    background: linear-gradient(135deg, #FF6347, #FF4500);
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
    transition: all 0.3s ease;
}

.visit-btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.6);
}

.visit-btn-sub {
    display: block;
    padding: 20px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
}

.visit-btn-sub:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.6);
}

/* ============================================
   4. CTA 버튼 섹션
   ============================================ */
.cta-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.cta-section.cta-middle {
    background: linear-gradient(135deg, #e3f2fd, #f8f9fa);
}

.cta-section.cta-bottom {
    background: linear-gradient(135deg, #fff3e0, #f8f9fa);
}

.cta-heading {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    color: var(--text-dark);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 30px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-height: 80px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-icon {
    font-size: 2rem;
}

.cta-text {
    line-height: 1.4;
}

.cta-phone {
    background: var(--primary-blue);
    color: #fff;
}

.cta-phone:hover {
    background: #0051D5;
}

.cta-sms {
    background: var(--primary-green);
    color: #fff;
}

.cta-sms:hover {
    background: #248A3D;
}

.cta-kakao {
    background: var(--kakao-yellow);
    color: #000;
}

.cta-kakao:hover {
    background: #F7D600;
}

/* ============================================
   5. 단지 정보 섹션
   ============================================ */
.info-section {
    padding: 80px 20px;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: #fff;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #48484A;
}

.info-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ============================================
   7. 갤러리 섹션
   ============================================ */
.gallery-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background: #f0f0f0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   9. 푸터 섹션
   ============================================ */
.footer-section {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 30px 20px;
}

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

.footer-message {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #C7C7CC;
}

/* ============================================
   법적 고지사항 푸터 (NEW)
   ============================================ */
.legal-footer {
    background-color: #f5f5f5;
    padding: 40px 20px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #ddd;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legal-notice-main {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    font-size: 14px;
}

.legal-company-info {
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-left: 3px solid var(--primary-blue);
    border-radius: 4px;
}

.legal-company-name {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.legal-disclaimer {
    font-size: 11px;
    color: #888;
    line-height: 1.8;
    padding: 15px;
    background: #fafafa;
    border-radius: 4px;
    margin-bottom: 15px;
}

.legal-copyright {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* 최소화된 사업자 정보 (맨 하단) */
.legal-minimal-info {
    font-size: 9px;
    color: #bbb;
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.4;
}

/* ============================================
   반응형 디자인 - 태블릿
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-message {
        font-size: 0.9rem;
    }

    .urgent-title {
        font-size: 1.3rem;
    }

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* 중간 CTA 모바일 */
    .middle-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .middle-cta-button {
        padding: 25px 30px;
        font-size: 1.3rem;
    }
    
    /* 이미지만 있는 히어로 */
    .hero-section.hero-image-only {
        min-height: 70vh;
    }
    
    /* 간소화된 히어로 CTA */
    .hero-cta-wrapper.hero-cta-simple {
        flex-direction: column;
        padding-top: 30px;
    }
    
    .hero-cta-button {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    /* 혜택 카드 그리드 */
    .hero-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon-large {
        font-size: 3.5rem;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .special-benefit-box.hero-benefit {
        margin-top: 40px;
        padding: 25px 20px;
    }
    
    .special-benefit-box.hero-benefit .benefit-icon {
        font-size: 3rem;
    }
    
    .special-benefit-box.hero-benefit .benefit-text strong {
        font-size: 1.3rem;
    }
    
    /* 시행사 배너 반응형 */
    .hero-banner {
        margin-top: 35px;
        padding: 12px 20px;
    }
    
    .hero-banner-label {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .hero-banner-text {
        font-size: 1.5rem;
    }
    
    .hero-banner-icon {
        font-size: 1.5rem;
    }
    
    /* 이벤트 섹션 반응형 */
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-period {
        font-size: 1.05rem;
    }
    
    .event-box-simple {
        padding: 30px 20px;
    }
    
    .starbucks-logo {
        width: 100px;
        height: 100px;
    }
    
    .event-simple-text {
        font-size: 1.15rem;
    }
    
    .event-simple-text strong {
        font-size: 1.3rem;
    }
    
    .event-gift {
        font-size: 1.4rem;
    }
    
    .process-step {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    
    .process-arrow {
        font-size: 1.3rem;
    }
    
    .visit-btn-main {
        font-size: 1.3rem;
        padding: 20px 25px;
    }
    
    .visit-btn-sub {
        font-size: 1.15rem;
        padding: 18px 25px;
    }
    
    /* 히어로 CTA 반응형 */
    .hero-cta-phone {
        font-size: 2rem;
    }
    
    .hero-loss-text {
        font-size: 1.2rem;
    }
    
    .hero-loss-text strong {
        font-size: 1.8rem;
    }
}

/* ============================================
   반응형 디자인 - 모바일
   ============================================ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .urgent-title {
        font-size: 1.1rem;
    }

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

    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .floorplan-image {
        height: 140px;
    }
    
    .status-type {
        font-size: 1.2rem;
        margin: 15px 0 10px;
    }
    
    .status-label {
        font-size: 0.95rem;
        padding: 8px 14px;
        margin-bottom: 15px;
    }

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

    .cta-button {
        font-size: 1rem;
        padding: 20px 25px;
    }

    .feature-card {
        padding: 0;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-title {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .feature-desc {
        font-size: 0.95rem;
        padding: 0 20px 30px;
    }
    
    .special-benefit-box {
        padding: 25px 20px;
        margin: 30px auto 0;
    }
    
    .special-benefit-box.hero-benefit {
        margin-top: 35px;
        padding: 20px 15px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .special-benefit-box.hero-benefit .benefit-icon {
        font-size: 2.8rem;
    }
    
    .benefit-text {
        font-size: 1.05rem;
    }
    
    .benefit-text strong {
        font-size: 1.2rem;
    }
    
    .special-benefit-box.hero-benefit .benefit-text {
        font-size: 1.1rem;
    }
    
    .special-benefit-box.hero-benefit .benefit-text strong {
        font-size: 1.25rem;
    }
    
    /* 시행사 배너 모바일 */
    .hero-banner {
        margin-top: 30px;
        padding: 10px 15px;
    }
    
    .hero-banner-label {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .hero-banner-text {
        font-size: 1.2rem;
    }
    
    .hero-banner-icon {
        font-size: 1.3rem;
    }
    
    /* 이벤트 섹션 모바일 */
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-period {
        font-size: 0.95rem;
    }
    
    .event-box-simple {
        padding: 25px 15px;
    }
    
    .starbucks-logo {
        width: 80px;
        height: 80px;
    }
    
    .event-simple-text {
        font-size: 1.05rem;
    }
    
    .event-simple-text strong {
        font-size: 1.2rem;
    }
    
    .event-gift {
        font-size: 1.25rem;
    }
    
    .event-process {
        flex-direction: column;
        gap: 8px;
    }
    
    .process-step {
        font-size: 0.9rem;
        padding: 10px 18px;
        width: 100%;
    }
    
    .process-arrow {
        display: none;
    }
    
    .visit-btn-main {
        font-size: 1.2rem;
        padding: 22px 20px;
    }
    
    .visit-btn-sub {
        font-size: 1.05rem;
        padding: 18px 20px;
    }
    
    /* 히어로 CTA 모바일 */
    .hero-cta-phone {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-cta-sub {
        font-size: 0.95rem;
    }
    
    .hero-cta-flash {
        font-size: 1rem;
    }
    
    .hero-loss-box {
        padding: 15px 20px;
    }
    
    .hero-loss-text {
        font-size: 1.05rem;
    }
    
    .hero-loss-text strong {
        font-size: 1.6rem;
    }
}

/* ============================================
   성능 최적화
   ============================================ */
img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
