/*
Theme Name: WebSwitch Theme - Clean Final
Author: WEB SWITCH
Version: 3.5 (Responsive Fix)
Description: Custom theme with custom cursor, smooth animations, and bento grids.
*/

/* ==========================================================================
   [목차 / Table of Contents]
   1. Fonts Import (Paperozi)
   2. Variables (:root)
   3. Global Reset & Cursor Logic (커서 숨김)
   4. Custom Cursor UI (커스텀 커서 디자인)
   5. Header Navigation (헤더)
   6. Hero Section (메인 비주얼)
   7. Marquee Section (흐르는 텍스트)
   8. Intro Section (노이즈 효과)
   9. Bento Grid (Why WP 섹션)
   10. Service Plans (가격표 및 서비스)
   11. Footer (푸터)
   12. Responsive Design (모바일 반응형)
   ========================================================================== */

/* =========================================
   [1] Fonts Import
   ========================================= */
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-1Thin.woff2') format('woff2'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-2ExtraLight.woff2') format('woff2'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-4Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-5Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-6SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }
@font-face { font-family: 'Paperozi'; src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-9Black.woff2') format('woff2'); font-weight: 900; font-display: swap; }


/* =========================================
   [2] Variables (:root)
   ========================================= */
:root {
    /* Colors */
    --main-dark: #282c37;
    --sub-grey: #9baec8;
    --light-grey: #f4f7fc;
    --point-blue: #2b90d9;

    /* Dimensions */
    --header-height-pc: 70px;
    --header-height-mo: 60px;

    /* Initial Cursor State */
    cursor: none;
}


/* =========================================
   [3] Global Reset & Cursor Logic
   ========================================= */
/* [핵심] 모든 요소에서 시스템 커서 강제 차단 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important;
}

html, body, a, button, input, textarea {
    cursor: none !important; /* 중복 차단으로 확실하게 적용 */
}

body {
    font-family: 'Paperozi', sans-serif;
    background-color: #fff;
    color: var(--main-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 요소 기본 설정 */
a, button, .cta-btn {
    cursor: none;
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

/* 공통 컨테이너 (Wide Layout) */
.container {
    width: 100%;
    max-width: 1800px; /* 1800px Wide Layout */
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

.section-padding {
    padding: 140px 0;
}


/* =========================================
   [4] Custom Cursor UI
   ========================================= */
/* 4.1. 커서 중심점 (Dot) - 빠른 추적 */
.cursor-dot {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference; /* 반전 효과 */
    transition: transform 0.2s ease-out, opacity 0.2s;
}

/* 4.2. 커서 외곽선 (Outline) - 부드러운 추적 */
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    background-color: transparent;
    border-radius: 50%;
    z-index: 99998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference; /* 반전 효과 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* 쫀득한 움직임 Transition */
    transition:
        width 0.3s cubic-bezier(0.19, 1, 0.22, 1),
        height 0.3s cubic-bezier(0.19, 1, 0.22, 1),
        background-color 0.3s,
        border-width 0.3s,
        transform 0.1s;
}

/* 4.3. Interaction: Hover State (Switch ON) */
/* 링크/버튼 호버 시 파란색으로 변하며 커짐 */
body.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

body.cursor-hover .cursor-outline {
    width: 90px;
    height: 90px;
    background-color: var(--point-blue);
    border: none;
    mix-blend-mode: normal; /* 반전 해제 */
    opacity: 0.9;
    box-shadow: 0 10px 30px rgba(43, 144, 217, 0.3);
}

/* 4.4. 커서 내부 아이콘/텍스트 (Optional) */
.cursor-outline::after {
    content: '';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease-out;
}

/* 호버 시 내부 스위치 아이콘 등장 */
body.cursor-hover .cursor-outline::after {
    opacity: 1;
    transform: scale(1);
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    box-shadow: inset 0 0 0 3px var(--point-blue);
}


/* =========================================
   [5] Header Navigation
   ========================================= */
/* 기본 상태: Solid White */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height-pc);
    background-color: #ffffff;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
    z-index: 9999;
    display: flex;
    align-items: center;
}

/* 스크롤 상태: Glassmorphism */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

/* GNB Menu */
.gnb-menu {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
}

.gnb-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-dark);
    position: relative;
}

/* Underline Animation */
.gnb-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--point-blue);
    transition: 0.3s;
}

.gnb-menu a:hover {
    color: var(--point-blue);
}

.gnb-menu a:hover::after {
    width: 100%;
}

