/* ===================================
   ZionLab - Subpages Styles
   =================================== */

/* 단어 단위 줄바꿈 전역 적용 */
p, h1, h2, h3, h4, h5, h6, span, li, a, label, td, th {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Page Hero */
.page-hero {
    padding: calc(var(--header-height, 72px) + 48px) 0 48px;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.page-hero-dark {
    background-color: var(--color-dark);
    color: #FFFFFF;
}

[data-theme="dark"] .page-hero {
    background-color: var(--color-bg-alt);
}

[data-theme="dark"] .page-hero-dark {
    background-color: #0A0F1A;
}

.page-hero .section-label {
    margin-bottom: 16px;
}

.page-hero-dark .section-label {
    color: var(--color-accent);
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-dark .page-title {
    color: #FFFFFF;
}

.page-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero-dark .page-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 공통 Hero 스타일 ===== */
.page-hero-gradient,
.page-hero-pattern,
.page-hero-image,
.page-hero-animated {
    position: relative;
    overflow: hidden;
}

.page-hero-gradient .container,
.page-hero-pattern .container,
.page-hero-image .container,
.page-hero-animated .container {
    position: relative;
    z-index: 1;
}

/* 공통 떠다니는 서클 */
.floating-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: floatCircle 8s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* ===== 1. 회사소개 - 그리드 패턴 + 보라/핑크 서클 ===== */
.page-hero-gradient {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #FFFFFF;
}

.page-hero-gradient .floating-circles span:nth-child(1) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    top: -60px;
    right: 10%;
    animation-delay: 0s;
}

.page-hero-gradient .floating-circles span:nth-child(2) {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: -40px;
    left: 5%;
    animation-delay: -3s;
}

.page-hero-gradient .floating-circles span:nth-child(3) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    top: 30%;
    left: 20%;
    animation-delay: -5s;
}

.page-hero-gradient .section-label {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-hero-gradient .page-title {
    color: #FFFFFF;
}

.page-hero-gradient .page-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== 2. 프로젝트 - 그리드 패턴 + 청록/파랑 서클 ===== */
.page-hero-pattern {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #FFFFFF;
}

.page-hero-pattern .floating-circles span:nth-child(1) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25) 0%, transparent 70%);
    top: -80px;
    left: 5%;
    animation-delay: -1s;
}

.page-hero-pattern .floating-circles span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: -60px;
    right: 10%;
    animation-delay: -4s;
}

.page-hero-pattern .floating-circles span:nth-child(3) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    top: 20%;
    right: 25%;
    animation-delay: -2s;
}

.page-hero-pattern .section-label {
    color: #a5b4fc;
    background-color: rgba(165, 180, 252, 0.1);
}

.page-hero-pattern .page-title {
    color: #FFFFFF;
}

.page-hero-pattern .page-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== 3. 뉴스 - 그리드 패턴 + 오렌지/골드 서클 ===== */
.page-hero-image {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(251, 191, 36, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #FFFFFF;
}

.page-hero-image .floating-circles span:nth-child(1) {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
    top: -70px;
    right: 15%;
    animation-delay: -2s;
}

.page-hero-image .floating-circles span:nth-child(2) {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
    animation-delay: -5s;
}

.page-hero-image .floating-circles span:nth-child(3) {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 0s;
}

.page-hero-image .section-label {
    color: #fbbf24;
    background-color: rgba(251, 191, 36, 0.15);
}

.page-hero-image .page-title {
    color: #FFFFFF;
}

.page-hero-image .page-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== 4. 문의하기 - 그리드 패턴 + 민트/시안 서클 ===== */
.page-hero-animated {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #FFFFFF;
}

.page-hero-animated .floating-circles span:nth-child(1) {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.page-hero-animated .floating-circles span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
    bottom: -60px;
    left: 5%;
    animation-delay: -3s;
}

.page-hero-animated .floating-circles span:nth-child(3) {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    animation-delay: -6s;
}

.page-hero-animated .section-label {
    color: #22d3ee;
    background-color: rgba(34, 211, 238, 0.1);
}

.page-hero-animated .page-title {
    color: #FFFFFF;
}

.page-hero-animated .page-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== 5. 서비스 (dark) - 그리드 패턴 + 파랑/인디고 서클 ===== */
.page-hero-dark {
    background-color: #0f172a;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
}

.page-hero-dark .container {
    position: relative;
    z-index: 1;
}

.page-hero-dark .floating-circles span:nth-child(1) {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -80px;
    right: 5%;
    animation-delay: -1s;
}

.page-hero-dark .floating-circles span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.25) 0%, transparent 70%);
    bottom: -50px;
    left: 15%;
    animation-delay: -4s;
}

.page-hero-dark .floating-circles span:nth-child(3) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.2) 0%, transparent 70%);
    top: 25%;
    left: 35%;
    animation-delay: -2s;
}

