/* ==========================================
   Neo-Brutalism Design System
   Extended Color Palette + Typography
   ========================================== */

/* 복사 방지 설정 */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* input, textarea는 선택 가능하도록 예외 처리 */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* SVG 도형 3D 애니메이션 */
@keyframes rotate3d {
    0% {
        transform: rotateY(0deg) rotateZ(0deg);
    }
    50% {
        transform: rotateY(180deg) rotateZ(180deg);
    }
    100% {
        transform: rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes pulse3d {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.floating-shape {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

:root {
    /* 기본 컬러 - 정보 강조 목적만 사용 */
    --color-primary: #07121D;         /* 네이비 (85%) */
    --color-secondary: #6B7280;       /* 그레이 - 보조 텍스트 */
    --color-accent: #F5C84C;          /* 옐로우 (10%) - 강조용만 */
    --color-red: #FF5948;             /* 붉은색 - 버튼 포인트 */
    --color-white: #FFFFFF;           /* 화이트 (85%) */
    --color-dark: #1E1E1E;            /* 다크 */
    --color-border: #E5E7EB;          /* 연한 그레이 - 카드 테두리 */
    
    /* 배경 컬러 */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;              /* 아주 연한 그레이 */
    --bg-navy: #07121D;               /* 네이비 */
    --bg-accent: #FFFBEB;             /* 아주 연한 옐로우 */
    
    /* 타이포그래피 - Pretendard Variable 기반 */
    --font-primary: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
    --font-display: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-brutalist: 'Pretendard Variable', Pretendard, sans-serif;
    
    /* 🎯 Spacing System */
    --spacing-xs: 0.5rem;      /* 8px */
    --spacing-sm: 1rem;        /* 16px */
    --spacing-md: 1.5rem;      /* 24px */
    --spacing-lg: 2rem;        /* 32px */
    --spacing-xl: 2.5rem;      /* 40px */
    --spacing-2xl: 3rem;       /* 48px */
    --spacing-3xl: 4rem;       /* 64px */
    --spacing-4xl: 6rem;       /* 96px */
    
    /* 🎯 Border Radius */
    --radius-none: 0;
    --radius-sm: 3px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* 🎯 Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-cubic: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* 🎯 Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.2);
    
    /* 🎯 Z-index Scale */
    --z-base: 1;
    --z-content: 3;
    --z-header: 100;
    --z-overlay: 9999;
    
    /* 📱 Breakpoints */
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-wide: 1440px;
}

/* ==========================================
   Reset
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🎯 Accessibility: Keyboard Focus */
*:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

html {
    scroll-behavior: auto;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-primary);
    background: var(--color-white);
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.menu-open {
    overflow: hidden;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================
   Scroll Progress Bar
   ========================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--color-red);  /* Telkom Red */
    width: 0%;
    transition: width 0.1s ease-out;
}

/* 📱 모바일 최적화 */
@media (max-width: 768px) {
    .scroll-progress {
        height: 2px; /* 모바일에서 더 얇게 */
    }
}

/* ==========================================
   Custom Cursor (기본 커서 + 아이콘)
   ========================================== */
body {
    cursor: url('../img/logagency-icon.png') 12 12, auto;
}

a, button {
    cursor: url('../img/logagency-icon.png') 12 12, pointer;
}

.custom-cursor,
.cursor-follower {
    display: none;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 101;
    transition: opacity 0.3s ease;
}

.nav-logo.hide {
    opacity: 0;
    pointer-events: none;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    /* 항상 원본 색상 유지 - 필터 제거 */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: var(--color-white);
}

.nav-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.nav-btn-primary {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

.nav-btn-primary:hover {
    background: #ff6d5e;
    border-color: #ff6d5e;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
}

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

.nav-menu-watermark {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.nav-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.nav-menu-list a {
    text-decoration: none;
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.nav-menu-list a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--color-white);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--color-white);
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .nav-right {
        gap: 0.5rem;
    }

    .nav-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .nav-btn:first-child {
        display: none;
    }

    .nav-menu-watermark {
        left: 2rem;
        font-size: 1.5rem;
    }

    .nav-menu-list a {
        font-size: 2.5rem;
    }
}

/* ==========================================
   Hero Section (dotsandlines style)
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2.5rem 4rem;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    padding-right: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    color: var(--color-primary);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title-line.hero-animate {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.5s;
}

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

.hero-title-highlight {
    color: var(--color-accent);
}

.hero-signature {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--color-secondary);
    margin-bottom: 1rem;
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.6;
}

.hero-tagline {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--color-primary);
    letter-spacing: 0.05em;
    font-weight: 800;
    opacity: 0.15;
    text-transform: uppercase;
}

.hero-right {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-marquee-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-marquee-track {
    display: flex;
    flex-direction: column;
    animation: marqueeUp 30s linear infinite;
}

.hero-marquee-track:hover {
    animation-play-state: paused;
}

.hero-marquee-item {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: var(--color-primary);
    padding: 2rem 3rem 2rem 3rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-marquee-item:hover {
    background: var(--color-primary);
    color: var(--color-white);
    padding-right: 4rem;
}

.hero-marquee-item:hover .hero-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hero-marquee-item:hover .hero-icon {
    animation-play-state: paused;
}

.hero-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.4;
    position: absolute;
    left: 1rem;
    animation: rotateIcon 8s linear infinite;
}

.hero-icon-rotate {
    transform-origin: center;
}

@keyframes rotateIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-marquee-item[data-color="navy"] .hero-icon {
    color: var(--color-primary);
}

.hero-marquee-item[data-color="red"] .hero-icon {
    color: var(--color-red);
}

.hero-arrow {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

@keyframes marqueeUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 968px) {
    body {
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    /* 모바일에서 히어로 우측 칼럼 완전 삭제 */
    .hero-right {
        display: none;
    }
    
    /* 히어로 타이틀 크기 확대 */
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-signature {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* 히어로 태그라인 크기 확대 */
    .hero-tagline {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    /* 띠배너 일자로 */
    .marquee-banner {
        transform: none !important;
        width: 100% !important;
        left: 0 !important;
        margin: 0 0 3rem 0 !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        word-break: keep-all;
    }
    
    /* 헤더 네비게이션: 모든 요소 표시 */
    .nav-btn {
        display: inline-block !important;
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    /* 모바일 네비게이션 */
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    /* Tech/Capability Cards */
    .tech-brutalist-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .tech-brutalist-title {
        font-size: 1.1rem !important;
    }
    
    /* How We Think: 아코디언 형태 */
    .capabilities-brutalist-grid {
        grid-template-columns: 1fr !important;
    }
    
    .capability-brutalist-item {
        border: 1px solid var(--color-border);
        padding: 1.5rem;
        border-radius: var(--radius-md);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .capability-brutalist-item p {
        display: none;
        margin-top: 1rem;
        animation: slideDown 0.3s ease;
    }
    
    .capability-brutalist-item.active p {
        display: block;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Why Log Agency */
    .why-statement-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Process 모바일 개선 */
    .process-timeline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-item {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 1rem;
        align-items: start;
    }
    
    .process-line {
        display: none;
    }
    
    .process-circle {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    
    .process-content {
        margin-top: 0;
        text-align: left;
    }
    
    .process-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-content p {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    /* FAQ 질문 크기 줄이기 */
    .faq-question {
        font-size: 1.05rem !important;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-split-left .contact-message {
        font-size: 1.2rem;
    }
}

/* 🎨 Telkom Minimal Buttons (미니멀 + 절제) */
.btn-primary,
.btn-secondary {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: all var(--transition-cubic);
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-brutalist);
    letter-spacing: 0.05em;
}

/* Primary Button: 붉은색 배경 */
.btn-primary.btn-neo {
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
    box-shadow: none;
}

.btn-primary.btn-neo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 89, 72, 0.3);
    background: #ff6d5e;
}

/* Secondary Button: 흰 배경 + 네이비 테두리 */
.btn-secondary.btn-neo {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary.btn-neo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
}

/* Scroll indicator removed */

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================
   Sections
   ========================================== */
section {
    padding: 6rem 2.5rem;
}

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

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-transform: none;
    color: var(--color-primary);
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--color-secondary);
    font-weight: 400;
    line-height: 1.6;
}

/* 섹션 번호 */
.section-number {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-primary);
    color: var(--color-accent);
    opacity: 0.8;
}

/* ==========================================
   About Section (Canvas 물감 흘러내리기!)
   ========================================== */
.about-section {
    background-color: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* What We Do 섹션 - 띠배너 아래부터 어두운 배경 */
.what-we-do-dark {
    background: linear-gradient(to bottom, 
        transparent 0%, 
        transparent 140px,
        var(--bg-navy) 140px,
        var(--bg-navy) 100%);
    color: var(--color-white);
    border-top: none;
}

.what-we-do-dark .marquee-banner {
    position: relative;
    z-index: 2;
}

/* 🎨 Paint Drip Canvas - 섹션 내부에 정확히 */
.paint-drip-canvas {
    position: absolute;
    top: 0;
    left: 0;  /* 정확히 0부터 시작 */
    width: 100%;  /* 섹션 너비와 정확히 동일 */
    height: 100%;  /* 섹션 높이와 정확히 동일 */
    pointer-events: none;
    z-index: 2;  /* Canvas 레이어 */
}

/* 텍스트가 Canvas와 같은 레벨에서 블렌딩 */
.about-section .container {
    position: relative;
    z-index: 2;  /* Canvas와 동일 레벨 → mix-blend-mode 작동! */
}

/* 🎨 텍스트 2중 레이어 시스템 (페인트 진행률에 맞춰 점진적 반전) */

/* 부모 요소들 positioning 설정 */
.about-section .section-header > div,
.about-section .caption-text-wrapper,
.about-section .tech-stack-new {
    position: relative !important;  /* absolute의 기준점 */
}

/* 검정 텍스트 레이어 (기본, 항상 보임) */
.about-section .text-layer-dark {
    color: var(--color-dark);
}

.about-section .section-number.text-layer-dark {
    color: var(--color-red);
}

/* 흰색 텍스트 레이어 (페인트 덮인 부분만 보임) */
.about-section .text-layer-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--color-white);
    mix-blend-mode: difference;
    clip-path: inset(0 0 100% 0);  /* 초기: 안 보임 (아래쪽 100% 잘림) */
    pointer-events: none;  /* 클릭 이벤트 무시 */
}

.about-section .section-number.text-layer-light {
    color: var(--color-red);
}

.about-section .text-layer-light .word-animate {
    color: var(--color-white);
}

/* ❌ 카드 내부 텍스트는 mix-blend-mode 제거 (흰 배경에서 안 보임) */
/* 카드 텍스트는 원래 색상(남색) 유지 */

/* 띠배너 */
.marquee-banner {
    background: var(--color-accent);
    padding: 1.5rem 0;
    overflow: hidden;
    transform: rotate(-1deg);
    margin-bottom: 4rem;
    position: relative;
    width: 110%;
    left: -5%;
    cursor: pointer;
    transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 호버 시 색만 변경 (멈추지 않음) */
.marquee-banner:hover {
    background: var(--color-red);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    padding: 0 1rem;
    min-width: 100%;
}

.marquee-content span {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

/* 호버 시 텍스트 색 반전 */
.marquee-banner:hover .marquee-content span {
    color: var(--color-white);
}

.marquee-dot {
    font-size: 1rem;
    opacity: 0.5;
}

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

/* 🎨 Caption Text (우측 정렬 + 섹션 타이틀과 동일한 패딩) */
.caption-text-wrapper {
    max-width: 1400px;  /* 섹션 타이틀과 동일 */
    margin: 0 auto 4rem;
    /* padding: 0 2.5rem; */  /* ← 삭제! absolute positioning 간섭 방지 */
}

.caption-text {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.3;
    font-weight: 700;  /* 타이틀(900)보다 얇게 */
    color: var(--color-dark);
    letter-spacing: -0.02em;
    font-family: var(--font-display);
    text-align: right;
    text-transform: uppercase;
    padding: 0 2.5rem;  /* ← padding을 여기로 이동! */
}


/* 🎨 NEW: Technology Stack (NEO-BRUTALISM!) */
.tech-stack-new {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 4rem 0; */  /* ← 삭제! */
}

.tech-stack-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: 900;
    font-family: var(--font-brutalist);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding: 4rem 0 0;  /* ← padding을 여기로 이동! */
}

/* Neo-Brutalist Grid */
.tech-brutalist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 카드 스타일 - 단색 테두리 */
.tech-brutalist-item {
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: var(--radius-lg);
}

/* 어두운 배경용 카드 */
.tech-brutalist-item.dark-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tech-brutalist-item.dark-card .tech-brutalist-title {
    color: var(--color-white);
    font-weight: 700;
}

.tech-brutalist-item.dark-card .tech-brutalist-number {
    color: rgba(255, 255, 255, 0.15);
}

.tech-brutalist-item.dark-card .tech-brutalist-category {
    border-color: var(--color-red);
    color: var(--color-red);
}

.tech-brutalist-item.dark-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* 호버 시 약간의 그림자만 */
.tech-brutalist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--color-accent);
}

.tech-brutalist-item.dark-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.tech-brutalist-number {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.1;
    font-family: var(--font-primary);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-primary);
}

