/* ==========================================
   NV ADVERTISING - 인트로 영상 + 시네마틱
========================================== */

:root {
    --primary: #FF0050;
    --secondary: #6366F1;
    --dark: #000000;
    --light: #FFFFFF;
    --gray: #6B7280;
}

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

/* 성능 최적화 */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

/* GPU 가속 */
.hero-title,
.btn,
.work-item,
.service-item,
.nav-links a::after {
    will-change: transform;
}

/* 부드러운 애니메이션 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 터치 디바이스 최적화 */
.touch-device .work-item.touch-active,
.touch-device .service-item.touch-active {
    transform: scale(0.98);
}

.touch-device .work-item.touch-active .work-thumb img {
    transform: scale(1.05);
}

.touch-device .service-item.touch-active .service-icon {
    transform: scale(1.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

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

.container-full {
    padding: 0 2rem;
}

/* 기본 타이포그래피 */
p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   네비게이션
========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.scrolled {
    padding: 0.875rem 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 0, 80, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-brand:hover {
    opacity: 0.85;
}

.nav-logo {
    height: 42px;
    width: auto;
    transition: transform 0.3s;
}

.nav-brand:hover .nav-logo {
    transform: scale(1.05);
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-ko {
    font-size: 1.0625rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand-en {
    font-size: 0.5625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==========================================
   히어로
========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.25) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 13rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 3rem;
    letter-spacing: -0.07em;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.9);
}

.hero-title .line {
    display: block;
    animation: slideUp 1s ease-out both;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) { animation-delay: 0.6s; }

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

.gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.375rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.8s both;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, white, transparent);
    margin: 1rem auto 0;
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* ==========================================
   버튼
========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 80, 0.6);
}

.btn-play {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.6);
}

/* ==========================================
   About
========================================== */
.about {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-video {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.about-video-player {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
    display: block;
}

.about-video:hover .about-video-player {
    transform: scale(1.02);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.about-video.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.label {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.688rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.label:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    color: white;
}

.text {
    font-size: 1.188rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.text strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat-box {
    text-align: left;
}

.stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
}

.stat-num::after {
    content: '+';
    position: absolute;
    font-size: 2rem;
    margin-left: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
    opacity: 0.6;
}

/* ==========================================
   Work
========================================== */
.work {
    padding: 8rem 0;
    background: #000;
    position: relative;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.section-desc .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Desktop: 3-3 레이아웃 (6개) */
@media (min-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.work-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3);
}

.work-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: border-color 0.4s;
}

.work-item:hover::after {
    border-color: var(--primary);
}

.work-thumb {
    position: relative;
    overflow: hidden;
}

.work-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.3), rgba(99, 102, 241, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.work-item:hover .work-thumb::before {
    opacity: 1;
}

.work-thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover .work-thumb img {
    transform: scale(1.1) rotate(2deg);
}

/* 코인 마케팅 이미지 전용 스타일 - 텍스트가 잘리지 않도록 contain 사용 */
.coin-marketing-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
}

.work-item:hover .coin-marketing-img {
    transform: scale(1.05) !important;
}

/* 플레이스 마케팅 이미지 전용 스타일 - 텍스트가 잘리지 않도록 contain 사용 */
.place-marketing-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.work-item:hover .place-marketing-img {
    transform: scale(1.05) !important;
}

/* 주식 마케팅 이미지 전용 스타일 - 텍스트가 잘리지 않도록 contain 사용 */
.stock-marketing-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #1a2538 0%, #2d3f5e 100%);
}

.work-item:hover .stock-marketing-img {
    transform: scale(1.05) !important;
}

/* 법률 마케팅 이미지 전용 스타일 - 텍스트가 잘리지 않도록 contain 사용 */
.law-marketing-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #1a2742 0%, #2d3e5c 100%);
}

.work-item:hover .law-marketing-img {
    transform: scale(1.05) !important;
}

/* 당근 마케팅 이미지 전용 스타일 - 앱 화면이 잘리지 않도록 contain 사용 */
.carrot-marketing-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #1a2332 0%, #243447 100%);
}

.work-item:hover .carrot-marketing-img {
    transform: scale(1.05) !important;
}

/* 언론 보도 이미지 전용 스타일 - 메이저 언론사 로고가 잘리지 않도록 contain 사용 */
.press-release-img {
    object-fit: contain !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
}

.work-item:hover .press-release-img {
    transform: scale(1.05) !important;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.work-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.work-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.4);
}