/* ===== 6. 채용정보 - 그리드 패턴 + 초록/에메랄드 서클 ===== */
.page-hero-careers {
    background-color: #064e3b;
    background-image:
        linear-gradient(rgba(52, 211, 153, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 211, 153, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-hero-careers .container {
    position: relative;
    z-index: 1;
}

.page-hero-careers .floating-circles span:nth-child(1) {
    width: 230px;
    height: 230px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.3) 0%, transparent 70%);
    top: -70px;
    left: 10%;
    animation-delay: 0s;
}

.page-hero-careers .floating-circles span:nth-child(2) {
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    bottom: -50px;
    right: 15%;
    animation-delay: -3s;
}

.page-hero-careers .floating-circles span:nth-child(3) {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.2) 0%, transparent 70%);
    top: 35%;
    right: 30%;
    animation-delay: -5s;
}

.page-hero-careers .section-label {
    color: #a7f3d0;
    background-color: rgba(167, 243, 208, 0.15);
}

.page-hero-careers .page-title {
    color: #FFFFFF;
}

.page-hero-careers .page-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Sticky Navigation */
.page-nav {
    position: sticky;
    top: var(--header-height, 72px);
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    transition: all var(--transition-base);
}

[data-theme="dark"] .page-nav {
    background-color: var(--color-bg);
}

.page-nav-inner {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-nav-inner::-webkit-scrollbar {
    display: none;
}

.page-nav a {
    padding: 10px 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: 100px;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.page-nav a:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-alt);
}

.page-nav a.active {
    color: #FFFFFF;
    background-color: var(--color-primary);
}

/* Content Section */
.content-section {
    padding: 100px 0;
}