/* [Switch Effect] 스위치 깜빡임 효과 */
.cta-btn {
    background-color: var(--point-blue); /* 기본: 파란색 (ON 상태) */
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    
    /* 기본 그림자 */
    box-shadow: 0 4px 15px rgba(43, 144, 217, 0.3);
    
    /* 위치 이동은 부드럽게, 색상은 끊기게 */
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    /* 마우스 올리면 깜빡임 애니메이션 1회 실행 (0.5초 동안) */
    animation: flickerSwitch 0.5s linear forwards;
    transform: translateY(-3px); /* 살짝 위로 */
}

/* [Keyframes] 검정(OFF) <-> 파랑(ON) 반복 */
@keyframes flickerSwitch {
    0%   { background-color: var(--point-blue); opacity: 1; }
    10%  { background-color: #000; box-shadow: none; opacity: 0.7; } /* 틱! (꺼짐) */
    20%  { background-color: var(--point-blue); box-shadow: 0 0 10px var(--point-blue); opacity: 1; } /* 탁! (켜짐) */
    30%  { background-color: #000; box-shadow: none; opacity: 0.6; } /* 틱! (꺼짐) */
    50%  { background-color: #000; box-shadow: none; opacity: 0.5; } /* ... (잠깐 딜레이) */
    60%  { background-color: var(--point-blue); box-shadow: 0 0 15px var(--point-blue); opacity: 1; } /* 탁! */
    70%  { background-color: #000; box-shadow: none; opacity: 0.8; } /* 틱! */
    100% { 
        background-color: var(--point-blue); 
        /* 마지막엔 빛이 강하게 퍼짐 (완전 켜짐) */
        box-shadow: 0 0 30px var(--point-blue), 0 0 10px #fff; 
    }
}


/* =========================================
   [6] Hero Section
   ========================================= */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero .unicorn-canvas {
    position: absolute !important;
    top: -10% !important;
    left: -10% !important;
    width: 120% !important;
    height: 120% !important;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 400;
    max-width: 800px;
    color: #fff;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpRevealSlow 1.2s ease-out forwards;
    animation-delay: 2.8s;
}

@keyframes fadeUpRevealSlow {
    to { opacity: 0.95; transform: translateY(0); }
}

/* Switch Lighting Effect (White Flash) */
.switch-on-text {
    opacity: 0;
    color: rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: realSwitchOn 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.5s;
}

@keyframes realSwitchOn {
    0% { opacity: 0.3; color: rgba(0, 0, 0, 0.2); text-shadow: none; transform: scale(0.98); filter: blur(2px); }
    10% { opacity: 0.5; color: rgba(255, 255, 255, 0.3); }
    15% { opacity: 0.2; color: rgba(0, 0, 0, 0.3); }
    25% { opacity: 0.6; color: rgba(255, 255, 255, 0.5); filter: blur(1px); }
    40% { opacity: 1; color: #ffffff; text-shadow: 0 0 20px #ffffff, 0 0 40px #ffffff, 0 0 80px rgba(255, 255, 255, 0.8); transform: scale(1.02); filter: blur(0); }
    100% { opacity: 1; color: #ffffff; text-shadow: 0 0 15px rgba(255, 255, 255, 0.5); transform: scale(1); filter: blur(0); }
}

/* Floating Scroll Indicator */
.hero-floating-card {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    color: #fff;
}

.hero-scroll-icon {
    font-size: 24px;
    animation: bounce 2s infinite;
    color: #fff;
}


/* =========================================
   [7] Marquee Section
   ========================================= */
.marquee-section {
    background-color: var(--main-dark);
    padding: 60px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: infinityScroll 40s linear infinite;
}

/* All Outline Style Text */
.marquee-text {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    margin: 0 40px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* Blue Dot Separator */
.marquee-text::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--point-blue);
    border-radius: 50%;
    margin-left: 80px;
    box-shadow: 0 0 20px var(--point-blue);
}

/* Hover Interaction */
.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-section:hover .marquee-text {
    opacity: 0.5;
}

.marquee-section:hover .marquee-text:hover {
    opacity: 1;
    color: #fff; /* Fill White on Hover */
    -webkit-text-stroke: 0;
    cursor: default;
}

@keyframes infinityScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* =========================================
   [8] Intro Section (Noise Effect)
   ========================================= */
#intro {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 180px 0;
}

/* Noise Texture Overlay */
#intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

#intro .container {
    position: relative;
    z-index: 5;
    text-align: center;
}

#intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    color: var(--main-dark);
}

#intro p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    word-break: keep-all;
}

/* Scroll Reveal Class */
.js-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   [9] Bento Grid (Why WP)
   ========================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* 9.1. Card Base Style */
.bento-item {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    z-index: 2;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 9.2. Cinematic Focus Effect */
.bento-grid:hover .bento-item {
    opacity: 0.4;
    filter: blur(2px);
    transform: scale(0.98);
}

.bento-grid .bento-item:hover {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--point-blue);
    z-index: 10;
}

/* 9.3. Background Numbering (01, 02...) */
.bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: #f7f7f7;
    line-height: 1;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -5px;
    transition: 0.3s;
}

