/* ═══════════════════════════════════════════════════════════
   IJS Website - Page-Specific Styles
   Hero, sub-visual, sections, page layouts
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Section (Main Page) ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100% !important;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img,
.hero-slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-bg picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.hero-content.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: var(--weight-extrabold);
    color: white;
    line-height: 1.15;
    margin-bottom: var(--space-6);
}

.hero-desc {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-8);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* Hero pagination */
.hero .swiper-pagination {
    bottom: var(--space-10) !important;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: white;
    width: 36px;
    border-radius: 6px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-8);
    z-index: 2;
    color: white;
    font-size: var(--text-xs);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    animation: scrollBounce 2s infinite;
    opacity: 0.7;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Sub Visual (Sub Page Header) ── */
.sv {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.sv-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 29, 46, 0.6) 0%,
        rgba(26, 29, 46, 0.4) 100%
    );
    z-index: 1;
}

.sv-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sv-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-3);
}

.sv-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: white;
}

/* ── Section Tabs (sub-page navigation) ── */
.section-tabs {
    position: sticky;
    top: var(--header-height-scrolled);
    z-index: var(--z-sticky);
    background: white;
    border-bottom: 1px solid var(--ijs-border);
}

.section-tabs-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.section-tabs-inner::-webkit-scrollbar {
    display: none;
}

.section-tab {
    flex: 0 0 auto;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--ijs-text-muted);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-decoration: none;
}

.section-tab:hover {
    color: var(--ijs-text);
}

.section-tab.active {
    color: var(--ijs-primary);
    border-bottom-color: var(--ijs-primary);
    font-weight: var(--weight-semibold);
}

/* ── Main Page Sections ── */
.main-section {
    padding: var(--space-24) 0;
    position: relative;
}

.main-section:nth-child(even) {
    background: var(--ijs-bg-gray);
}

.main-section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.main-section-eyebrow {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--ijs-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}

.main-section-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
}

.main-section-desc {
    font-size: var(--text-lg);
    color: var(--ijs-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* ── Product Section ── */
.product-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.product-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-bg {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-8);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.product-card-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
}

.product-card-desc {
    font-size: var(--text-sm);
    opacity: 0.8;
}

/* ── Product Detail Page ── */
.product-detail {
    padding: var(--space-16) 0;
}

.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-10);
}

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

.product-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.product-process-step {
    text-align: center;
    padding: var(--space-6);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.product-process-step:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--ijs-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
}

/* ── ESG Section ── */
.esg-card {
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}

.esg-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--ijs-primary-light);
}

.esg-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-3);
}

.esg-card-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.esg-card-desc {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── ESG Sustainability ── */
.esg-section {
    margin-bottom: var(--space-12);
    padding: var(--space-8);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--ijs-border-light);
}
.esg-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-left: var(--space-4);
    margin-bottom: var(--space-6);
}
.esg-section-header h3 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
}
.esg-year-label {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    margin-bottom: var(--space-4);
}
.esg-description {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text);
    margin-bottom: var(--space-6);
}
.esg-economy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}
.esg-data-card {
    padding: var(--space-5);
    border: 1px solid var(--ijs-border-light);
    border-radius: var(--radius-lg);
    background: var(--ijs-bg-subtle);
}
.esg-data-card-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}
.esg-data-card-total {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-1);
}
.esg-data-unit-label {
    font-size: var(--text-xs);
    color: var(--ijs-text-light);
    margin-bottom: var(--space-3);
}
.esg-bar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.esg-bar-row {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.esg-bar-year {
    font-size: var(--text-xs);
    color: var(--ijs-text-light);
    min-width: 36px;
}
.esg-bar-track {
    flex: 1;
    height: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    overflow: hidden;
}
.esg-bar-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 1s ease;
}
.esg-bar-value {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    min-width: 48px;
    text-align: right;
}
.esg-chart-section,
.esg-table-section {
    margin-top: var(--space-6);
}
.esg-chart-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
}
.esg-bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--space-6);
    height: 220px;
    padding: var(--space-4) 0;
}
.esg-chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}
.esg-chart-bar-container {
    width: 60px;
    height: 180px;
    display: flex;
    align-items: flex-end;
}
.esg-chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    min-height: 4px;
    transition: height 1s ease;
}
.esg-chart-bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    white-space: nowrap;
}
.esg-chart-bar-label {
    font-size: var(--text-xs);
    color: var(--ijs-text-light);
}
.esg-chart-netzero {
    font-size: 10px;
    color: #dc2626;
    font-weight: var(--weight-bold);
}
.esg-table {
    width: 100%;
    border-collapse: collapse;
}
.esg-table th,
.esg-table td {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--ijs-border-light);
    text-align: center;
    font-size: var(--text-sm);
}
.esg-table th {
    background: var(--ijs-bg-subtle);
    font-weight: var(--weight-semibold);
}
.esg-table td:first-child {
    text-align: left;
}

/* ── Timeline (History) — Center-Aligned ── */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ijs-border);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding-bottom: var(--space-8);
    box-sizing: border-box;
}

.timeline-left {
    padding-right: var(--space-10);
    text-align: right;
    margin-left: 0;
}

.timeline-right {
    padding-left: var(--space-10);
    text-align: left;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--ijs-primary);
    border-radius: var(--radius-full);
    z-index: 1;
}

.timeline-left .timeline-dot {
    right: -8px;
}

.timeline-right .timeline-dot {
    left: -8px;
}

.timeline-highlight .timeline-dot {
    background: var(--ijs-primary);
    width: 20px;
    height: 20px;
}

.timeline-left .timeline-highlight .timeline-dot {
    right: -10px;
}