.content-section:nth-child(even) {
    background-color: var(--color-bg-alt);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-content {
    max-width: 500px;
}

.two-col-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.feature-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.feature-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Service Section */
.service-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-section:nth-child(even) {
    background-color: var(--color-bg-alt);
}

.service-header {
    margin-bottom: 48px;
}

.service-header .section-label {
    text-align: left;
}

.service-header .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.service-header .section-desc {
    text-align: left;
    max-width: 700px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.service-feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.service-feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.service-feature-content h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.service-feature-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Use Cases Tags */
.use-cases {
    margin-top: 32px;
}

.use-cases-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.use-cases-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.use-case-tag {
    padding: 8px 16px;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: var(--font-size-xs);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.use-case-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 3px solid var(--color-bg);
}

.timeline-date {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
}

.value-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.value-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Organization Chart */
.org-chart {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.org-box {
    padding: 20px 32px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    font-weight: 600;
    min-width: 140px;
}

.org-box.secondary {
    background-color: var(--color-bg-alt);
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.org-box.tertiary {
    background-color: var(--color-card);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    font-weight: 500;
    font-size: var(--font-size-sm);
    min-width: 100px;
    padding: 14px 20px;
}

.org-connector {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.org-connector i {
    color: var(--color-text-light);
    font-size: 20px;
}

/* Project Cards */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.project-image {
    height: 200px;
    background-color: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 24px;
}

.project-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.project-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.project-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    max-width: 400px;
}

.contact-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.contact-item-content a:hover {
    color: var(--color-primary);
}

.contact-form {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* News/Blog Cards */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.news-item-image {
    height: 200px;
    overflow: hidden;
}

.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.news-item-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
}

.news-item-date {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

.news-item-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-item-excerpt {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Careers */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.job-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.job-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
}

.job-meta span {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    font-size: 12px;
    color: var(--color-primary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.benefit-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.benefit-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--color-primary);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Contact Form Grid */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form-grid .form-group {
    margin-bottom: 24px;
}

.contact-form-grid label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.contact-form-grid label .required {
    color: #EF4444;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.contact-form-grid input:focus,
.contact-form-grid select:focus,
.contact-form-grid textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.contact-form-grid textarea {
    resize: vertical;
}

.contact-form-grid .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.bg-light {
    background-color: var(--color-bg-alt);
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.location-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.location-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.location-header i {
    font-size: 20px;
    color: var(--color-primary);
}

.location-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
}

.location-details p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.location-details p:last-child {
    margin-bottom: 0;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* News Grid */
.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.news-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}

.news-card-content {
    padding: 32px;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.news-card-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card-date {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

.news-card-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-summary {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.news-card-link:hover {
    gap: 12px;
}

.news-card-link i {
    font-size: 12px;
}

.load-more-wrapper {
    text-align: center;
}

/* ===================================
   Product Detail Pages (iorigin, joycanvas, smallight)
   =================================== */

/* Product Hero */
.product-hero {
    padding: calc(var(--header-height, 72px) + 80px) 0 80px;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

[data-theme="dark"] .product-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 100px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.product-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.product-hero-tagline {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.product-hero-desc {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.product-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image img {
    max-width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: #EF4444;
}

.problem-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: #FEE2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #EF4444;
}

[data-theme="dark"] .problem-icon {
    background-color: rgba(239, 68, 68, 0.2);
}

.problem-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.problem-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Feature Detail Grid */
.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-detail-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-detail-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.feature-detail-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052CC 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-detail-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.feature-detail-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.feature-detail-content > p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-detail-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* Benefit Stats Grid */
.benefit-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-stat-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.benefit-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.benefit-stat-label {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.benefit-stat-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Use Case Grid */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.usecase-card {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.usecase-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.usecase-card:hover .usecase-icon {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.usecase-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.usecase-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Creative Theme Variations */
.product-hero-creative {
    background: linear-gradient(135deg, #fdf4ff 0%, #f5f3ff 50%, #eff6ff 100%);
}

[data-theme="dark"] .product-hero-creative {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
}

.product-hero-badge-creative {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.feature-icon-creative {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

/* Steps Grid */
.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #FFFFFF;
}

.step-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.step-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 24px;
    color: var(--color-text-light);
}

/* Use Case Visual Grid */
.usecase-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.usecase-visual-card {
    padding: 32px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.usecase-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.usecase-visual-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.usecase-visual-card:hover .usecase-visual-icon {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.usecase-visual-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.usecase-visual-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Benefit Stat Creative */
.benefit-stat-creative {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ZionMeta / Data Theme */
.product-hero-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.product-hero-badge-data {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
}

.product-hero-title-light {
    color: #FFFFFF;
}

.product-hero-tagline-light {
    color: rgba(255, 255, 255, 0.9);
}

.product-hero-desc-light {
    color: rgba(255, 255, 255, 0.7);
}

.product-hero-visual-dark {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.data-visual-animation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px;
}

.data-node {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.data-node:nth-child(2) {
    animation-delay: 0.5s;
}

.data-node:nth-child(3) {
    animation-delay: 1s;
}

.data-node:nth-child(4) {
    animation-delay: 1.5s;
}

.data-node i {
    font-size: 32px;
    color: #FFFFFF;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.problem-icon-data {
    background-color: #E0F2FE;
    color: #0284C7;
}

[data-theme="dark"] .problem-icon-data {
    background-color: rgba(14, 165, 233, 0.2);
}

.feature-icon-data {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
}

.benefit-stat-data {
    font-size: 2.5rem;
    color: #0EA5E9;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Back to Projects */
.back-to-projects {
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.back-link:hover {
    color: var(--color-primary);
    gap: 12px;
}

/* ===================================
   Product Section Layout (projects.html)
   =================================== */

.product-section {
    padding: 100px 0;
    overflow: hidden;
}

.product-section-light {
    background-color: var(--color-bg);
}

.product-section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.product-section-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.product-section-creative {
    background: linear-gradient(135deg, #fdf4ff 0%, #f5f3ff 50%, #eff6ff 100%);
}

[data-theme="dark"] .product-section-light {
    background-color: var(--color-bg-alt);
}

[data-theme="dark"] .product-section-creative {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
}

.product-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-section-inner.reverse {
    direction: rtl;
}

.product-section-inner.reverse > * {
    direction: ltr;
}

/* Product Content */
.product-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border-radius: 100px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.product-label-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.product-label-creative {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.product-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.product-name-light {
    color: #FFFFFF;
}

.product-tagline {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.product-tagline-light {
    color: rgba(255, 255, 255, 0.9);
}

.product-tagline-accent {
    color: #00D4AA;
}

.product-tagline-creative {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}

.product-desc-light {
    color: rgba(255, 255, 255, 0.7);
}

/* Product Features Row */
.product-features-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.product-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.product-feature-item:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.product-feature-item:hover i {
    color: #FFFFFF;
}

.product-feature-item i {
    font-size: 18px;
    color: var(--color-primary);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.product-feature-item span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-dark);
}

.product-feature-item:hover span {
    color: #FFFFFF;
}

.product-feature-light {
    background-color: rgba(255, 255, 255, 0.1);
}

.product-feature-light i {
    color: #FFFFFF;
}

.product-feature-light span {
    color: #FFFFFF;
}

.product-feature-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.product-feature-creative {
    background-color: rgba(139, 92, 246, 0.1);
}

.product-feature-creative i {
    color: #8B5CF6;
}

.product-feature-creative:hover {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.product-feature-creative:hover i {
    color: #FFFFFF;
}

/* Product Buttons */
.product-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-creative {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    border: none;
}

.btn-creative:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
}

/* Product Visual */
.product-section-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Single Image Visual (no slider) */
.product-visual-single {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--color-bg-alt);
    box-shadow: var(--shadow-lg);
}

.product-section-dark .product-visual-single {
    background-color: #0F172A;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-visual-single img,
.product-visual-single svg {
    width: 100%;
    height: auto;
    display: block;
}

.product-visual-single .product-visual-img {
    padding: 20px;
}

.product-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-alt);
}

.product-visual-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.product-visual-dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.product-visual-creative {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    padding: 24px;
}

[data-theme="dark"] .product-visual-creative {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.product-visual-placeholder {
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.product-visual-placeholder i {
    font-size: 64px;
}

.product-visual-placeholder span {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* ===================================
   Product Slider
   =================================== */
.product-slider {
    position: relative;
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: var(--color-bg-alt);
    cursor: grab;
    user-select: none;
}

.product-slider:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .slider-slide {
    background-color: #1e293b;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

/* Placeholder when no image */
.slider-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--color-text-light);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-placeholder i {
    font-size: 48px;
    opacity: 0.5;
}

.slider-placeholder span {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

/* Dark section placeholder */
.product-section-dark .slider-slide,
.product-section-gradient .slider-slide {
    background-color: #1e293b;
}

.product-section-dark .slider-placeholder,
.product-section-gradient .slider-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Creative section placeholder */
.product-section-creative .slider-slide {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
}

[data-theme="dark"] .product-section-creative .slider-slide {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.product-section-creative .slider-placeholder {
    color: #8b5cf6;
}

[data-theme="dark"] .product-section-creative .slider-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Dots overlay on image */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: #FFFFFF;
    transform: scale(1.3);
}

/* Light section dots */
.product-section-light .slider-dot {
    background-color: rgba(0, 0, 0, 0.3);
}

.product-section-light .slider-dot:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.product-section-light .slider-dot.active {
    background-color: var(--color-primary);
}

/* Creative section slider */
.product-section-creative .product-slider {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
}

[data-theme="dark"] .product-section-creative .product-slider {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.product-section-creative .slider-slide img {
    background-color: transparent;
}

.product-section-creative .slider-dot {
    background-color: rgba(139, 92, 246, 0.4);
}

.product-section-creative .slider-dot.active {
    background-color: #8b5cf6;
}

/* YouTube Slide Styles - 16:9 비율 */
.slider-slide-youtube {
    position: relative;
    aspect-ratio: 16 / 9 !important;
    background-color: #000;
}

.slider-slide-youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    z-index: 2;
}

/* YouTube 썸네일 오버레이 */
.youtube-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #000;
}

.youtube-thumbnail-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.youtube-thumbnail-overlay:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.youtube-play-button {
    width: 68px;
    height: 48px;
    background: #FF0000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.youtube-play-button::after {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.youtube-thumbnail-overlay:hover .youtube-play-button {
    transform: scale(1.1);
    background: #CC0000;
}

/* 재생 중일 때 오버레이 숨김 */
.slider-slide-youtube.playing .youtube-thumbnail-overlay {
    display: none;
}

/* YouTube가 포함된 슬라이더는 16:9 비율 적용 */
.product-slider:has(.slider-slide-youtube) .slider-slide {
    aspect-ratio: 16 / 9;
}

/* ===================================
   Workflow Steps (ZionMeta)
   =================================== */
.workflow-section {
    padding: 80px 0;
}

.workflow-title {
    text-align: center;
    margin-bottom: 48px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--color-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.workflow-step:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.workflow-step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00D4AA 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.workflow-step-content {
    flex: 1;
}

.workflow-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.workflow-step-label {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-step-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

[data-theme="dark"] .workflow-step-title {
    color: #FFFFFF;
}

.workflow-step-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.workflow-step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.workflow-step-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

[data-theme="dark"] .workflow-step-tag {
    background: rgba(255, 255, 255, 0.1);
}

.workflow-step-tag i {
    color: var(--color-primary);
    font-size: 12px;
}

/* 워크플로우 연결선 */
.workflow-steps::before {
    display: none;
}

/* 반응형 */
@media (max-width: 768px) {
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }

    .workflow-step-number {
        margin: 0 auto;
    }

    .workflow-step-details {
        justify-content: center;
    }
}

/* Portfolio Section */
.portfolio-section {
    margin-bottom: 48px;
}

.portfolio-section:last-child {
    margin-bottom: 0;
}

.portfolio-section-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-section-title i {
    color: var(--color-primary);
}

[data-theme="dark"] .portfolio-section-title {
    color: #FFFFFF;
}

/* 롱폼 영상 그리드 (16:9) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-grid-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #000;
}

.video-grid-item .youtube-thumbnail-overlay {
    border-radius: var(--radius-lg);
}

.video-grid-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-grid-item.playing .youtube-thumbnail-overlay {
    display: none;
}

/* 쇼츠 그리드 (9:16) */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.shorts-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #000;
}

.shorts-item .youtube-thumbnail-overlay {
    border-radius: var(--radius-lg);
}

.shorts-item .youtube-play-button {
    width: 48px;
    height: 34px;
    border-radius: 10px;
}

.shorts-item .youtube-play-button::after {
    border-width: 7px 0 7px 12px;
    margin-left: 3px;
}

.shorts-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.shorts-item.playing .youtube-thumbnail-overlay {
    display: none;
}

/* 반응형 */
@media (max-width: 1024px) {
    .shorts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .shorts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dark Theme Slider (for ZionMeta etc.) */
.product-slider-dark {
    background-color: #1e293b;
}

.product-slider-dark .slider-slide {
    background-color: #0f172a;
}

.product-slider-dark .slider-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Product Hero Gradient Purple (for Smallight) */
.product-hero-gradient-purple {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.product-hero-gradient-purple .product-hero-title,
.product-hero-gradient-purple .product-hero-tagline {
    color: #FFFFFF;
}

.product-hero-gradient-purple .product-hero-desc {
    color: rgba(255, 255, 255, 0.8);
}

.product-hero-gradient-purple .product-slider {
    background: rgba(255, 255, 255, 0.1);
}

.product-hero-gradient-purple .slider-slide {
    background-color: rgba(0, 0, 0, 0.3);
}

.product-hero-gradient-purple .slider-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Smallight Page Styles
   =================================== */

.smallight-page-hero {
    position: relative;
    padding: calc(var(--header-height, 72px) + 100px) 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.smallight-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/smallight-hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.smallight-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.smallight-page-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.smallight-page-tagline {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.smallight-page-desc {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-item {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.process-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background-color: var(--color-border);
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #FFFFFF;
}

.process-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.process-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* CTA Dark */
.cta-section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cta-section-dark .cta-title,
.cta-section-dark .cta-desc {
    color: #FFFFFF;
}

.cta-section-dark .cta-desc {
    opacity: 0.8;
}

/* Text Center Helper */
.text-center {
    text-align: center;
}

/* ===================================
   Smallight Showcase Section (projects.html)
   =================================== */

.smallight-showcase {
    background-color: var(--color-bg);
}

/* Hero */
.smallight-hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.smallight-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/smallight-hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.smallight-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.smallight-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: #00D4AA;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.smallight-title {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.smallight-tagline {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.smallight-desc {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.smallight-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--font-size-base);
}

/* Services */
.smallight-services {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.smallight-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.smallight-service-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.smallight-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-primary);
}

.smallight-service-image {
    height: 200px;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.smallight-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.smallight-service-card:hover .smallight-service-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: rgba(255, 255, 255, 0.8);
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

.smallight-service-content {
    padding: 32px;
}

.smallight-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052CC 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.smallight-service-icon i {
    font-size: 24px;
    color: #FFFFFF;
}

.smallight-service-content h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.smallight-service-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.smallight-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.smallight-service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    margin-bottom: 10px;
}

.smallight-service-features li:last-child {
    margin-bottom: 0;
}

.smallight-service-features i {
    font-size: 12px;
    color: var(--color-accent);
}

/* Why Smallight */
.smallight-why {
    padding: 100px 0;
    background-color: var(--color-bg-alt);
}

.smallight-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.smallight-why-item {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.smallight-why-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.smallight-why-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.smallight-why-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.smallight-why-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Portfolio */
.smallight-portfolio {
    padding: 100px 0;
    background-color: var(--color-bg);
}

.smallight-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.smallight-portfolio-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.portfolio-image-placeholder i {
    font-size: 40px;
    margin-bottom: 8px;
}

.portfolio-image-placeholder span {
    font-size: var(--font-size-xs);
}

.smallight-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.smallight-portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #FFFFFF;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.smallight-portfolio-item:hover .smallight-portfolio-overlay {
    transform: translateY(0);
}

.smallight-portfolio-item:hover img,
.smallight-portfolio-item:hover .portfolio-image-placeholder {
    transform: scale(1.05);
}

.portfolio-category {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--color-primary);
    border-radius: 4px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: 8px;
}

.smallight-portfolio-overlay h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
}

.smallight-cta {
    text-align: center;
    padding: 48px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-xl);
}

.smallight-cta p {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    margin-bottom: 24px;
}

/* ===================================
   News Detail Page
   =================================== */

/* Article Hero */
.article-hero {
    padding: calc(var(--header-height, 72px) + 60px) 0 60px;
    background-color: var(--color-bg-alt);
}

.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.article-category {
    padding: 6px 14px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: 100px;
}

.article-date {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.article-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 800px;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-lead {
    font-size: var(--font-size-lg);
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.article-body h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.article-body p {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.article-body strong {
    color: var(--color-dark);
}

/* Info Box */
.info-box {
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-primary);
    padding: 24px 32px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 24px 0;
}

.info-box ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.info-box li:last-child {
    margin-bottom: 0;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: var(--font-size-sm);
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.data-table th {
    background-color: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-dark);
}

.data-table td {
    color: var(--color-text);
}

.data-table tr:hover td {
    background-color: var(--color-bg-alt);
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.article-tags .tag {
    padding: 8px 16px;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: var(--font-size-xs);
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.article-tags .tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Article Navigation */
.article-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background-color: var(--color-bg-alt);
}

.related-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.related-card {
    display: block;
    padding: 24px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.related-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.related-card .related-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.related-card h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.related-card .related-date {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
}

/* Jobs Grid */
.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-item {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.job-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-card);
}

.job-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.job-item-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-dark);
}

.job-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-tag {
    padding: 6px 12px;
    background-color: var(--color-bg-alt);
    border-radius: 100px;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-text);
}

.job-item-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
}

/* Application Form */
.application-form .form-section-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    margin-top: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.application-form .form-section-title:first-child {
    margin-top: 0;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.application-form .form-group {
    margin-bottom: 16px;
}

.application-form label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.application-form label .required {
    color: #EF4444;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.application-form textarea {
    resize: vertical;
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-area:hover {
    border-color: var(--color-primary);
    background-color: var(--color-bg-alt);
}

.file-upload-area i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.file-upload-area p {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.file-upload-area span {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 500;
}

.file-upload-area input[type="file"] {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Product Section Responsive - Tablet */
    .product-section {
        padding: 80px 0;
    }

    .product-section-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-section-inner.reverse {
        direction: ltr;
    }

    .product-name {
        font-size: 2.5rem;
    }

    .product-section-visual {
        order: -1;
    }

    .product-visual-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Product Detail Responsive - Tablet */
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-hero-title {
        font-size: 3rem;
    }

    .product-hero-buttons {
        justify-content: center;
    }

    .product-hero-image {
        order: -1;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-detail-grid {
        grid-template-columns: 1fr;
    }

    .benefit-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-arrow {
        display: none;
    }

    .steps-grid {
        gap: 16px;
    }

    /* Smallight Page Responsive - Tablet */
    .smallight-page-title {
        font-size: 3.5rem;
    }

    .smallight-page-hero {
        padding: calc(var(--header-height, 72px) + 60px) 0 60px;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:not(:last-child)::after {
        display: none;
    }

    /* Smallight Responsive - Tablet */
    .smallight-title {
        font-size: 3rem;
    }

    .smallight-hero {
        padding: 80px 0;
    }

    .smallight-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smallight-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smallight-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* =================================
       Typography Scale (768px)
       계층 구조:
       - label → title: 8px (가깝게)
       - title → desc: 24px (여유있게)
       ================================= */

    .page-hero {
        padding: calc(var(--header-height, 64px) + 40px) 0 40px;
    }

    .page-hero .section-label {
        font-size: var(--font-size-xs);
        margin-bottom: 8px;
    }

    .page-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .page-desc {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }

    /* Section Header - 통일된 타이포그래피 */
    .section-label {
        font-size: var(--font-size-xs);
        margin-bottom: 8px;
        letter-spacing: 0.1em;
    }

    .section-title {
        font-size: var(--font-size-3xl);
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .section-desc {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }

    .content-section {
        padding: 60px 0;
    }

    .page-nav-inner {
        justify-content: flex-start;
        padding: 12px 0;
    }

    .feature-grid,
    .feature-grid-2col,
    .values-grid,
    .project-grid,
    .benefits-grid,
    .contact-cards,
    .news-grid-container {
        grid-template-columns: 1fr;
    }

    .feature-highlight {
        font-size: 1rem;
    }

    /* Feature/Value Card Titles */
    .feature-title,
    .value-title {
        font-size: var(--font-size-base);
    }

    .feature-desc,
    .value-desc {
        font-size: var(--font-size-sm);
    }

    /* Product Section Responsive - Mobile */
    .product-section {
        padding: 60px 0;
    }

    .product-name {
        font-size: 2rem;
    }

    .product-tagline {
        font-size: var(--font-size-lg);
    }

    .product-desc {
        font-size: var(--font-size-sm);
    }

    .product-features-row {
        grid-template-columns: 1fr;
    }

    .product-buttons {
        flex-direction: column;
    }

    .product-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .product-visual-placeholder i {
        font-size: 48px;
    }

    /* Product Detail Responsive - Mobile */
    .product-hero {
        padding: calc(var(--header-height, 72px) + 48px) 0 48px;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-tagline {
        font-size: var(--font-size-lg);
    }

    .product-hero-desc {
        font-size: var(--font-size-base);
    }

    .product-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .problem-grid,
    .benefit-stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .feature-detail-icon {
        margin: 0 auto;
    }

    .feature-detail-list li {
        padding-left: 0;
        text-align: left;
    }

    .feature-detail-list li::before {
        display: none;
    }

    .benefit-stat-number {
        font-size: 2.5rem;
    }

    .usecase-visual-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        max-width: 100%;
    }

    /* Smallight Page Responsive - Mobile */
    .smallight-page-title {
        font-size: 2.5rem;
    }

    .smallight-page-tagline {
        font-size: var(--font-size-xl);
    }

    .smallight-page-desc {
        font-size: var(--font-size-base);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .contact-form-grid .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .job-item-header {
        flex-direction: column;
    }

    .application-form .form-row {
        grid-template-columns: 1fr;
    }

    .org-level {
        flex-wrap: wrap;
    }

    .news-item {
        grid-template-columns: 1fr;
    }

    .news-item-image {
        height: 180px;
    }

    .news-item-content {
        padding: 24px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Article Detail Responsive */
    .article-hero {
        padding: calc(var(--header-height, 72px) + 40px) 0 40px;
    }

    .article-title {
        font-size: var(--font-size-2xl);
    }

    .article-subtitle {
        font-size: var(--font-size-base);
    }

    .article-content {
        padding: 48px 0;
    }

    .article-body h2 {
        font-size: var(--font-size-lg);
        margin-top: 32px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-articles {
        padding: 48px 0;
    }

    .data-table {
        font-size: var(--font-size-xs);
    }

    .data-table th,
    .data-table td {
        padding: 10px 12px;
    }

    /* Smallight Responsive - Mobile */
    .smallight-hero {
        padding: 60px 0;
    }

    .smallight-title {
        font-size: 2rem;
    }

    .smallight-tagline {
        font-size: var(--font-size-lg);
    }

    .smallight-desc {
        font-size: var(--font-size-base);
    }

    .smallight-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .smallight-hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .smallight-services,
    .smallight-why,
    .smallight-portfolio {
        padding: 60px 0;
    }

    .smallight-service-grid,
    .smallight-why-grid,
    .smallight-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .smallight-why-item {
        padding: 32px 20px;
    }

    .smallight-why-number {
        font-size: 2.5rem;
    }

    .smallight-cta {
        padding: 32px 24px;
    }

    .smallight-cta p {
        font-size: var(--font-size-base);
    }
}

/* ===================================
   Process Horizontal (한 줄 프로세스)
   =================================== */

.process-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 40px 0;
}

.process-horizontal-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.process-horizontal-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -8px;
    width: calc(100% - 48px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-border) 100%);
    transform: translateX(50%);
}

.process-horizontal-step {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0052CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.process-horizontal-content h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.process-horizontal-content p {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    line-height: 1.5;
    max-width: 140px;
}

/* 다크 테마 프로세스 */
.process-horizontal-dark .process-horizontal-step {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
}

.process-horizontal-dark .process-horizontal-item:not(:last-child)::after {
    background: linear-gradient(90deg, #0EA5E9 0%, rgba(255,255,255,0.2) 100%);
}

/* ===================================
   Media Gallery Section (이미지/영상 공간)
   =================================== */

.media-gallery {
    margin: 48px 0;
}

.media-gallery-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 24px;
    text-align: center;
}

.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.media-gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.media-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

.media-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-card) 100%);
    color: var(--color-text-light);
}

.media-gallery-placeholder i {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.media-gallery-placeholder span {
    font-size: var(--font-size-xs);
    opacity: 0.5;
}

/* Video Container */
.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.video-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.video-placeholder span {
    font-size: var(--font-size-sm);
}

/* Featured Media (큰 이미지/영상) */
.featured-media {
    margin: 48px 0;
}

.featured-media-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-media-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Media Row (가로 스크롤) */
.media-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: thin;
}

.media-row::-webkit-scrollbar {
    height: 6px;
}

.media-row::-webkit-scrollbar-track {
    background: var(--color-bg-alt);
    border-radius: 3px;
}

.media-row::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.media-row-item {
    flex-shrink: 0;
    width: 280px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.media-row-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive - Process Horizontal */
@media (max-width: 1024px) {
    .process-horizontal {
        flex-wrap: wrap;
        gap: 24px;
    }

    .process-horizontal-item {
        flex: 0 0 calc(50% - 12px);
    }

    .process-horizontal-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-horizontal {
        flex-direction: column;
        gap: 16px;
    }

    .process-horizontal-item {
        flex: 1;
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }

    .process-horizontal-step {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .process-horizontal-content {
        text-align: left;
    }

    .process-horizontal-content p {
        max-width: none;
    }

    /* Media Gallery Responsive */
    .media-gallery-grid {
        grid-template-columns: 1fr;
    }

    .media-row-item {
        width: 240px;
    }
}

/* ===================================
   480px 이하 모바일 최적화
   =================================== */
@media (max-width: 480px) {
    /* =================================
       Typography Scale (480px)
       계층 구조:
       - label → title: 6px (가깝게)
       - title → desc: 20px (여유있게)
       ================================= */

    /* Page Hero */
    .page-hero {
        padding: calc(var(--header-height, 56px) + 32px) 0 32px;
    }

    .page-hero .section-label {
        font-size: var(--font-size-xs);
        margin-bottom: 6px;
    }

    .page-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .page-desc {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }

    /* Section Header - 통일된 타이포그래피 */
    .section-label {
        font-size: var(--font-size-xs);
        margin-bottom: 6px;
        letter-spacing: 0.1em;
    }

    .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-desc {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }

    /* Page Navigation */
    .page-nav {
        padding: 0;
    }

    .page-nav-inner {
        gap: 8px;
        padding: 8px 0;
    }

    .page-nav a {
        font-size: var(--font-size-xs);
        padding: 6px 12px;
    }

    /* Content Section */
    .content-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    /* Two Column Layout */
    .two-col {
        gap: 32px;
    }

    .two-col-content .section-label {
        font-size: var(--font-size-xs);
        margin-bottom: 6px;
    }

    .two-col-content .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .two-col-content .section-desc {
        font-size: var(--font-size-base);
        line-height: 1.7;
    }

    /* Feature Cards */
    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: var(--font-size-base);
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: var(--font-size-sm);
    }

    /* Value Cards */
    .value-card {
        padding: 24px 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .value-title {
        font-size: var(--font-size-base);
    }

    .value-desc {
        font-size: var(--font-size-sm);
    }

    /* Timeline */
    .timeline-item {
        padding-left: 24px;
    }

    .timeline-item::before {
        width: 10px;
        height: 10px;
    }

    .timeline-date {
        font-size: var(--font-size-xs);
    }

    .timeline-title {
        font-size: var(--font-size-base);
    }

    .timeline-desc {
        font-size: var(--font-size-sm);
    }

    /* Organization Chart */
    .org-chart {
        padding: 24px 16px;
    }

    .org-box {
        padding: 12px 16px;
        font-size: var(--font-size-sm);
        min-width: auto;
    }

    .org-level {
        gap: 8px;
    }

    /* Service Section */
    .service-section {
        padding: 48px 0;
    }

    .service-header .section-label {
        margin-bottom: 6px;
    }

    .service-header .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: 20px;
    }

    .service-header .section-desc {
        font-size: var(--font-size-base);
    }

    .service-feature-item {
        padding: 16px;
        gap: 12px;
    }

    .service-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .service-feature-content h4 {
        font-size: var(--font-size-sm);
    }

    .service-feature-content p {
        font-size: var(--font-size-xs);
    }

    /* Use Cases */
    .use-cases {
        margin-top: 24px;
        padding-top: 16px;
    }

    .use-case-tag {
        font-size: var(--font-size-xs);
        padding: 6px 10px;
    }

    /* Project Cards */
    .project-card {
        border-radius: var(--radius-md);
    }

    .project-image {
        height: 160px;
    }

    .project-info {
        padding: 16px;
    }

    .project-title {
        font-size: var(--font-size-base);
    }

    .project-desc {
        font-size: var(--font-size-sm);
    }

    /* News Items */
    .news-item-content {
        padding: 20px;
    }

    .news-item-title {
        font-size: var(--font-size-base);
    }

    .news-item-excerpt {
        font-size: var(--font-size-sm);
    }

    /* Contact Form */
    .contact-form {
        padding: 24px 16px;
    }

    .form-group label {
        font-size: var(--font-size-sm);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: var(--font-size-sm);
    }

    /* Contact Cards */
    .contact-card {
        padding: 20px 16px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .contact-card h3 {
        font-size: var(--font-size-base);
    }

    .contact-card p {
        font-size: var(--font-size-sm);
    }

    /* Job Cards */
    .job-card {
        padding: 20px;
    }

    .job-title {
        font-size: var(--font-size-base);
    }

    .job-meta {
        font-size: var(--font-size-xs);
    }

    /* Benefits */
    .benefit-card {
        padding: 24px 16px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .benefit-title {
        font-size: var(--font-size-base);
    }

    /* Product Section */
    .product-name {
        font-size: 1.5rem;
    }

    .product-tagline {
        font-size: var(--font-size-base);
    }

    .product-desc {
        font-size: var(--font-size-sm);
    }

    .product-buttons .btn {
        padding: 10px 16px;
        font-size: var(--font-size-sm);
    }

    /* Product Hero */
    .product-hero-title {
        font-size: 1.75rem;
    }

    .product-hero-tagline {
        font-size: var(--font-size-base);
    }

    /* Process Horizontal */
    .process-horizontal {
        padding: 24px 0;
    }

    .process-horizontal-step {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }

    .process-horizontal-content h4 {
        font-size: var(--font-size-sm);
    }

    .process-horizontal-content p {
        font-size: var(--font-size-xs);
    }

    /* Media */
    .media-row-item {
        width: 200px;
    }

    .video-placeholder i {
        font-size: 48px;
    }

    /* Smallight */
    .smallight-title {
        font-size: 1.5rem;
    }

    .smallight-tagline {
        font-size: var(--font-size-base);
    }

    .smallight-service-card,
    .smallight-why-item {
        padding: 24px 16px;
    }

    .smallight-service-icon,
    .smallight-why-number {
        font-size: 2rem;
    }

    /* Article */
    .article-title {
        font-size: var(--font-size-xl);
    }

    .article-content {
        padding: 32px 0;
    }

    .article-body {
        font-size: var(--font-size-sm);
    }

    .article-body h2 {
        font-size: var(--font-size-base);
    }

    /* Map */
    .map-wrapper iframe {
        height: 250px;
    }

    /* Floating Circles - 작게 */
    .floating-circles span:nth-child(1) {
        width: 120px !important;
        height: 120px !important;
    }

    .floating-circles span:nth-child(2) {
        width: 80px !important;
        height: 80px !important;
    }

    .floating-circles span:nth-child(3) {
        width: 60px !important;
        height: 60px !important;
    }
}