.work-badge.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.work-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.work-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
}

.work-number {
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
}

.work-item:hover .work-info {
    background: rgba(0, 0, 0, 0.95);
    border-top-color: var(--primary);
}

.work-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.work-item:hover .work-info h3 {
    color: var(--primary);
    transform: translateX(5px);
}

.work-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.work-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.work-item:hover .work-tag {
    background: rgba(255, 0, 80, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================
   추가 서비스 섹션
========================================== */
.additional-services {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(99, 102, 241, 0.1));
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(99, 102, 241, 0.1));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 80, 0.2);
}

.service-icon svg {
    stroke: var(--primary);
    filter: drop-shadow(0 4px 8px rgba(255, 0, 80, 0.3));
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.2), rgba(99, 102, 241, 0.2));
    border-color: var(--primary);
}

.service-item:hover .service-icon svg {
    stroke: var(--secondary);
    animation: iconPulse 0.6s ease-in-out;
}

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

.service-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    transition: all 0.3s;
}

.service-item:hover h4 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item p {
    font-size: 0.938rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}

/* ==========================================
   Notices (공지사항)
========================================== */
.notices {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* 전체 공지사항 보기 버튼 */
.view-all-notices-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-all-notices-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.15), rgba(99, 102, 241, 0.15));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.view-all-notices-btn:hover::before {
    left: 0;
}

.view-all-notices-btn:hover {
    border-color: rgba(255, 0, 80, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 80, 0.2);
}

.view-all-notices-btn svg {
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.view-all-notices-btn:hover svg:first-child {
    transform: scale(1.1) rotate(-5deg);
}

.view-all-notices-btn:hover svg:last-child {
    transform: translateX(4px);
}

.view-all-notices-btn span {
    position: relative;
    z-index: 1;
}

.notices-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.notices-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.notices-empty p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

.notice-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1.75rem;
    transition: all 0.3s;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.notice-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.notice-item:hover::before {
    opacity: 1;
}

a.notice-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 고정 공지사항 스타일 */
.notice-item-pinned {
    background: rgba(255, 0, 80, 0.04);
    border: 1px solid rgba(255, 0, 80, 0.2);
    box-shadow: 0 2px 12px rgba(255, 0, 80, 0.1);
}

.notice-item-pinned::before {
    opacity: 1;
}

.notice-item-pinned:hover {
    background: rgba(255, 0, 80, 0.06);
    border-color: rgba(255, 0, 80, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.2);
}

/* 고정 배지 */
.pinned-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 0.75rem;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.3);
}

/* 관리자 액션 버튼 */
.notice-item-actions {
    display: flex;
    gap: 0.4rem;
}

.btn-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-pin {
    opacity: 0.6;
}

.btn-unpin {
    opacity: 1;
    background: rgba(255, 0, 80, 0.15);
    border-color: rgba(255, 0, 80, 0.3);
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.notice-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.notice-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.45;
    flex: 1;
    letter-spacing: -0.01em;
}

.notice-item-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.45);
    flex-wrap: wrap;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.notice-item-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.notice-item-content {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notices-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}


/* 공지사항 모달 */
.notice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.notice-modal.active {
    display: block;
}

.notice-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.notice-modal-content {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.notice-modal-small {
    max-width: 500px;
}

.notice-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notice-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
}

.notice-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.notice-modal-close:hover {
    background: rgba(255, 0, 80, 0.2);
    color: var(--primary);
}

.notice-form {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.938rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 200px;
    line-height: 1.8;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* 공지사항 상세보기 */
.notice-detail {
    padding: 2.5rem;
}

.notice-detail-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.notice-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.notice-detail-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
}

.notice-detail-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.063rem;
    line-height: 2;
    white-space: pre-wrap;
    word-break: break-word;
}