.timeline-right .timeline-highlight .timeline-dot {
    left: -10px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
}

.timeline-content {
    font-size: var(--text-base);
    color: var(--ijs-text);
    line-height: var(--leading-relaxed);
}

/* ── Organization Chart ── */
.orgchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-10) 0;
}

.orgchart-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
    text-align: center;
    min-width: 160px;
    transition: transform var(--transition-fast);
}

.orgchart-node:hover {
    transform: scale(1.05);
}

.orgchart-node-title {
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
}

.orgchart-node-subtitle {
    font-size: var(--text-xs);
    opacity: 0.8;
    margin-top: var(--space-1);
}

.orgchart-level {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.orgchart-connector {
    width: 2px;
    height: 30px;
    background: var(--ijs-border);
    margin: 0 auto;
}

/* ── Patent Gallery ── */
.patent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
}

.patent-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}

.patent-item:hover {
    box-shadow: var(--shadow-md);
}

.patent-item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.patent-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patent-item-info {
    padding: var(--space-4);
}

.patent-item-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
}

/* ── Board List (Notice, PR, Recruit) ── */
.board-list {
    border-top: 2px solid var(--ijs-dark);
}

.board-item {
    display: flex;
    align-items: center;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--ijs-border-light);
    transition: background var(--transition-fast);
}

.board-item:hover {
    background: var(--ijs-bg-gray);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    margin-left: calc(-1 * var(--space-4));
    margin-right: calc(-1 * var(--space-4));
    border-radius: var(--radius-md);
}

.board-item-num {
    flex: 0 0 60px;
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    text-align: center;
}

.board-item-title {
    flex: 1;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--ijs-dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.board-item-title a {
    color: inherit;
}

.board-item-title a:hover {
    color: var(--ijs-primary);
}

.board-item-date {
    flex: 0 0 100px;
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    text-align: center;
}

.board-item-views {
    flex: 0 0 80px;
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    text-align: center;
}

/* ── Board Detail ── */
.board-detail {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-10) 0;
}

.board-detail-header {
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--ijs-border);
    margin-bottom: var(--space-8);
}

.board-detail-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
}

.board-detail-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
}

.board-detail-content {
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

.board-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-4) 0;
}

.board-detail-attachments {
    margin-top: var(--space-8);
    padding: var(--space-4);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
}

.board-detail-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ijs-border);
}

/* ── Contact / Map ── */
.contact-map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-10);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
}

.contact-info-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ijs-primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
}

/* ── Recruit Culture Page ── */
.culture-hero {
    text-align: center;
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--ijs-dark) 0%, var(--ijs-primary-dark) 100%);
    color: white;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-12);
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.culture-value-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}

.culture-value-card:hover {
    border-color: var(--ijs-primary);
    box-shadow: var(--shadow-lg);
}

/* ── Search Results ── */
.search-results-header {
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--ijs-border);
    margin-bottom: var(--space-6);
}

.search-result-item {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--ijs-border-light);
}

.search-result-category {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--ijs-primary);
    text-transform: uppercase;
    margin-bottom: var(--space-1);
}

.search-result-title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.search-result-title a {
    color: var(--ijs-dark);
}

.search-result-title a:hover {
    color: var(--ijs-primary);
}

.search-result-snippet {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Error Page ── */
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: var(--space-10);
    margin-top: var(--header-height);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: var(--weight-extrabold);
    color: var(--ijs-primary);
    line-height: 1;
}

.error-message {
    font-size: var(--text-xl);
    margin: var(--space-4) 0;
}

.error-desc {
    color: var(--ijs-text-muted);
    margin-bottom: var(--space-8);
}

/* ── Partnership Form ── */
.form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-10) 0;
}

.form-section-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--ijs-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

/* ── Dispatch Page ── */
.dispatch-frame {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: var(--radius-lg);
}

/* ═══════════════════════════════════════════════════════
   MISSING CSS CLASSES - Sub Visual, Board, Contact, Forms
   ═══════════════════════════════════════════════════════ */

/* ── Sub Visual (Banner for sub-pages) ── */
.sub-visual {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sub-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 29, 46, 0.6) 0%,
        rgba(26, 29, 46, 0.4) 100%
    );
    z-index: 1;
}

.sub-visual-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sub-visual-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: white;
    margin-bottom: var(--space-4);
}

.sub-visual-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.sub-visual-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sub-visual-breadcrumb a:hover {
    color: white;
}

.sub-visual-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-header .section-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
}

.section-header .section-desc {
    font-size: var(--text-lg);
    color: var(--ijs-text-muted);
}

/* ── Board Toolbar (search + count) ── */
.board-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    flex-wrap: wrap;
    gap: var(--space-4);
}

.board-count {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
}

.board-count strong {
    color: var(--ijs-primary);
    font-weight: var(--weight-semibold);
}

.board-search {
    display: flex;
    gap: var(--space-2);
}

.board-search .form-control {
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--ijs-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    min-width: 200px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.board-search .form-control:focus {
    border-color: var(--ijs-primary);
}

/* ── Form Control (generic input) ── */
.form-control {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--ijs-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    width: 100%;
    outline: none;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--ijs-primary);
    box-shadow: 0 0 0 3px rgba(207, 13, 92, 0.1);
}

/* ── Card Grid ── */
.card-grid {
    display: grid;
    gap: var(--space-6);
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--ijs-bg-gray);
    color: var(--ijs-text-muted);
    font-size: 48px;
}

/* ── Contact Cards ── */
.contact-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-card i {
    font-size: 40px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-4);
    display: block;
}

.contact-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}

