/* Yourpost Brand Design System */

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

:root {
    /* Brand Colors - 따뜻하고 부드러운 느낌 */
    --brand-primary: #ab2e2c;        /* 메인 레드 */
    --brand-secondary: #f5b47b;      /* 베이지 */
    --brand-accent: #D4A574;         /* 골드 */
    
    /* Neutrals - 눈 부담 없는 색상 */
    --text-primary: #2D2D2D;         /* 부드러운 검정 */
    --text-secondary: #6B6B6B;       /* 회색 */
    --text-light: #999999;           /* 연한 회색 */
    
    /* Backgrounds */
    --bg-primary: #FEFEFE;           /* 순백보다 부드러운 */
    --bg-secondary: #F9F7F5;         /* 크림 베이지 */
    --bg-accent: #FFF8F3;            /* 따뜻한 아이보리 */
    --bg-christmas: #eceeea;         /* 크리스마스 */
    
    /* UI */
    --border-light: #E8E5E1;
    --shadow-soft: rgba(45, 45, 45, 0.08);
    
    /* Typography */
    --font-display: 'Pretendard', -apple-system, 'SF Pro Display', sans-serif;
    --font-body: 'Pretendard', -apple-system, 'SF Pro Text', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Full Page Scroll Sections */
section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-light);
}

header.scrolled {
    background: rgba(254, 254, 254, 0.95);
    box-shadow: 0 2px 20px var(--shadow-soft);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
}

/* Main Layout */
main {
    display: none;
}

main.active {
    display: block;
}

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

/* Typography System */
h1 {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text-primary);
}

h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

/* Hero Fullscreen */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
    padding: 120px 32px 80px;
    position: relative;
}

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

.hero-title {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-cta {
    margin-top: 48px;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 16px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

/* Feature Spotlight */
.feature-spotlight {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 32px;
    background: var(--bg-primary);
    text-align: center;
}

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

.spotlight-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--brand-primary);
}

.spotlight-subtitle {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.spotlight-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.spotlight-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
/*크리스마스 스포트라이트 */
/* Feature Christmas */
.feature-christmas {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 32px;
    background: var(--bg-christmas);
    text-align: center;
}

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

.christmas-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--brand-primary);
}

.christmas-subtitle {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
}

.christmas-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.christmas-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.link-primary, .link-secondary {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.link-primary {
    color: var(--brand-primary);
}

.link-primary:hover {
    opacity: 0.7;
}

.link-secondary {
    color: var(--text-primary);
}

.link-secondary::after {
    content: ' →';
}

/* Services Grid */
.services-grid-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 32px;
    background: var(--bg-secondary);
}

.section-heading {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}

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

.service-tile {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 56px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-light);
}

.service-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px var(--shadow-soft);
    border-color: var(--brand-secondary);
}

.tile-content h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.tile-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.tile-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-secondary);
    border-radius: 16px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.tile-badge.active {
    background: var(--brand-primary);
    color: white;
}

.tile-badge.planning {
    background: var(--bg-accent);
    color: var(--brand-accent);
}

/* Values Showcase */
.values-showcase {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 32px;
    background: var(--bg-primary);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-secondary);
    border-radius: 24px;
    transition: all 0.4s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px var(--shadow-soft);
}

.value-card h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.value-card p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Page Sections */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 32px 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
}

.page-title {
    font-size: 72px;
    margin-bottom: 24px;
}

.page-lead {
    font-size: 28px;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    padding: 100px 32px;
}

.content-section.dark {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    align-items: start;
}