.notice-detail-actions {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ==========================================
   Contact
========================================== */
.contact {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(255, 0, 80, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-label {
    font-size: 0.875rem;
    opacity: 0.5;
    font-weight: 600;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.info-value:hover {
    transform: translateX(5px);
    filter: brightness(1.2);
}

/* 연락처 아이콘 그리드 */
.contact-icons {
    display: grid;
    grid-template-columns: repeat(7, 68px);
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: flex-start;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 툴팁 효과 */
.contact-icon::before {
    content: attr(aria-label);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 100;
}

.contact-icon::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 100;
}

.contact-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.contact-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

.contact-icon svg {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-icon:hover svg,
.contact-icon:hover .icon-logo {
    transform: scale(1.15) rotate(5deg);
}

.contact-icon .icon-logo {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 전화 - 초록색 */
.contact-icon-phone {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.contact-icon-phone:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.6);
}

/* 이메일 - 파란색 */
.contact-icon-email {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.contact-icon-email:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.6);
}

/* 카카오톡 - 노란색 */
.contact-icon-kakao {
    background: #FEE500;
}

.contact-icon-kakao:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(254, 229, 0, 0.7);
}

/* 텔레그램 - 하늘색 */
.contact-icon-telegram {
    background: linear-gradient(135deg, #2AABEE, #229ED9);
}

.contact-icon-telegram:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(42, 171, 238, 0.6);
}

/* 인스타그램 - 그라데이션 */
.contact-icon-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.contact-icon-instagram:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.6);
}

/* 네이버 블로그 - 초록색 */
.contact-icon-naver {
    background: #1EC800;
    padding: 8px;
}

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

.contact-icon-naver:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(30, 200, 0, 0.6);
}

/* 유튜브 - 빨간색 */
.contact-icon-youtube {
    background: #FF0000;
}

.contact-icon-youtube:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.contact-icon:hover svg,
.contact-icon:hover .icon-logo {
    transform: scale(1.15) rotate(5deg);
}