.contact-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    line-height: var(--leading-relaxed);
}

/* ── ESG Content (governance/ethics/environment/social pages) ── */
.esg-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.esg-content-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.esg-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.esg-content-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.esg-content-text h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin: var(--space-6) 0 var(--space-3);
}

.esg-content-text ul {
    padding-left: var(--space-5);
    margin: var(--space-3) 0;
}

.esg-content-text li {
    margin-bottom: var(--space-2);
}

.esg-content-text p {
    margin-bottom: var(--space-4);
    color: var(--ijs-text-secondary);
}

/* ── ESG Content Reverse (image right, text left) ── */
.esg-content-reverse {
    direction: rtl;
}
.esg-content-reverse > * {
    direction: ltr;
}

/* ── ESG Section Heading ── */
.esg-section-heading {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    text-align: center;
    margin-bottom: var(--space-8);
    color: var(--ijs-text);
}

/* ── ESG Cards ── */
.esg-card-grid {
    margin-top: var(--space-2);
}

.esg-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.esg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.esg-card-icon {
    font-size: 2rem;
    color: var(--ijs-primary);
    margin-bottom: var(--space-2);
}

.esg-card h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
    color: var(--ijs-text);
}

.esg-card p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-muted);
}

/* ── ESG Social Layout ── */
.esg-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.esg-pillar-list li {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.esg-pillar-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--ijs-primary-light, #e0f2fe);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ijs-primary);
}

.esg-pillar-list h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
    color: var(--ijs-text);
}

.esg-pillar-list p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-muted);
}

.esg-social-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.esg-social-images img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .esg-pillar-list {
        grid-template-columns: 1fr;
    }
    .esg-social-images {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-top: var(--space-6);
    }
}

/* ── ESG Closing Statement ── */
.esg-closing {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-6) 0;
}

.esg-closing p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-secondary);
}

/* ── Charter Content ── */
.charter-content {
    max-width: 800px;
    margin: 0 auto;
}

.charter-content p {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-secondary);
}

.charter-list {
    list-style: none;
    padding: 0;
}

.charter-list li {
    position: relative;
    padding: var(--space-4) var(--space-4) var(--space-4) var(--space-8);
    margin-bottom: var(--space-3);
    background: white;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--ijs-primary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-secondary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Section Description ── */
.section-desc {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-muted);
    max-width: 720px;
    margin: var(--space-4) auto 0;
    text-align: center;
}

/* ── Section Title em emphasis ── */
.section-title em {
    font-style: normal;
    color: var(--ijs-primary);
}

/* ── About Page Tagline ── */
.about-tagline {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-primary);
    margin-top: var(--space-6);
    font-family: var(--font-en);
    letter-spacing: -0.02em;
}

/* ── CEO Page Slogan ── */
.ceo-slogan {
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--ijs-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    font-family: var(--font-en);
}

/* ── Grid 3 used in contact page ── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* ═══════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES - Additional Components
   ═══════════════════════════════════════════════════════ */

/* ── Sub Visual Small Variant ── */
.sub-visual-sm {
    height: 200px;
}

/* ── Section Gray Background ── */
.section-gray {
    background: var(--ijs-bg-gray);
}

/* ── Hero Video ── */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Company About Page ── */
.about-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-12);
}

.about-overview-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-overview-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.about-overview-text h3 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-4);
    color: var(--ijs-dark);
}

.about-card {
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--ijs-border-light);
    text-align: center;
    transition: all var(--transition-normal);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-card-icon {
    font-size: 48px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-4);
}

.about-card-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-3);
    color: var(--ijs-dark);
}

.about-card-text {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Key Figures Section ── */
.about-figures-section {
    background: linear-gradient(135deg, var(--ijs-dark) 0%, #2a2d3e 100%);
    position: relative;
}
.about-figures {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}
.about-figure {
    text-align: center;
    color: #fff;
}
.about-figure i {
    font-size: 32px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
}
.about-figure-num {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-1);
}
.about-figure-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}
.about-figure-sub {
    font-size: var(--text-xs);
    opacity: 0.5;
    margin-top: var(--space-1);
}

/* ── Core Values ── */
.about-value-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ijs-border-light);
    background: var(--color-white);
    transition: all var(--transition-normal);
}
.about-value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(208, 17, 100, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-4);
}
.about-value-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
    color: var(--ijs-dark);
}
.about-value-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Certifications & Awards ── */
.about-certs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}
.about-cert-group h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.about-cert-group h3 i {
    color: var(--ijs-primary);
    font-size: 24px;
}
.about-cert-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.about-cert-item {
    padding: var(--space-4);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--ijs-primary);
}
.about-cert-item strong {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--ijs-dark);
    margin-bottom: 2px;
}
.about-cert-item span {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
}

/* ── History Milestones ── */
.about-milestones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}
.about-milestone {
    padding: var(--space-4);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--ijs-border-light);
    text-align: center;
    transition: all var(--transition-normal);
}
.about-milestone:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.about-milestone.highlight {
    border-color: var(--ijs-primary);
    background: rgba(208, 17, 100, 0.03);
}
.about-milestone-year {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    font-family: var(--font-heading);
    color: var(--ijs-primary);
    margin-bottom: var(--space-2);
}
.about-milestone-text {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ijs-border-light);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th {
    background: var(--ijs-bg-gray);
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--ijs-text-light);
    text-align: left;
    white-space: nowrap;
    width: 140px;
    border-bottom: 1px solid var(--ijs-border-light);
}

.info-table td {
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--ijs-border-light);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

/* ── CEO Page ── */
.ceo-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--space-12);
    align-items: start;
}