.bento-item:hover .bg-number {
    color: #f0f4f8;
    transform: translateX(-10px) translateY(10px);
}

/* 9.4. Tech Tags */
.tech-tags {
    display: flex;
    gap: 8px; /* 간격 살짝 좁힘 */
    margin-top: 30px;
    position: relative;
    z-index: 2;
    
    /* [핵심] 공간 부족하면 다음 줄로 내리기 */
    flex-wrap: wrap; 
}

.tech-tag {
    font-size: 0.85rem;
    font-weight: 600;
    background: #f4f7fc;
    color: #666;
    padding: 6px 14px;
    border-radius: 20px;
}

/* 9.5. Card Content */
.bento-content { position: relative; z-index: 2; }
.bento-icon { font-size: 54px; margin-bottom: 25px; color: var(--point-blue); display: inline-block; }
.bento-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 15px; color: var(--main-dark); letter-spacing: -0.02em; }
.bento-desc { font-size: 1.05rem; color: #555; line-height: 1.7; word-break: keep-all; }

/* 9.6. Layout Helpers */
.item-half { grid-column: span 3; min-height: 380px; }
.item-third { grid-column: span 2; min-height: 380px; }

/* 9.7. Special Card (Design/Black) */
.item-design { background: var(--main-dark) !important; border: 1px solid #333; }
.item-design .bg-number { color: rgba(255, 255, 255, 0.05); }
.item-design .bento-title { color: #fff; }
.item-design .bento-desc { color: rgba(255, 255, 255, 0.7); }
.item-design .bento-icon { color: #fff; }
.item-design .tech-tag { background: rgba(255, 255, 255, 0.15); color: #fff; }
.item-design:hover { border-color: rgba(255, 255, 255, 0.3); }


/* =========================================
   [10] Service Plan
   ========================================= */
/* 10.1. Main Header */
.main-service-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 40px;
}

.main-service-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--point-blue);
    border-radius: 2px;
}

.main-service-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--main-dark);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.main-service-header p {
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
}

/* 10.2. Sub Section Header */
.sub-service-header {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 50px;
}

.sub-service-header.first { margin-top: 60px; }

.sub-service-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--main-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.sub-service-header p {
    font-size: 1.1rem;
    color: #777;
    font-weight: 400;
}

/* 10.3. Grids */
.plan-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* 10.4. Plan Card Styles */
.plan-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--point-blue);
    z-index: 10;
}