/* 터치 디바이스 최적화 */
@media (hover: none) {
    .contact-icon:active {
        transform: scale(0.92);
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #1a1a1a;
    color: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 0, 80, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* ==========================================
   간단한 사업자 정보 푸터
========================================== */
.simple-footer {
    padding: 3rem 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.business-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.business-info span:first-child {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.business-info .divider {
    opacity: 0.3;
}

.copyright {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    letter-spacing: 0.02em;
}

.admin-link {
    text-align: center;
    margin-top: 1rem;
}

.admin-link a {
    transition: all 0.3s;
}

.admin-link a:hover {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==========================================
   비디오 모달
========================================== */
.footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* 상단: 로고 & 연락처 */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand-name {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-slogan {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-contact-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 80, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.contact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary);
}

/* 중단: 빠른 링크 */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 2rem 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h5 {
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-col a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-col a:hover::before {
    width: 100%;
}

/* 하단: 사업자 정보 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-business {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-business .business-name {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-business .divider {
    opacity: 0.3;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    white-space: nowrap;
}

/* ==========================================
   비디오 모달
========================================== */

.footer-col a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-business-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.8;
}

.footer-business-info span {
    white-space: nowrap;
}

.footer-business-info .divider {
    opacity: 0.4;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 1rem 0 0 0;
    text-align: center;
}

/* ==========================================
   비디오 모달
========================================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    z-index: 10000;
}

.modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg) scale(1.1);
}

.modal-video {
    max-width: 1200px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 80, 0.3);
}

/* ==========================================
   반응형
========================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 16rem;
        line-height: 0.85;
        letter-spacing: -0.07em;
        margin-bottom: 4rem;
    }
    
    .hero-text {
        font-size: 1.25rem;
        opacity: 0.8;
    }
    
    .title {
        font-size: 4rem;
    }
    
    .work-thumb img {
        height: 550px;
    }
    
    /* Desktop XL에서 특수 이미지는 contain 유지 */
    .place-marketing-img,
    .stock-marketing-img,
    .law-marketing-img,
    .carrot-marketing-img,
    .press-release-img {
        object-fit: contain !important;
        height: 550px !important;
    }
    
    .btn {
        font-size: 1rem;
        padding: 1.5rem 3.5rem;
    }
}

/* Desktop (1024px ~ 1400px) */
@media (max-width: 1400px) and (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 11rem;
        line-height: 0.9;
        letter-spacing: -0.06em;
        margin-bottom: 3rem;
    }
    
    .hero-text {
        font-size: 1.25rem;
        opacity: 0.8;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .work-thumb img {
        height: 500px;
    }
    
    /* Desktop (1024-1400px)에서 특수 이미지는 contain 유지 */
    .place-marketing-img,
    .stock-marketing-img,
    .law-marketing-img,
    .carrot-marketing-img,
    .press-release-img {
        object-fit: contain !important;
        height: 500px !important;
    }
    
    .btn {
        padding: 1.25rem 3rem;
        font-size: 1rem;
    }
}

/* Tablet (768px ~ 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
        line-height: 1.15;
    }
    
    .hero-text {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        gap: 1rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .about {
        padding: 6rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-video {
        max-width: 100%;
    }
    
    .stats-row {
        gap: 2rem;
    }
    
    .work {
        padding: 6rem 0;
    }
    
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .work-thumb img {
        height: 400px;
    }
    
    /* 태블릿에서 특수 이미지는 contain 유지 */
    .place-marketing-img,
    .stock-marketing-img,
    .law-marketing-img,
    .carrot-marketing-img,
    .press-release-img {
        object-fit: contain !important;
        height: 400px !important;
    }
    
    .work-info {
        padding: 1.75rem;
    }
    
    .work-info h3 {
        font-size: 1.35rem;
    }
    
    .work-number {
        font-size: 3.5rem;
    }
    
    .additional-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact {
        padding: 6rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, 60px);
        gap: 1.25rem;
        margin-top: 2.5rem;
        justify-content: flex-start;
    }
    
    .contact-icon::before,
    .contact-icon::after {
        display: none; /* 태블릿에서는 툴팁 숨김 */
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon .icon-logo {
        width: 36px;
        height: 36px;
    }
    
    /* Notices */
    .notices {
        padding: 6rem 0;
    }
    
    .notice-item {
        padding: 1.5rem;
    }
    
    .notice-item-title {
        font-size: 1.125rem;
    }
    
    .notice-item-meta {
        font-size: 0.75rem;
        gap: 0.75rem;
    }
    
    .notice-item-content {
        font-size: 0.875rem;
    }
    
    .notice-modal-content {
        margin: 1.5rem;
    }
    
    .notice-modal-header {
        padding: 1.75rem 2rem;
    }
    
    .notice-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .notice-form {
        padding: 2rem;
    }
    
    .notice-detail {
        padding: 2rem;
    }
    
    .notice-detail-title {
        font-size: 1.75rem;
    }
    
    .notice-detail-actions {
        padding: 1.25rem 2rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .footer {
        padding: 5rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-menu {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 400px;
    }
}

/* Mobile Large (480px ~ 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* 네비게이션 */
    .nav {
        padding: 1rem 0;
        height: 70px;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.3s;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.125rem;
        padding: 1.25rem 1rem;
        display: block;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-logo {
        height: 40px;
        width: auto;
    }
    
    .brand-ko {
        font-size: 1rem;
    }
    
    .brand-en {
        font-size: 0.563rem;
    }
    
    /* 히어로 */
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        padding: 7rem 0 4rem;
    }
    
    .hero-bg-video {
        display: none;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }
    
    .hero-text {
        font-size: 1.063rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* About */
    .about {
        padding: 4rem 0;
    }
    
    .about-grid {
        gap: 2.5rem;
    }
    
    .about-video-player {
        max-height: 400px;
    }
    
    .title {
        font-size: 2rem;
        line-height: 1.35;
        margin-bottom: 1.5rem;
    }
    
    .text {
        font-size: 1rem;
        line-height: 1.9;
    }
    
    .label {
        font-size: 0.688rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .stat-box {
        text-align: center;
    }
    
    .stat-num {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.813rem;
    }
    
    /* Work */
    .work {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .label {
        font-size: 0.625rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-item {
        border-radius: 16px;
    }
    
    .work-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.625rem;
    }
    
    .work-number {
        font-size: 2.5rem;
        right: 1rem;
        top: -0.75rem;
    }
    
    .work-thumb {
        border-radius: 16px 16px 0 0;
    }
    
    .work-thumb img {
        height: 280px;
        object-fit: cover;
    }
    
    /* 모바일에서 특수 이미지는 contain 유지하되 높이를 더 높임 */
    .place-marketing-img,
    .stock-marketing-img,
    .law-marketing-img,
    .carrot-marketing-img,
    .press-release-img {
        object-fit: contain !important;
        height: 350px !important;
        padding: 0;
    }
    
    .work-info {
        padding: 1.5rem;
    }
    
    .work-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .work-info p {
        font-size: 0.938rem;
        margin-bottom: 1rem;
        line-height: 1.8;
    }
    
    .work-tag {
        font-size: 0.688rem;
        padding: 0.4rem 0.8rem;
    }
    
    .additional-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-item h4 {
        font-size: 1.125rem;
    }
    
    .service-item p {
        font-size: 0.938rem;
        line-height: 1.8;
    }
    
    /* Notices */
    .notices {
        padding: 4rem 0;
    }
    
    .notices-list {
        gap: 1.25rem;
    }
    
    .notice-item {
        padding: 1.5rem;
    }
    
    .notice-item-title {
        font-size: 1.25rem;
    }
    
    .notice-item-meta {
        font-size: 0.813rem;
    }
    
    .notice-modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .notice-modal-header {
        padding: 1.5rem;
    }
    
    .notice-modal-header h3 {
        font-size: 1.35rem;
    }
    
    .notice-modal-close {
        width: 36px;
        height: 36px;
    }
    
    .notice-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .notice-detail {
        padding: 1.5rem;
    }
    
    .notice-detail-title {
        font-size: 1.5rem;
    }
    
    .notice-detail-meta {
        font-size: 0.875rem;
        gap: 1rem;
    }
    
    .notice-detail-content {
        font-size: 1rem;
    }
    
    .notice-detail-actions {
        padding: 1rem 1.5rem;
        flex-wrap: wrap;
    }
    
    /* Contact */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .contact-icons {
        display: grid;
        grid-template-columns: repeat(4, 58px);
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .contact-icon::before,
    .contact-icon::after {
        display: none;
    }
    
    .contact-icon {
        width: 58px;
        height: 58px;
    }
    
    .contact-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-icon .icon-logo {
        width: 34px;
        height: 34px;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .info-label {
        font-size: 0.938rem;
        opacity: 0.6;
    }
    
    .info-value {
        font-size: 1.188rem;
        word-break: break-word;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
        padding: 1rem;
        border-radius: 12px;
        min-height: 48px;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-form select {
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 3rem;
    }
    
    /* 간단한 사업자 정보 */
    .simple-footer {
        padding: 2rem 0;
    }
    
    .business-info {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.813rem;
        text-align: center;
    }
    
    .business-info .divider {
        display: none;
    }
    
    .business-info span {
        display: block;
    }
    
    /* Footer (기존 코드 유지) */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-slogan {
        text-align: center;
        font-size: 0.875rem;
    }
    
    .footer-contact-wrap {
        gap: 1rem;
    }
    
    .footer-contact-item {
        padding: 1rem;
    }
    
    .footer-contact-item:hover {
        transform: none;
    }
    
    .contact-icon {
        font-size: 1.25rem;
    }
    
    .contact-label {
        font-size: 0.688rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .footer-links {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding-top: 2rem;
    }
    
    .footer-business {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 1rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        width: 100%;
    }
    
    .footer-business .divider {
        display: none;
    }
    
    .footer-business span {
        display: block;
    }
    
    .footer-business .business-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-copyright {
        white-space: normal;
        text-align: center;
    }
    
    /* 비디오 모달 */
    .video-modal {
        padding: 1rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .modal-video {
        max-height: 60vh;
    }
}

/* Mobile Small (320px ~ 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .container-full {
        padding: 0 1rem;
    }
    
    /* 네비게이션 */
    .nav {
        height: 65px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo {
        height: 36px;
        width: auto;
    }
    
    .nav-brand-text {
        gap: 0.15rem;
    }
    
    .brand-ko {
        font-size: 0.875rem;
    }
    
    .brand-en {
        font-size: 0.5rem;
    }
    
    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 1.125rem;
        min-height: 44px;
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* 히어로 */
    .hero {
        padding: 6rem 0 3rem;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }
    
    .hero-text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }
    
    .hero-cta {
        gap: 0.875rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.938rem;
        min-height: 48px;
    }
    
    /* About */
    .about {
        padding: 3rem 0;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .about-video-player {
        max-height: 300px;
        border-radius: 12px;
    }
    
    .title {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .text {
        font-size: 0.875rem;
        line-height: 1.7;
    }
    
    .label {
        font-size: 0.625rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .stats-row {
        gap: 1.75rem;
        margin-top: 1.75rem;
    }
    
    .stat-num {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-top: 0.4rem;
    }
    
    /* Work */
    .work {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-desc {
        font-size: 0.813rem;
        line-height: 1.6;
    }
    
    .work-grid {
        gap: 1.75rem;
    }
    
    .work-item {
        border-radius: 12px;
    }
    
    .work-badge {
        top: 0.875rem;
        left: 0.875rem;
        padding: 0.35rem 0.7rem;
        font-size: 0.563rem;
    }
    
    .work-number {
        font-size: 2rem;
        right: 0.875rem;
        top: -0.5rem;
    }
    
    .work-thumb {
        border-radius: 12px 12px 0 0;
    }
    
    .work-thumb img {
        height: 220px;
        object-fit: cover;
    }
    
    /* Small Mobile에서 특수 이미지는 contain 유지하되 높이를 더 높임 */
    .coin-marketing-img,
    .place-marketing-img,
    .stock-marketing-img,
    .law-marketing-img,
    .carrot-marketing-img,
    .press-release-img {
        object-fit: contain !important;
        height: 300px !important;
        padding: 0;
    }
    
    .work-info {
        padding: 1.25rem;
    }
    
    .work-info h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }
    
    .work-info p {
        font-size: 0.813rem;
        margin-bottom: 0.875rem;
        line-height: 1.5;
    }
    
    .work-tag {
        font-size: 0.625rem;
        padding: 0.35rem 0.7rem;
    }
    
    /* 추가 서비스 */
    .additional-services {
        margin-top: 2.5rem;
        gap: 1.25rem;
    }
    
    .service-item {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .service-item h4 {
        font-size: 1rem;
        margin: 1.25rem 0 0.75rem;
    }
    
    .service-item p {
        font-size: 0.813rem;
        line-height: 1.6;
    }
    
    /* Notices */
    .notices {
        padding: 3rem 0;
    }
    
    .notices-list {
        gap: 1rem;
    }
    
    .notice-item {
        padding: 1.25rem;
    }
    
    .notice-item-title {
        font-size: 1.125rem;
    }
    
    .notice-item-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .notice-item-meta {
        font-size: 0.75rem;
        gap: 0.75rem;
    }
    
    .notice-detail-header {
        padding-bottom: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .notice-detail-title {
        font-size: 1.35rem;
    }
    
    .notice-detail-content {
        font-size: 0.938rem;
        line-height: 1.8;
    }
    
    /* Contact */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    .contact-icons {
        display: grid;
        grid-template-columns: repeat(auto-fit, 54px);
        gap: 0.875rem;
        margin-top: 1.75rem;
        justify-content: center;
        max-width: 100%;
    }
    
    .contact-icon::before,
    .contact-icon::after {
        display: none;
    }
    
    .contact-icon {
        width: 54px;
        height: 54px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-icon .icon-logo {
        width: 32px;
        height: 32px;
    }
    
    .contact-info {
        gap: 1.25rem;
    }
    
    .info-item {
        gap: 0.4rem;
        padding: 0.5rem 0;
    }
    
    .info-label {
        font-size: 0.813rem;
    }
    
    .info-value {
        font-size: 1rem;
        word-break: break-word;
        min-height: 44px;
    }
    
    .contact-form {
        gap: 0.875rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.938rem;
        padding: 0.875rem;
        border-radius: 10px;
        min-height: 48px;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .contact-form select {
        background-position: right 0.875rem center;
    }
    
    /* 간단한 사업자 정보 */
    .simple-footer {
        padding: 1.75rem 0;
    }
    
    .business-info {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    /* Footer (기존 코드) */
    .footer {
        padding: 2.5rem 0 1.75rem;
    }
    
    .footer-brand-name {
        font-size: 1.25rem;
    }
    
    .footer-slogan {
        font-size: 0.813rem;
    }
    
    .footer-contact-item {
        padding: 0.875rem;
    }
    
    .contact-icon {
        font-size: 1.125rem;
    }
    
    .contact-label {
        font-size: 0.625rem;
    }
    
    .contact-value {
        font-size: 0.938rem;
    }
    
    .footer-links {
        display: none;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        gap: 1.25rem;
    }
    
    .footer-business {
        padding: 1.25rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .footer-business .business-name {
        font-size: 0.875rem;
    }
    
    .footer-copyright {
        font-size: 0.688rem;
    }
    
    /* 비디오 모달 */
    .video-modal {
        padding: 0.75rem;
    }
    
    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .modal-video {
        max-width: 100%;
        max-height: 60vh;
        border-radius: 10px;
    }
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 0.938rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.813rem;
    }
    
    .label {
        font-size: 0.688rem;
        padding: 0.4rem 1rem;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.688rem;
    }
    
    .work-info h3 {
        font-size: 1.25rem;
    }
    
    .work-info p {
        font-size: 0.813rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-item h4 {
        font-size: 1.125rem;
    }
    
    .service-item p {
        font-size: 0.813rem;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-company {
        font-size: 1.25rem;
    }
}