.ceo-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.ceo-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.ceo-message {
    padding-top: var(--space-4);
}

.ceo-greeting-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
}

.ceo-greeting-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text);
    margin-bottom: var(--space-8);
}

.ceo-greeting-text p {
    margin-bottom: var(--space-4);
}

.ceo-sign {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ijs-border-light);
}

.ceo-sign-img {
    width: 120px;
}

.ceo-sign-img img {
    width: 100%;
    height: auto;
}

.ceo-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.ceo-company {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
}

.ceo-title {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
}

.ceo-name {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
}

/* ── History Timeline Entries ── */
.timeline-entry {
    padding-bottom: var(--space-2);
}

.timeline-entry i {
    color: var(--ijs-primary);
    font-size: 14px;
    margin-right: 4px;
}

/* Timeline cards */
.timeline-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ijs-border-light);
    transition: box-shadow 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-card--highlight {
    border-left: 3px solid var(--ijs-primary);
    background: linear-gradient(135deg, #fff 0%, rgba(208, 17, 100, 0.03) 100%);
}

.timeline-right .timeline-card--highlight {
    border-left: 1px solid var(--ijs-border-light);
    border-right: 3px solid var(--ijs-primary);
}

.timeline-dot--highlight {
    background: var(--ijs-primary) !important;
    width: 20px !important;
    height: 20px !important;
    box-shadow: 0 0 0 4px rgba(208, 17, 100, 0.15);
}

.timeline-left .timeline-dot--highlight {
    right: -10px;
}

.timeline-right .timeline-dot--highlight {
    left: -10px;
}

/* Decade separator */
.timeline-decade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-6) 0 var(--space-4);
    position: relative;
    z-index: 2;
}

.timeline-decade-year {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-extrabold);
    color: #fff;
    background: var(--ijs-primary);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    line-height: 1;
}

.timeline-decade-label {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    font-weight: var(--weight-medium);
}

/* Decade Quick Nav */
.history-decade-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

.history-decade-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3) var(--space-5);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.history-decade-btn:hover {
    background: #fff;
    border-color: var(--ijs-primary);
    box-shadow: 0 2px 8px rgba(208, 17, 100, 0.1);
}

.history-decade-btn-year {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
}

.history-decade-btn-label {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
    margin-top: 2px;
}

/* ── Organization Chart (org-* variant) ── */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-10) 0;
}

.org-node-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-node-wrap.has-children {
    margin-bottom: var(--space-4);
}

.org-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: var(--weight-semibold);
    text-align: center;
    min-width: 160px;
    transition: transform var(--transition-fast);
}

.org-node:hover {
    transform: scale(1.05);
}

.org-node-title {
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
}

.org-node-subtitle {
    font-size: var(--text-xs);
    opacity: 0.8;
    margin-top: var(--space-1);
}

.org-children {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-4);
}

/* ── Product Detail Info ── */
.product-detail-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.product-detail-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
}

.product-detail-desc {
    font-size: var(--text-lg);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.product-process-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: var(--space-8);
}

.product-process-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Product Feature Cards ── */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.product-feature {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--ijs-border-light);
    text-align: center;
    transition: all var(--transition-normal);
}
.product-feature:hover {
    border-color: var(--ijs-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.product-feature i {
    font-size: 36px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
    display: block;
}
.product-feature h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}
.product-feature p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* Product footnote (disclaimer) */
.product-footnote {
    margin-top: var(--space-6);
    padding: var(--space-3) var(--space-4);
    border-left: 3px solid var(--ijs-border);
    color: var(--ijs-text-muted);
}
.product-footnote small {
    font-size: var(--text-xs);
    line-height: var(--leading-relaxed);
}

/* Product applications list */
.product-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto;
}
.product-app-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
}
.product-app-item i {
    font-size: 24px;
    color: var(--ijs-primary);
    flex: 0 0 auto;
}
.product-app-item span {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
}

/* Product CTA */
.product-cta {
    text-align: center;
    padding: var(--space-10) 0;
}

/* Partnership benefits */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.partnership-benefit {
    text-align: center;
    padding: var(--space-6);
}
.partnership-benefit i {
    font-size: 40px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
    display: block;
}
.partnership-benefit h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}
.partnership-benefit p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* R&D capability cards */
.rnd-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.rnd-cap-card {
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}
.rnd-cap-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.rnd-cap-card i {
    font-size: 32px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
    display: block;
}
.rnd-cap-card h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}
.rnd-cap-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* Contact extra info */
.contact-extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.contact-extra-item {
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--ijs-border);
    text-align: center;
}
.contact-extra-item i {
    font-size: 32px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
}
.contact-extra-item h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}
.contact-extra-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-extra-item li {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
    padding: var(--space-1) 0;
}
.contact-extra-item p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Technology Slider ── */
.technology-swiper {
    margin-top: var(--space-6);
    position: relative;
    padding-top: 48px;
}

.technology-swiper .swiper-button-prev,
.technology-swiper .swiper-button-next {
    top: 0;
    bottom: auto;
    width: 40px;
    height: 40px;
    margin-top: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--ijs-border-light);
    background: white;
    color: var(--ijs-text);
}

.technology-swiper .swiper-button-prev::after,
.technology-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
    color: var(--ijs-text);
}

.technology-swiper .swiper-button-prev:hover,
.technology-swiper .swiper-button-next:hover {
    background: var(--ijs-dark);
    color: white;
    border-color: var(--ijs-dark);
}

.technology-swiper .swiper-button-prev:hover::after,
.technology-swiper .swiper-button-next:hover::after {
    color: white;
}

.technology-swiper .swiper-button-prev {
    left: auto;
    right: 52px;
}