.tech-brutalist-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: transparent;
    color: var(--color-red);
    font-family: var(--font-primary);
    border: 1px solid var(--color-red);
    border-radius: 4px;
}

.tech-brutalist-title {
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--color-primary);
}

.tech-brutalist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-brutalist-list li {
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.4rem 0;
    font-family: var(--font-primary);
    color: var(--color-secondary);
    line-height: 1.6;
}

.tech-brutalist-list li::before {
    content: '·';
    margin-right: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

/* ==========================================
   Neo-Brutalism Responsive
   ========================================== */
@media (max-width: 968px) {
    .marquee-banner {
        padding: 1rem 0;
        margin-bottom: 3rem;
    }
    
    .caption-text-wrapper {
        margin-bottom: 3rem;
    }
    
    .caption-text {
        text-align: left;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .about-details {
        margin-bottom: 3rem;
    }
    
    .detail-text {
        font-size: 1rem;
    }
    
    /* Tech Stack: 1줄 */
    .tech-brutalist-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-brutalist-item {
        padding: 2rem 1.5rem;
    }
    
    .tech-brutalist-number {
        font-size: 4rem;
    }
    
    .tech-brutalist-title {
        font-size: 1.8rem;
    }
}

/* ==========================================
   Portfolio Section
   ========================================== */
.portfolio-section {
    background: var(--bg-white);
    color: var(--color-primary);
}

/* Filter Buttons */
.portfolio-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-primary);
    color: var(--color-secondary);
}

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

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    color: var(--color-primary);
}