.large-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.column-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Info Section */
.info-section {
    padding: 100px 32px;
    background: var(--bg-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
}

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

.info-item h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.info-item p {
    font-size: 20px;
}

/* Vision Items */
.text-center {
    text-align: center;
    margin-bottom: 80px;
}

.vision-items {
    max-width: 900px;
    margin: 0 auto;
}

.vision-item {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-item:last-child {
    border-bottom: none;
}

.vision-item p {
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* Service Detail */
.service-detail-section {
    padding: 100px 32px;
}

.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-detail-header h2 {
    font-size: 48px;
    margin-bottom: 12px;
}

.status-pill {
    padding: 8px 18px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

.status-pill.active {
    background: var(--brand-primary);
    color: white;
}

.status-pill.planning {
    background: var(--bg-accent);
    color: var(--brand-accent);
}

.service-detail-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-detail-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
    border-radius: 48px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(198, 60, 81, 0.2);
}

.btn-primary:hover {
    background: #A8323F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 60, 81, 0.3);
}

/* Contact Form */
.contact-form-modern {
    max-width: 800px;
    margin: 0 auto 100px;
}

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

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

label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

input, textarea, select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    font-family: inherit;
    font-size: 16px;
    background: var(--bg-primary);
    transition: all 0.3s;
    color: var(--text-primary);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(198, 60, 81, 0.1);
}

textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.form-checkboxes {
    margin: 36px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-wrapper a {
    color: var(--brand-primary);
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.btn-submit-large {
    width: 100%;
    padding: 20px;
    background: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(198, 60, 81, 0.2);
}

.btn-submit-large:hover {
    background: #A8323F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(198, 60, 81, 0.3);
}

.form-message {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    display: none;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    display: block;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    display: block;
}

.contact-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-direct-item h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-direct-item a {
    color: var(--brand-primary);
    text-decoration: none;
    font-size: 18px;
}

.contact-direct-item a:hover {
    text-decoration: underline;
}

.contact-direct-item p {
    font-size: 18px;
    color: var(--text-primary);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    padding: 80px 32px 32px;
    border-top: 1px solid var(--border-light);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Mobile Optimizations */
@media (max-width: 1068px) {
    .hero-title { font-size: 72px; }
    .spotlight-title { font-size: 56px; }
    .section-heading { font-size: 48px; }
    .page-title { font-size: 56px; }
}

@media (max-width: 734px) {
    /* Mobile Snap Scrolling - Like Reels */
    html {
        scroll-snap-type: y proximity;
    }
    
    section {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 100px 32px;
        box-shadow: -4px 0 24px var(--shadow-soft);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        gap: 32px;
    }

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

    .nav-links a {
        font-size: 20px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 32px; }
    .hero-description { font-size: 18px; }
    .spotlight-title { font-size: 40px; }
    .spotlight-subtitle { font-size: 24px; }
    .section-heading { font-size: 36px; }
    .page-title { font-size: 40px; }
    .page-lead { font-size: 20px; }
    
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-direct {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    nav {
        padding: 0 24px;
    }
}


/* 팝업 오버레이 */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
}

.popup-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* 팝업 모달 */
.popup-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1600;
}

.popup-modal.active {
    display: block;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 팝업 콘텐츠 */
.popup-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
}

/* 팝업 닫기 버튼 */
.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #ab2e2c;
}

/* 팝업 이미지 */
.popup-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
}

/* 팝업 제목 */
.popup-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2D2D2D;
}

/* 팝업 설명 */
.popup-content p {
    font-size: 16px;
    color: #6B6B6B;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* 팝업 부제목 */
.popup-subtext {
    font-size: 13px;
    color: #999999;
    margin-top: 12px !important;
}

/* 팝업 버튼 컨테이너 */
.popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* 팝업 버튼 공통 */
.popup-btn-primary,
.popup-btn-secondary {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

/* 주요 버튼 */
.popup-btn-primary {
    background: #ab2e2c;
    color: white;
    box-shadow: 0 4px 12px rgba(171, 46, 44, 0.2);
}

.popup-btn-primary:hover {
    background: #8B1C1B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(171, 46, 44, 0.3);
}

/* 보조 버튼 */
.popup-btn-secondary {
    background: #F9F7F5;
    color: #2D2D2D;
    border: 1px solid #E8E5E1;
}

.popup-btn-secondary:hover {
    background: #FFF8F3;
    border-color: #ab2e2c;
}

/* 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* 모바일 팝업 */
@media (max-width: 768px) {
    .popup-content {
        padding: 32px 24px;
        width: 95%;
    }

    .popup-content h2 {
        font-size: 20px;
    }

    .popup-content p {
        font-size: 15px;
    }

    .popup-buttons {
        flex-direction: column;
    }

    .popup-btn-primary,
    .popup-btn-secondary {
        width: 100%;
    }
}
/* ===== FOOTER STYLES ===== */

.footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 80px 32px 32px;
    border-top: 1px solid rgba(198, 60, 81, 0.1);
    margin-top: 100px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: #C63C51;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C63C51;
}

.footer-desc {
    margin-top: 8px !important;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.company-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    line-height: 1.6;
}

.company-info a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: #C63C51;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer 반응형 */
@media (max-width: 1068px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 734px) {
    .footer {
        padding: 60px 24px 24px;
        margin-top: 80px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-section h4 {
        font-size: 12px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
    }

    .copyright {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer {
        padding: 48px 16px 16px;
    }
}