.technology-swiper .swiper-button-next {
    right: 0;
}

.technology-swiper .swiper-pagination {
    position: absolute;
    top: 12px;
    bottom: auto;
    left: 0;
    width: auto;
    text-align: left;
}

.technology-swiper .swiper-pagination-bullet {
    background: var(--ijs-text-muted);
}

.technology-swiper .swiper-pagination-bullet-active {
    background: var(--ijs-primary);
}

.tech-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--ijs-border-light);
}

.tech-slide-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tech-slide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tech-slide-content {
    padding: var(--space-4);
}

.tech-slide-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
}

.tech-slide-text {
    font-size: var(--text-base);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* ── Patent Card (variant) ── */
.patent-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
    background: white;
}

.patent-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.patent-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.patent-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patent-card-body {
    padding: var(--space-4);
}

.patent-card-title {
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--ijs-dark);
    margin-bottom: var(--space-1);
}

.patent-card-number {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
}

/* ── ESG Policy Download ── */
.policy-section {
    margin-bottom: var(--space-10);
}

.policy-section-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--ijs-border);
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.policy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.policy-item:hover {
    background: var(--ijs-bg-subtle);
    box-shadow: var(--shadow-sm);
}

.policy-item-title {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--ijs-dark);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* ── ESG Charter ── */
.charter-content {
    max-width: 800px;
    margin: 0 auto;
}

.charter-text {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text);
}

.charter-text h3 {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    margin: var(--space-8) 0 var(--space-4);
    color: var(--ijs-dark);
}

.charter-text p {
    margin-bottom: var(--space-4);
}

.charter-text ul,
.charter-text ol {
    padding-left: var(--space-5);
    margin: var(--space-3) 0;
}

.charter-text li {
    margin-bottom: var(--space-2);
    list-style: disc;
}

/* ── ESG Cyber Report ── */
.cyber-notice {
    padding: var(--space-5);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-light);
}

.cyber-form {
    max-width: 800px;
    margin: 0 auto;
}

/* ── Board View (Detail Page) ── */
.board-view {
    max-width: 900px;
    margin: 0 auto;
}

.board-view-header {
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--ijs-border);
    margin-bottom: var(--space-8);
}

.board-view-title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
}

.board-view-meta {
    display: flex;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
}

.board-view-thumb {
    margin-bottom: var(--space-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.board-view-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.board-view-content {
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
    color: var(--ijs-text);
}

.board-view-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-4) 0;
}

.board-view-attachments {
    margin-top: var(--space-8);
    padding: var(--space-4) var(--space-5);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
}

.board-view-attachments h4 {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}

.board-view-video {
    margin-bottom: var(--space-6);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--ijs-primary);
    text-decoration: none;
}

.attachment-link:hover {
    text-decoration: underline;
}

.attachment-size {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
}

/* ── Board Navigation (Prev/Next) ── */
.board-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--ijs-border);
}

.board-nav-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    max-width: 45%;
}

.board-nav-prev {
    align-items: flex-start;
}

.board-nav-next {
    align-items: flex-end;
    text-align: right;
}

.board-nav-label {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
    text-transform: uppercase;
    font-weight: var(--weight-medium);
}

.board-nav-title {
    font-size: var(--text-sm);
    color: var(--ijs-dark);
    font-weight: var(--weight-medium);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.board-nav-title a {
    color: inherit;
}

.board-nav-title a:hover {
    color: var(--ijs-primary);
}

/* ── Board Item Extended (with thumbnail) ── */
.board-item-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-right: var(--space-4);
}

.board-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-item-info {
    flex: 1;
    min-width: 0;
}

.board-item-meta {
    display: flex;
    gap: var(--space-3);
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
    margin-top: var(--space-1);
}

/* ── Recruit List ── */
.recruit-list {
    display: flex;
    flex-direction: column;
}

.recruit-item {
    display: flex;
    align-items: center;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--ijs-border-light);
    transition: background var(--transition-fast);
    gap: var(--space-4);
}

.recruit-item:hover {
    background: var(--ijs-bg-gray);
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    margin-left: calc(-1 * var(--space-4));
    margin-right: calc(-1 * var(--space-4));
    border-radius: var(--radius-md);
}

.recruit-item-status {
    flex: 0 0 auto;
}

.recruit-item-info {
    flex: 1;
    min-width: 0;
}

.recruit-item-title {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--ijs-dark);
    margin-bottom: var(--space-1);
}

.recruit-item-title a {
    color: inherit;
}

.recruit-item-title a:hover {
    color: var(--ijs-primary);
}

.recruit-item-meta {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
}

.recruit-item-arrow {
    flex: 0 0 auto;
    font-size: var(--text-xl);
    color: var(--ijs-text-muted);
}

/* ── Culture Page ── */

/* Culture hero banner with background image */
.culture-hero-banner {
    position: relative;
    padding: var(--space-16) 0;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}
.culture-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.85) 0%, rgba(208, 17, 100, 0.6) 100%);
}
.culture-hero-banner .container {
    position: relative;
    z-index: 1;
}
.culture-intro-text {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.culture-intro-text h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-6);
    color: white;
}
.culture-intro-text p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-3);
}

/* Talent cards (인재상) */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
.talent-card {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}
.talent-card:hover {
    border-color: var(--ijs-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.talent-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ijs-primary-pale, rgba(208, 17, 100, 0.08));
    font-size: 28px;
    color: var(--ijs-primary);
}
.talent-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}
.talent-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* Core value cards (expanded) */
.culture-card {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
}
.culture-card:hover {
    border-color: var(--ijs-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.culture-card-icon {
    font-size: 48px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-4);
}
.culture-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
    text-align: left;
    margin-top: var(--space-3);
}