/* Card Elements */
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 25px; justify-content: center; }
.card-tag { background: #f3f4f6; color: #666; font-size: 0.85rem; padding: 6px 12px; border-radius: 30px; font-weight: 700; }

.card-title-wrap { text-align: center; margin-bottom: 30px; }
.card-title-en { font-size: 0.95rem; font-weight: 700; color: var(--point-blue); text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
.card-title-ko { font-size: 1.8rem; font-weight: 800; color: var(--main-dark); margin-bottom: 15px; letter-spacing: -0.02em; }
.card-desc { font-size: 1rem; color: #666; line-height: 1.6; word-break: keep-all; min-height: 48px; }

.card-price {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--main-dark);
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: -0.03em;
}
.card-price span { font-size: 1.1rem; font-weight: 500; color: #999; margin-left: 5px; }

/* Feature List */
.card-features { list-style: none; padding: 0; margin: 0; }
.card-features li { display: flex; align-items: center; font-size: 1.05rem; color: #555; margin-bottom: 15px; font-weight: 500; }
.card-features li .iconify { font-size: 1.4rem; color: #d1d5db; margin-right: 12px; flex-shrink: 0; transition: 0.3s; }
.plan-card:hover .card-features li .iconify { color: var(--point-blue); }

/* 10.5. Special Cards (Best & Premium) */
/* BEST Card */
.plan-card.best { border: 2px solid var(--point-blue); background: #fbfdff; }
.plan-card.best .best-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: var(--point-blue); color: #fff; padding: 8px 20px;
    border-radius: 30px; font-size: 0.9rem; font-weight: 800;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* PREMIUM Card */
.plan-card.premium { background: var(--main-dark); border: none; color: #fff; }
.plan-card.premium .card-title-ko,
.plan-card.premium .card-price { color: #fff; }
.plan-card.premium .card-desc { color: rgba(255, 255, 255, 0.7); }
.plan-card.premium .card-features li { color: rgba(255, 255, 255, 0.9); }
.plan-card.premium .card-price { border-bottom-color: rgba(255, 255, 255, 0.15); }
.plan-card.premium .card-features li .iconify { color: var(--point-blue); }

/* 10.6. Benefits Grid (4 Col) */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-item {
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.06); border-radius: 20px;
    padding: 35px 30px; transition: all 0.3s ease;
    display: flex; flex-direction: column; height: 100%;
}
.benefit-item:hover {
    background: #fff; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--point-blue); transform: translateY(-5px); z-index: 5;
}
.benefit-icon { font-size: 2.5rem; color: var(--point-blue); margin-bottom: 20px; display: block; }
.benefit-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--main-dark); }
.benefit-desc { font-size: 0.95rem; color: #666; line-height: 1.6; word-break: keep-all; }


/* =========================================
   [11] Footer
   ========================================= */
.site-footer {
    background-color: #fff;
    color: #666;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
}


/* =========================================
   [12] Responsive Design
   ========================================= */
/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Tablet (max-width: 1400px) */
@media (max-width: 1400px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Laptop/Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .gnb-menu { display: none; } /* 메뉴 숨김 */
    
    /* Bento Grid 2열 변경 */
    .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .item-half, .item-third, .item-design { grid-column: span 1; }

    /* Plans 2열 변경 */
    .plan-grid-3, .plan-grid-2, .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .main-service-header h2 { font-size: 2.5rem; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* 12.1. Cursor Reset (Touch Device) */
    .cursor-dot, .cursor-outline { display: none !important; }
    :root, a, button, .cta-btn { cursor: auto !important; }
    html, body, *, a, button, input, textarea { cursor: auto !important; }

    /* Layout & Header */
    .container { padding: 0 20px; }
    .logo img { height: 40px; }
    .cta-btn { margin-left: auto; padding: 8px 16px; font-size: 13px; }

    /* Hero */
    .hero-title { font-size: 3.2rem; margin-bottom: 15px; }
    .hero-sub { font-size: 1.1rem; }
    .hero-floating-card { display: none; }

    /* Marquee */
    .marquee-section { padding: 30px 0; }
    .marquee-text { font-size: 3rem; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); margin: 0 15px; }
    .marquee-text::after { margin-left: 30px; width: 10px; height: 10px; }

    /* Intro */
    #intro { padding: 100px 0; }

    /* Bento Grid (1열) */
    .bento-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .item-half, .item-third, .item-design { grid-column: span 1; min-height: auto; }
    .bg-number { font-size: 5rem; top: 10px; right: 10px; opacity: 0.5; }

    /* Plans (1열) */
    .plan-grid-3, .plan-grid-2, .benefits-grid { grid-template-columns: 1fr; }
    .plan-container { flex-direction: column; align-items: center; }
    .plan-card { width: 100%; min-width: auto; }
    .sub-service-header { margin-top: 80px; }

    .section-padding { padding: 80px 0; }
}

/* =========================================
   [추가 Mobile Fix] Why WP 호버 효과 제거
   ========================================= */
@media (max-width: 768px) {
    /* 1. 그리드 전체 호버 시: 주변 아이템 흐려짐/축소 방지 */
    .bento-grid:hover .bento-item {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    /* 2. 개별 아이템 터치 시: 확대/강조 효과 방지 */
    .bento-grid .bento-item:hover {
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        z-index: 2 !important; /* 앞으로 튀어나오는 것 방지 */
        box-shadow: none !important; /* 진한 그림자 제거 (선택사항) */
        border-color: #f0f0f0 !important; /* 테두리 파란색 변경 방지 (선택사항) */
    }
}

/* =========================================
   [추가 Utility] 반응형 줄바꿈 (PC/Mobile)
   ========================================= */
/* 기본: PC에서는 모바일용 줄바꿈 숨김 */
.br-mo { display: none; }

/* 모바일 (768px 이하) 설정 */
@media (max-width: 768px) {
    /* 모바일에서는 PC용 줄바꿈 숨김 */
    .br-pc { display: none; }
    
    /* 모바일에서는 모바일용 줄바꿈 활성화 */
    .br-mo { display: block; } 
}

/* =========================================
   [추가] Sale Sticker (Web Production 섹션용)
   ========================================= */
.sale-sticker {
    position: absolute;
    top: -25px;
    right: -30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    transform: rotate(15deg); /* 살짝 기울여서 스티커 느낌 */
    z-index: 10;
    animation: stickerFloat 3s ease-in-out infinite;
    border: 2px solid #fff;
}

.sticker-text { font-size: 0.75rem; font-weight: 900; color: #ffd1d5; line-height: 1; }
.sticker-desc { font-size: 0.85rem; font-weight: 700; line-height: 1.1; margin-top: 2px; }

@keyframes stickerFloat {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-5px); }
}

@media (max-width: 768px) {
    .sale-sticker { right: -10px; top: -35px; width: 60px; height: 60px; }
    .sticker-desc { font-size: 0.75rem; }
}


/* =========================================
   [추가] Fixed Promo Bar (모바일 최적화 Ver)
   ========================================= */
#fixed-promo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 35, 0.98); /* 거의 불투명하게 변경 (가독성 위해) */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 99999;
    padding: 12px 0;
    color: #fff;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}

.promo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* 정보 영역 (타이틀 + 타이머) */
.promo-info { display: flex; align-items: center; gap: 20px; }
.promo-header { display: flex; align-items: center; gap: 8px; }
.promo-badge-mini { background: #ff4757; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
.promo-title { font-size: 0.95rem; font-weight: 500; letter-spacing: -0.5px; }

/* 타이머 */
#countdown-timer {
    display: flex; align-items: center; gap: 4px;
    font-family: 'Courier New', monospace; font-size: 1.1rem; font-weight: 700; color: var(--point-blue);
}
.time-box { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.time-box .label { display: none; } /* PC에선 라벨 숨김 (깔끔하게) */

/* 버튼 영역 */
.promo-actions { display: flex; align-items: center; gap: 10px; }

.btn-check-price {
    background: rgba(255,255,255,0.1); color: #ccc;
    padding: 8px 15px; border-radius: 6px; font-size: 0.85rem; font-weight: 600;
    display: flex; align-items: center; gap: 5px; transition: 0.3s;
}
.btn-check-price:hover { background: rgba(255,255,255,0.2); color: #fff; }

.btn-apply-now {
    background: var(--point-blue); color: #fff;
    padding: 8px 20px; border-radius: 6px; font-size: 0.9rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px; box-shadow: 0 4px 12px rgba(43, 144, 217, 0.4);
    transition: 0.3s;
}
.btn-apply-now:hover { background: #fff; color: var(--point-blue); }

#close-promo { background: none; border: none; color: #666; font-size: 1.4rem; cursor: pointer; margin-left: 10px; }

/* [Mobile Fix] 모바일에서 레이아웃 2단 분리 */
@media (max-width: 768px) {
    #fixed-promo-bar { padding: 10px 0 15px 0; }
    
    .promo-inner {
        flex-direction: column; /* 세로 정렬 */
        gap: 10px;
        padding: 0 15px;
    }

    /* 1단: 타이틀 + 타이머 */
    .promo-info {
        flex-direction: column;
        gap: 5px;
        width: 100%;
        text-align: center;
    }
    .promo-title { font-size: 0.9rem; }
    #countdown-timer { font-size: 1.3rem; color: #ffeb3b; /* 모바일에서 타이머 노란색 강조 */ }

    /* 2단: 버튼 2개 꽉 차게 */
    .promo-actions {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }
    
    .btn-check-price, .btn-apply-now {
        flex: 1; /* 너비 50%씩 차지 */
        justify-content: center;
        padding: 12px 0; /* 터치하기 좋게 높이 키움 */
        border-radius: 8px;
    }
    
    /* 닫기 버튼은 절대 위치로 뺌 (방해 안 되게) */
    #close-promo {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 1.2rem;
        color: #555;
    }
}

/* =========================================
   [추가] 커서 레이어 순서 최상위로 올리기
   ========================================= */
.cursor-dot, 
.cursor-outline {
    /* 하단 바(99999)보다 무조건 높게 설정 */
    z-index: 100000 !important; 
}

/* =========================================
   [추가 Header Only] 헤더 버튼은 깜빡임 끄고 빛 번짐만
   ========================================= */
header .cta-btn:hover {
    /* 아까 만든 깜빡임 애니메이션 제거 */
    animation: none !important;
	transform: none !important;
    
    /* 파란색 유지 */
    background-color: var(--point-blue);
    
    /* 파란 빛이 부드럽게 퍼지는 효과 */
    box-shadow: 0 0 20px rgba(43, 144, 217, 0.6), 
                0 0 40px rgba(43, 144, 217, 0.3);
}