/* 🎨 Neo-Brutal Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.portfolio-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Portfolio Card Image */
.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-item:hover .portfolio-image {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--color-secondary);
}

.placeholder-content {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-secondary);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 29, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.portfolio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--color-white);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Portfolio Link */
.portfolio-link {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 600;
    font-family: var(--font-primary);
    background: transparent;
    color: var(--color-white);
}

.portfolio-link:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Portfolio Tags */
.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.portfolio-tag {
    font-size: 0.75rem;
    color: var(--color-primary);
    background: transparent;
    padding: 0.3rem 0.8rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

.portfolio-tech {
    font-size: 0.85rem;
    color: var(--color-secondary);
    font-weight: 400;
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================
   Capabilities Section (Telkom Minimal + Interactive Demo)
   ========================================== */
.capabilities-section {
    background: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 🎨 Interactive Demo Area */
.demo-area {
    position: relative;
    margin: 3rem 0 5rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #07121D 0%, #1a2332 100%);
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.demo-label {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-brutalist);
    z-index: 10;
    opacity: 0.8;
}

.demo-canvas {
    position: relative;
    width: 100%;
    height: 300px;
    cursor: none;
}

/* 떠다니는 요소들 */
.float-item {
    position: absolute;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.float-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-brutalist);
    color: var(--color-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-item:hover .float-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* 반응형 */
@media (max-width: 768px) {
    .demo-area {
        min-height: 250px;
        padding: 3rem 1rem;
    }
    
    .demo-canvas {
        height: 250px;
    }
    
    .float-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* 🎨 Telkom Grid (4개 1줄, 미니멀) */
.capabilities-brutalist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

/* Capability 카드 스타일 */
.capability-brutalist-item {
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-cubic);
    text-align: left;
    border-radius: var(--radius-lg);
}

/* 🎨 카드 위 데모 영역 (더 크게!) */
.card-demo {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
    overflow: hidden;
}

/* 01. Animation Demo: 회전하는 박스 (더 크게!) */
.animation-demo .rotating-box {
    width: 50px;  /* 30px → 50px */
    height: 50px;  /* 30px → 50px */
    background: linear-gradient(135deg, #F5C84C, #FF5948);
    border-radius: 8px;  /* 5px → 8px */
    animation: rotate360 3s ease-in-out infinite;
}

@keyframes rotate360 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* 02. Scroll Demo: 프로그레스 바 */
.scroll-demo {
    background: #07121D;
}

.scroll-progress-demo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-progress-demo::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #FF5948;
    animation: scrollProgress 2s ease-in-out infinite;
}

@keyframes scrollProgress {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

.scroll-text {
    font-size: 1rem;  /* 0.7rem → 1rem */
    font-weight: 700;
    color: var(--color-white);
    font-family: var(--font-brutalist);
}

/* 03. Responsive Demo: 디바이스 아이콘 (더 크게!) */
.responsive-demo .device-icons {
    display: flex;
    gap: 12px;  /* 8px → 12px */
    align-items: flex-end;
}

.device {
    background: #07121D;
    border-radius: 3px;
    animation: devicePulse 2s ease-in-out infinite;
}

.device.desktop {
    width: 36px;  /* 24px → 36px */
    height: 27px;  /* 18px → 27px */
    animation-delay: 0s;
}

.device.tablet {
    width: 24px;  /* 16px → 24px */
    height: 33px;  /* 22px → 33px */
    animation-delay: 0.2s;
}

.device.mobile {
    width: 18px;  /* 12px → 18px */
    height: 30px;  /* 20px → 30px */
    border-radius: 4px;
    animation-delay: 0.4s;
}

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

/* 04. Performance Demo: 속도 게이지 (더 크게!) */
.performance-demo {
    background: linear-gradient(135deg, #00D9FF, #FF6B9D);
}

.speed-gauge {
    position: relative;
    width: 80px;  /* 50px → 80px */
    height: 80px;  /* 50px → 80px */
}

.gauge-needle {
    position: absolute;
    width: 4px;  /* 3px → 4px */
    height: 35px;  /* 20px → 35px */
    background: var(--color-white);
    bottom: 40px;  /* 25px → 40px */
    left: 50%;
    transform-origin: bottom center;
    animation: gaugeRotate 2s ease-in-out infinite;
    border-radius: 3px;
}

@keyframes gaugeRotate {
    0%, 100% { transform: translateX(-50%) rotate(-45deg); }
    50% { transform: translateX(-50%) rotate(45deg); }
}

.gauge-text {
    position: absolute;
    bottom: 12px;  /* 8px → 12px */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;  /* 0.9rem → 1.2rem */
    font-weight: 900;
    color: var(--color-white);
    font-family: var(--font-brutalist);
}

/* 호버 효과 */
.capability-brutalist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--color-accent);
}

.capability-brutalist-number {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    opacity: 0.5;
    font-family: var(--font-primary);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: var(--color-accent);
}

.capability-brutalist-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0;
    background: transparent;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

.capability-brutalist-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-family: var(--font-primary);
    text-transform: none;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: var(--color-primary);
}

.capability-brutalist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-brutalist-list li {
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.4rem 0;
    font-family: var(--font-primary);
    color: var(--color-secondary);
}

.capability-brutalist-list li::before {
    content: '·';
    margin-right: 0.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* 태블릿: 2x2 */
@media (max-width: 968px) {
    .capabilities-brutalist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-demo {
        width: 100px;  /* 70px → 100px */
        height: 100px;  /* 70px → 100px */
        top: -60px;
    }
}

/* 모바일: 1줄 */
@media (max-width: 640px) {
    .capabilities-brutalist-grid {
        grid-template-columns: 1fr;
    }
    
    .card-demo {
        top: -50px;
        width: 90px;  /* 60px → 90px */
        height: 90px;  /* 60px → 90px */
    }
    
    .capability-brutalist-item {
        padding-top: 3.5rem;
    }
}

/* ==========================================
   Approach Section - LOGIC OVER MAGIC
   ========================================== */
.approach-title {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    color: var(--color-secondary);
}

.approach-slogan {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin: 2.5rem 0 2rem;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.7;
    color: var(--color-primary);
    margin-top: 2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ==========================================
   Why Log Agency Section (Statement-based)
   ========================================== */
.why-statement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.statement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.statement-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-red);
    transform: translateY(-6px);
}

.statement-label {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.statement-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.statement-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 968px) {
    .why-statement-grid {
        grid-template-columns: 1fr;
    }
    
    .statement-label {
        font-size: 2rem;
    }
}

/* ==========================================
   Process Section (Timeline with Circles)
   ========================================== */
.process-section {
    background: var(--bg-white);
    padding: 6rem 2.5rem;
}

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

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
}

.process-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-white);
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-item:hover .process-circle {
    background: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-line {
    flex: 1;
    height: 2px;
    background: var(--color-border);
    margin: 0 1rem;
    margin-bottom: 4rem;
}

.process-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.7rem;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    line-height: 1.6;
    max-width: 160px;
}

@media (max-width: 968px) {
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .process-item {
        flex-direction: row;
        width: 100%;
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .process-circle {
        margin-right: 1.5rem;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
    
    .process-line {
        display: none;
    }
    
    .process-content {
        flex: 1;
    }
    
    .process-content p {
        max-width: none;
    }
}

/* Demo Area 제거 (네오 브루탈리즘으로 변경!) */

/* ==========================================
   🎨 Interactive Demo Section (FAQ 위)
   ========================================== */
.interactive-demo-section {
    background: var(--color-white);
    padding: 6rem 2.5rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.demo-area-faq {
    position: relative;
    margin: 0 auto;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(135deg, #FF5948 0%, #07121D 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 350px;
    max-width: 1400px;
}

.demo-label-faq {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-brutalist);
    z-index: 10;
}

.demo-canvas-faq {
    position: relative;
    width: 100%;
    height: 350px;
    cursor: none;
}

/* 떠다니는 도형들 */
.float-item-faq {
    position: absolute;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.float-shape {
    width: 70px;
    height: 70px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.float-shape.circle {
    border-radius: 50%;
}

.float-shape.square {
    border-radius: 8px;
}

.float-shape.triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 70px solid;
    background: transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.float-shape.hexagon {
    width: 60px;
    height: 35px;
    position: relative;
    border-radius: 5px;
}

.float-shape.hexagon::before {
    content: "";
    position: absolute;
    top: -17.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 17.5px solid #FF6B9D;
}

.float-shape.hexagon::after {
    content: "";
    position: absolute;
    bottom: -17.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 17.5px solid #FF6B9D;
}

.float-item-faq:hover .float-shape {
    transform: scale(1.3) rotate(180deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

/* 반응형 - 만화경 */
@media (max-width: 768px) {
    .interactive-kaleidoscope-wrapper {
        height: 300vh;  /* 모바일에서는 3배 높이 */
    }
    
    .logweb-text {
        font-size: clamp(3rem, 12vw, 6rem);
        letter-spacing: -0.03em;
    }
    
    .logweb-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .interactive-kaleidoscope-wrapper {
        height: 250vh;
    }
    
    .logweb-text {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

/* ==========================================
   Q&A Section (Editorial/Magazine + Accordion)
   ========================================== */
.faq-section {
    background: var(--color-white);
    padding-top: 4rem;
}

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

/* FAQ Item (Telkom Editorial Style) */
.faq-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);  /* Telkom: 얇은 테두리 */
    transition: all 0.3s ease;
    background: transparent;
}

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

/* 호버 시 살짝 배경색 */
.faq-item:hover {
    padding-left: 1rem;
    background: rgba(245, 200, 76, 0.05);
}

.faq-item.active {
    background: rgba(245, 200, 76, 0.08);
}

/* 🎨 Telkom Editorial: 큰 숫자 */
.faq-number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    font-family: var(--font-brutalist);
    color: var(--color-dark);
    line-height: 1;
    min-width: 90px;
    opacity: 0.15;  /* Telkom: 더 연하게 */
    transition: all 0.3s ease;
}

.faq-item.active .faq-number,
.faq-item:hover .faq-number {
    opacity: 1;
    color: var(--color-accent);
}

/* FAQ Content */
.faq-content {
    flex: 1;
}

/* FAQ Question (버튼) */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
    margin-bottom: 1rem;
}

.faq-question span:first-child {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question span:first-child {
    color: var(--color-accent);
}

/* + / - 아이콘 */
.faq-icon {
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-dark);
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    font-family: var(--font-brutalist);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-accent);
}

/* FAQ Answer (Accordion) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-secondary);
    font-family: var(--font-primary);
    font-weight: 400;
    padding-right: 3rem;
}

/* 반응형 */
@media (max-width: 768px) {
    .faq-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .faq-question span:first-child {
        font-size: 1.3rem;
    }
    
    .faq-icon {
        font-size: 2rem;
        min-width: 40px;
    }
    
    .faq-answer p {
        font-size: 1rem;
        padding-right: 0;
    }
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    text-align: center;
}

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

.cta-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cta-button:hover {
    background: #ff6d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 89, 72, 0.3);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-section .section-title {
    color: var(--color-white);
}

.contact-section .section-subtitle {
    color: var(--color-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-item h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

.contact-item a,
.contact-item p {
    font-size: 1.3rem;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-red);  /* Telkom Red */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-red);  /* Telkom Red */
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: var(--color-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group.focused label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--color-red);  /* Telkom Red */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================
   Floating KakaoTalk Button
   ========================================== */
.floating-kakao {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #FEE500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    color: #3C1E1E;
}

.floating-kakao:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-kakao svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .floating-kakao {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
    }
}

/* ==========================================
   Contact Split Section
   ========================================== */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-split-left .contact-message {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-split-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 968px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--color-red);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-red);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--color-primary);
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 4rem 2.5rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 1.1rem;
    margin: 1.5rem 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-info-item strong {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-info-item span,
.footer-info-item a {
    font-size: 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info-item a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .hero-section {
        padding: 8rem 1.5rem 4rem; /* 모바일에서도 위쪽 여백 증가 */
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-video-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        transform: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   Utilities
   ========================================== */
.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

/* ==========================================
   About Section
   ========================================== */
.about-text .lead-text {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.6;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 2rem;
    position: relative;
}

/* ==========================================
   🎨 NEW EFFECTS - Yarnity Inspired
   ========================================== */

/* 1. Text Opacity Animation (단어별 밝아지기) */
.word-fade-in {
    display: block !important;
}

.word-animate {
    display: inline-block;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

/* Hero 타이틀도 word-fade-in 효과 사용 */
.hero-title.word-fade-in .title-line {
    display: block;
}

.hero-title.word-fade-in .word-animate {
    display: inline-block;
    opacity: 0.1;
}

/* Hero section 단어별 애니메이션 */
.hero-subtitle.word-fade-in .word-animate {
    opacity: 0.1;
}

/* 버튼 호버 circle 효과 제거 (네오 브루탈로 통일!) */

/* 3. Image Scale on Scroll (포트폴리오 이미지 줌아웃) */
.portfolio-image {
    overflow: hidden;
}

.portfolio-image img {
    transform: scale(1.2);
    opacity: 0;
    will-change: transform, opacity;
}

.portfolio-image.placeholder {
    opacity: 1;
    transform: scale(1);
}

/* Animation class will be added by JS */
.portfolio-image.animate-in img {
    animation: scaleIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
word-animate {
    opacity: 0.1;
}

/* 버튼 호버 circle 효과 제거 (네오 브루탈로 통일!) */

/* 3. Image Scale on Scroll (포트폴리오 이미지 줌아웃) */
.portfolio-image {
    overflow: hidden;
}

.portfolio-image img {
    transform: scale(1.2);
    opacity: 0;
    will-change: transform, opacity;
}

.portfolio-image.placeholder {
    opacity: 1;
    transform: scale(1);
}

/* Animation class will be added by JS */
.portfolio-image.animate-in img {
    animation: scaleIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