/* Recruit process */
.process-section {
    background: var(--ijs-bg-gray);
}
.process-image {
    text-align: center;
    margin-bottom: var(--space-8);
}
.process-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}
.process-image .img-mo { display: none; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.process-step {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}
.process-step-num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ijs-primary);
    color: white;
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step-text h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}
.process-step-text p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* Benefit categories */
.benefit-category {
    margin-bottom: var(--space-8);
}
.benefit-category:last-child {
    margin-bottom: 0;
}
.benefit-category-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--ijs-dark);
}
.benefit-category-title i {
    color: var(--ijs-primary);
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}
.benefit-card {
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--ijs-border-light);
    text-align: left;
    transition: all var(--transition-normal);
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.benefit-card-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--ijs-primary-pale, rgba(208, 17, 100, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ijs-primary);
}
.benefit-card h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}
.benefit-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

/* Culture stats */
.culture-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    margin-bottom: var(--space-8);
}
.culture-stat {
    text-align: center;
}
.culture-stat-num {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: var(--ijs-primary);
    line-height: 1.2;
}
.culture-stat-label {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    margin-top: var(--space-1);
}

/* Recruit quick-links card */
.recruit-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}
.recruit-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--ijs-border-light);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: inherit;
}
.recruit-link-card:hover {
    border-color: var(--ijs-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.recruit-link-card i {
    font-size: 32px;
    color: var(--ijs-primary);
    margin-bottom: var(--space-3);
}
.recruit-link-card h3 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-1);
}
.recruit-link-card p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
}

/* HR contact info */
.hr-contact-box {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    background: var(--ijs-bg-gray);
    margin-top: var(--space-8);
}
.hr-contact-box i {
    font-size: 28px;
    color: var(--ijs-primary);
}
.hr-contact-box p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}
.hr-contact-box strong {
    color: var(--ijs-dark);
}

/* ── Search Page ── */
.search-form {
    max-width: 600px;
    margin: 0 auto var(--space-8);
    display: flex;
    gap: var(--space-3);
}

.search-results {
    margin-top: var(--space-6);
}

.search-result-type {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: var(--ijs-primary);
    text-transform: uppercase;
    margin-bottom: var(--space-1);
}

.search-result-excerpt {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
}

.search-result-info {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    margin-top: var(--space-4);
}

/* ── Legal Content (Privacy, Terms) ── */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text);
}

.legal-content h2 {
    font-size: var(--text-xl);
    margin: var(--space-8) 0 var(--space-4);
}

.legal-content h3 {
    font-size: var(--text-lg);
    margin: var(--space-6) 0 var(--space-3);
}

.legal-content p {
    margin-bottom: var(--space-3);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-5);
    margin: var(--space-3) 0;
}

.legal-content li {
    margin-bottom: var(--space-2);
    list-style: disc;
}

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

/* ── ESG Data Grid (sustainability) ── */
.esg-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

/* ── Our Partners ── */
.partners-section {
    display: flex;
    gap: var(--space-10);
    align-items: flex-start;
}
.partners-header h2 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-primary);
    line-height: 1.2;
    white-space: nowrap;
    border-left: 4px solid var(--ijs-primary);
    padding-left: var(--space-4);
}
.partners-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: var(--space-4);
    align-items: center;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
}
.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all .3s;
}
.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
@media (max-width: 1024px) {
    .partners-section { flex-direction: column; gap: var(--space-6); }
    .partners-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 600px) {
    .partners-grid { grid-template-columns: repeat(4, 1fr); }
    .partners-header h2 { font-size: var(--text-2xl); }
}

/* ═══════════════════════════════════════════════════════════
   Apply (Recruit Application) Styles
   ═══════════════════════════════════════════════════════════ */

/* Step Indicator */
.apply-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-8);
}
.apply-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
}
.apply-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--weight-bold);
    font-size: var(--text-sm);
    background: var(--ijs-bg-gray);
    color: var(--ijs-text-muted);
    border: 2px solid var(--ijs-border-light);
    transition: all .3s;
}
.apply-step.active .apply-step-num {
    background: var(--ijs-primary);
    color: #fff;
    border-color: var(--ijs-primary);
}
.apply-step-label {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
    margin-top: var(--space-1);
}
.apply-step.active .apply-step-label {
    color: var(--ijs-primary);
    font-weight: var(--weight-semibold);
}
.apply-step-line {
    width: 60px;
    height: 2px;
    background: var(--ijs-border-light);
    margin: 0 var(--space-2);
    margin-bottom: 20px;
}

/* Tabs (Register/Login) */
.apply-tabs {
    display: flex;
    border-bottom: 2px solid var(--ijs-border-light);
    margin-bottom: var(--space-6);
}
.apply-tab {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    text-align: center;
    background: none;
    border: none;
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--ijs-text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}
.apply-tab:hover { color: var(--ijs-text); }
.apply-tab.active {
    color: var(--ijs-primary);
    border-bottom-color: var(--ijs-primary);
    font-weight: var(--weight-semibold);
}

/* Agree Page */
.apply-agree-box {
    max-height: 300px;
    overflow-y: auto;
    padding: var(--space-5);
    background: var(--ijs-bg-gray);
    border: 1px solid var(--ijs-border-light);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: var(--ijs-text-light);
    margin-bottom: var(--space-6);
}
.apply-agree-box h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-3);
}
.apply-agree-box table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-3) 0;
    font-size: var(--text-sm);
}
.apply-agree-box th,
.apply-agree-box td {
    padding: var(--space-2) var(--space-3);
    border: 1px solid var(--ijs-border-light);
    text-align: left;
}
.apply-agree-box th {
    background: var(--ijs-bg);
    font-weight: var(--weight-semibold);
    white-space: nowrap;
}
.apply-guide-box {
    padding: var(--space-5);
    background: #f0f7ff;
    border: 1px solid #c6ddf7;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}
.apply-guide-box h4 {
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.apply-guide-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.apply-guide-box li {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}
.apply-guide-box li i {
    color: var(--ijs-primary);
    margin-top: 2px;
    flex-shrink: 0;
}
.apply-agree-check {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}
.apply-agree-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--ijs-primary);
}
.apply-agree-check label {
    font-weight: var(--weight-semibold);
    cursor: pointer;
}

/* Form Page */
.apply-form-section {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--ijs-border-light);
}
.apply-form-section:last-of-type {
    border-bottom: none;
}
.apply-form-section h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}
.apply-radio-group {
    display: flex;
    gap: var(--space-4);
}
.apply-radio {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    border: 2px solid var(--ijs-border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .2s;
    font-weight: var(--weight-medium);
}
.apply-radio:hover {
    border-color: var(--ijs-primary-light);
}
.apply-radio input[type="radio"] {
    accent-color: var(--ijs-primary);
}
.apply-radio input[type="radio"]:checked ~ span {
    color: var(--ijs-primary);
}
.apply-recruit-info {
    padding: var(--space-4);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
}
.apply-recruit-info i {
    color: var(--ijs-primary);
    font-size: var(--text-lg);
}
.apply-file-upload {
    border: 2px dashed var(--ijs-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    transition: all .2s;
}
.apply-file-upload:hover {
    border-color: var(--ijs-primary-light);
    background: rgba(var(--ijs-primary-rgb, 13, 71, 161), 0.02);
}
.apply-file-upload input[type="file"] {
    display: block;
    width: 100%;
    margin-top: var(--space-2);
}
.apply-file-upload .file-hint {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
    margin-top: var(--space-1);
}

/* Complete Page */
.apply-complete {
    text-align: center;
    padding: var(--space-10) 0;
}
.apply-complete-icon {
    font-size: 80px;
    color: #22c55e;
    margin-bottom: var(--space-4);
    line-height: 1;
}
.apply-complete h2 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: var(--space-4);
}
.apply-complete-id {
    font-size: var(--text-lg);
    color: var(--ijs-text-light);
    margin-bottom: var(--space-4);
}
.apply-complete-desc {
    color: var(--ijs-text-muted);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
}
.apply-complete-info {
    max-width: 400px;
    margin: 0 auto var(--space-6);
    text-align: left;
    padding: var(--space-5);
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
}
.apply-complete-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.apply-complete-info li {
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}
.apply-complete-info li i {
    color: var(--ijs-primary);
    margin-top: 2px;
}

/* Apply Responsive */
@media (max-width: 600px) {
    .apply-steps { gap: 0; }
    .apply-step-line { width: 30px; }
    .apply-step-num { width: 30px; height: 30px; font-size: 12px; }
    .apply-step-label { font-size: 11px; }
    .apply-radio-group { flex-direction: column; }
    .apply-tab { font-size: var(--text-sm); padding: var(--space-2) var(--space-3); }
}

/* ═══════════════════════════════════════════════════════════
   HOME — Trust KPI Bar
   ═══════════════════════════════════════════════════════════ */
.home-kpi {
    background: var(--ijs-dark);
    padding: 56px 0;
}

.home-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.home-kpi-item {
    color: #fff;
}

.home-kpi-item i {
    font-size: 28px;
    color: var(--ijs-primary);
    margin-bottom: 12px;
    display: block;
}

.home-kpi-num {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.home-kpi-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    font-weight: var(--weight-medium);
    margin-bottom: 2px;
}

.home-kpi-sub {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════════
   HOME — Section Header (shared)
   ═══════════════════════════════════════════════════════════ */
.home-section {
    padding: 100px 0;
}

.home-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.home-section-eyebrow {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--ijs-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.home-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    line-height: var(--leading-tight);
    margin: 0;
}

.home-section-title em {
    font-style: normal;
    color: var(--ijs-primary);
}

.home-section-desc {
    font-size: var(--text-lg);
    color: var(--ijs-text-light);
    margin-top: 16px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark section variant */
.home-section-dark {
    background: var(--ijs-dark);
}

.home-section-dark .home-section-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.home-section-dark .home-section-title {
    color: #fff;
}

.home-section-dark .home-section-title em {
    color: var(--ijs-primary);
}

.home-section-dark .home-section-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════════════════════
   HOME — Core Technology Cards
   ═══════════════════════════════════════════════════════════ */
.home-tech-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.home-tech-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.home-tech-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.home-tech-card:nth-child(even) {
    direction: rtl;
}

.home-tech-card:nth-child(even) > * {
    direction: ltr;
}

.home-tech-card-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.home-tech-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-tech-card:hover .home-tech-card-visual img {
    transform: scale(1.04);
}

.home-tech-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-tech-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--ijs-primary-light);
    color: var(--ijs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.home-tech-card-body h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin: 0 0 12px;
    line-height: var(--leading-tight);
}

.home-tech-card-body p {
    font-size: var(--text-base);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
    margin: 0 0 20px;
}

.home-tech-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-tech-specs li {
    font-size: var(--text-sm);
    color: var(--ijs-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-tech-specs li i {
    color: var(--ijs-primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOME — Applications Grid
   ═══════════════════════════════════════════════════════════ */
.home-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-app-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-app-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ijs-primary);
    transform: translateY(-4px);
}

.home-app-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: var(--weight-semibold);
    color: var(--ijs-primary);
    background: rgba(208, 17, 100, 0.15);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.home-app-card i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 16px;
}

.home-app-card h3 {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: #fff;
    margin: 0 0 10px;
}

.home-app-card p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOME — Company Snapshot
   ═══════════════════════════════════════════════════════════ */
.home-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.home-snapshot-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.home-snapshot-image img {
    width: 100%;
    height: auto;
    display: block;
}

.home-snapshot-content {
    display: flex;
    flex-direction: column;
}

.home-snapshot-lead {
    font-size: var(--text-lg);
    color: var(--ijs-text);
    line-height: var(--leading-relaxed);
    margin: 0 0 28px;
}

.home-snapshot-facts {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.home-snapshot-fact {
    flex: 1;
    padding: 16px;
    background: var(--ijs-bg-gray);
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 3px solid var(--ijs-primary);
}

.home-snapshot-fact strong {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin-bottom: 4px;
}

.home-snapshot-fact span {
    font-size: var(--text-xs);
    color: var(--ijs-text-muted);
}

.home-snapshot-clients {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-snapshot-clients strong {
    font-size: var(--text-base);
    color: var(--ijs-dark);
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════
   HOME — CTA Section
   ═══════════════════════════════════════════════════════════ */
.home-cta {
    background: linear-gradient(135deg, var(--ijs-primary) 0%, var(--ijs-primary-dark) 100%);
    padding: 80px 0;
}

.home-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.home-cta-inner h2 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: #fff;
    margin: 0 0 16px;
    line-height: var(--leading-tight);
}

.home-cta-inner p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px;
    line-height: var(--leading-relaxed);
}

.home-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY — Process Grid
   ═══════════════════════════════════════════════════════════ */
.tech-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-process-step {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ijs-border-light);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tech-process-step:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.tech-process-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--ijs-primary-light);
    line-height: 1;
    pointer-events: none;
}

.tech-process-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--ijs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.tech-process-step h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--ijs-dark);
    margin: 0 0 8px;
}

.tech-process-step p {
    font-size: var(--text-sm);
    color: var(--ijs-text-light);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   TECHNOLOGY — Spec Table (enhanced readability)
   ═══════════════════════════════════════════════════════════ */
.tech-spec-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    table-layout: fixed;
}

.tech-spec-table thead th {
    padding: 16px 24px;
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid var(--ijs-primary);
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
}

.tech-spec-table thead th:first-child {
    width: 35%;
}

.tech-spec-table tbody td {
    padding: 14px 24px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
    line-height: 1.6;
}

.tech-spec-table tbody tr:last-child td {
    border-bottom: none;
}

.tech-spec-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.tech-spec-table tbody tr:hover {
    background: rgba(208, 17, 100, 0.06);
    transition: background 0.15s ease;
}

.tech-spec-table tbody td:first-child {
    font-weight: var(--weight-semibold);
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
    position: relative;
    padding-left: 32px;
    font-size: var(--text-sm);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-spec-table tbody td:first-child::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--ijs-primary);
    border-radius: 50%;
    opacity: 0.7;
}

.tech-spec-table tbody td:last-child {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: 0.01em;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE STRIP — Full-width bar with key metrics
   ═══════════════════════════════════════════════════════════ */
.perf-strip {
    background: var(--ijs-bg-dark, #111);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    overflow: hidden;
}

.perf-strip-inner {
    max-width: var(--container-max, 1320px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 24px;
}

.perf-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
}

.perf-strip-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-extrabold);
    color: var(--ijs-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.perf-strip-label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.perf-strip-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

[data-theme="dark"] .perf-strip {
    background: var(--ijs-bg-dark);
}

.perf-strip-footnote {
    max-width: var(--container-max, 1320px);
    margin: 0 auto;
    padding: 6px 24px 0;
    text-align: right;
}

.perf-strip-footnote small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.4;
}

.perf-strip-value sup {
    font-size: 0.55em;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   ENGINEERING PROCESS — 5-step horizontal flow
   ═══════════════════════════════════════════════════════════ */
.eng-process-section {
    background: var(--ijs-bg);
}

.eng-process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.eng-process-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.eng-process-num {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-bold);
    color: var(--ijs-primary);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    opacity: 0.7;
}

.eng-process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ijs-primary), var(--ijs-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(208, 17, 100, 0.25);
}

.eng-process-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--weight-bold);
    color: var(--ijs-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.eng-process-desc {
    font-size: var(--text-sm);
    color: var(--ijs-text-muted);
    line-height: 1.6;
    margin: 0;
}

.eng-process-arrow {
    display: flex;
    align-items: center;
    padding-top: 64px;
    color: var(--ijs-primary);
    font-size: 20px;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CLIENT PROOF — Logo grid
   ═══════════════════════════════════════════════════════════ */
.client-proof-section {
    background: var(--ijs-bg-alt, var(--ijs-bg));
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ijs-border-light);
    background: var(--ijs-bg);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.55;
    cursor: default;
}

.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--ijs-primary);
    box-shadow: 0 4px 16px rgba(208, 17, 100, 0.1);
    transform: translateY(-2px);
}

.client-logo-item img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════
   ENGINEERING VISUAL PLACEHOLDER — aspect-ratio fixed, CLS safe
   ═══════════════════════════════════════════════════════════ */
.eng-visual-placeholder {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--ijs-bg-alt, #f5f5f5);
}

.eng-visual-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eng-visual-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.eng-visual-badge i {
    font-size: 14px;
    color: var(--ijs-primary);
}
