/* =============================================
   GLOBAL TYPOGRAPHY & SPACING NORMALIZATION
   Reference: protiumscience.com clean corporate style
   ============================================= */

/* Base typography scale */
:root {
    --text-xs: 0.75rem;    /* 12px - captions, labels */
    --text-sm: 0.85rem;    /* 13.6px - meta, breadcrumb */
    --text-base: 0.95rem;  /* 15.2px - body text */
    --text-md: 1.05rem;    /* 16.8px - lead text */
    --text-lg: 1.25rem;    /* 20px - sub-headings */
    --text-xl: 1.5rem;     /* 24px - section titles */
    --text-2xl: 1.8rem;    /* 28.8px - page titles */
    --text-3xl: 2.2rem;    /* 35.2px - hero headlines */

    --spacing-section: 80px;
    --spacing-section-sm: 48px;
    --color-heading: #1a1a1a;
    --color-body: #555;
    --color-muted: #999;
    --color-border: #eee;
}

/* Global body text for sub-pages */
.concept-subpage {
    font-size: var(--text-base);
    color: var(--color-body);
    line-height: 1.75;
    word-break: keep-all;
}

/* Consistent section spacing */
.concept-subpage section {
    padding-top: var(--spacing-section);
    padding-bottom: var(--spacing-section);
}

@media (max-width: 767px) {
    :root {
        --spacing-section: 48px;
        --spacing-section-sm: 32px;
    }
}

/* =============================================
   CHEMIREX3 - Company Sub-pages Custom CSS
   Concept Design System Compatible
   About / Location / History pages
   ============================================= */

/* ---- Sub Page Header Bar (protiumscience-inspired) ---- */
.sub-header-bar {
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.subpage-intro-section {
    background: #fff;
    padding: 72px 0 24px;
}

.subpage-intro-block {
    max-width: 980px;
}

.subpage-intro-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.subpage-intro-title {
    margin: 26px 0 0;
    font-size: clamp(2.2rem, 3.7vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: #111;
}

.subpage-intro-desc {
    margin: 22px 0 0;
    max-width: 920px;
    font-size: 19px;
    line-height: 1.9;
    color: #5a5a5a;
    word-break: keep-all;
}

.subpage-intro-section + section {
    padding-top: 28px !important;
}

.section-rise {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.section-rise.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Banner */
.sub-hero-banner {
    position: relative;
    width: 100%;
    overflow: visible;
    margin-bottom: 56px;
    border-radius: 0 0 54px 54px;
    box-shadow: 0 34px 54px -42px rgba(15, 23, 42, 0.38);
}

.sub-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0 0 54px 54px;
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.12) 100%);
    pointer-events: none;
    border-radius: 0 0 54px 54px;
}

.sub-hero-overlay-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    height: 100%;
    padding: 132px 0 112px;
}

.sub-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.sub-hero-headline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Breadcrumb cutout — concave corner bottom-right */
.sub-hero-crumb-shell {
    position: absolute;
    inset-inline: 0;
    bottom: -28px;
    z-index: 2;
    pointer-events: none;
}

.sub-hero-crumb-inner {
    display: flex;
    justify-content: flex-end;
}

.sub-hero-crumb-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 24px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    min-width: 0;
    max-width: min(100%, 420px);
    pointer-events: auto;
}

/* Breadcrumb inside cutout */
.sub-breadcrumb {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.sub-breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.sub-breadcrumb a:hover {
    color: var(--chemirex-primary);
}

.sub-breadcrumb a i {
    font-size: 1rem;
    vertical-align: middle;
}

.sub-breadcrumb > i {
    color: #ccc;
    font-size: 0.85rem;
}

.sub-breadcrumb .current {
    color: #333;
    font-weight: 600;
}

/* Category Title (now in hero overlay) */
.sub-header-title {
    display: none;
}

/* Responsive hero */
@media (max-width: 991px) {
    .sub-header-bar { padding-top: 0; }
    .subpage-intro-section { padding: 56px 0 18px; }
    .subpage-intro-title { margin-top: 22px; font-size: 2.5rem; }
    .subpage-intro-desc { margin-top: 18px; font-size: 17px; line-height: 1.82; }
    .subpage-intro-section + section { padding-top: 22px !important; }
    .sub-hero-banner { margin-bottom: 48px; }
    .sub-hero-banner { border-radius: 0 0 42px 42px; }
    .sub-hero-img { height: 420px; }
    .sub-hero-img,
    .sub-hero-overlay { border-radius: 0 0 42px 42px; }
    .sub-hero-overlay-inner { padding: 120px 0 92px; }
    .sub-hero-headline { font-size: 1.8rem; }
    .sub-hero-crumb-shell { bottom: -24px; }
    .sub-hero-crumb-wrap { padding: 14px 20px; border-radius: 18px; max-width: min(100%, 360px); }
}

@media (max-width: 576px) {
    .sub-header-bar { padding-top: 0; }
    .subpage-intro-section { padding: 44px 0 10px; }
    .subpage-intro-kicker { font-size: 11px; padding: 7px 12px; letter-spacing: 0.12em; }
    .subpage-intro-title { margin-top: 18px; font-size: 2rem; line-height: 1.14; }
    .subpage-intro-desc { margin-top: 16px; font-size: 15px; line-height: 1.78; }
    .subpage-intro-section + section { padding-top: 18px !important; }
    .sub-hero-banner { margin-bottom: 42px; }
    .sub-hero-banner { border-radius: 0 0 28px 28px; }
    .sub-hero-img { height: 320px; }
    .sub-hero-img,
    .sub-hero-overlay { border-radius: 0 0 28px 28px; }
    .sub-hero-overlay-inner { padding: 94px 0 72px; }
    .sub-hero-headline { font-size: 1.3rem; }
    .sub-hero-label { font-size: 0.7rem; }
    .sub-hero-crumb-shell { bottom: -20px; }
    .sub-hero-crumb-wrap { padding: 12px 16px; border-radius: 16px; max-width: calc(100vw - 32px); }
    .sub-breadcrumb { font-size: 0.72rem; }
}

/* Tab Navigation */
.sub-tab-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.sub-tab-nav::-webkit-scrollbar {
    display: none;
}

.sub-tab {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}

.sub-tab:hover {
    color: #333;
}

.sub-tab.active {
    color: var(--chemirex-primary, #FF5E14);
    font-weight: 700;
    border-bottom-color: var(--chemirex-primary, #FF5E14);
}

@media (max-width: 767px) {
    .sub-header-title {
        font-size: 1.5rem;
        margin: 4px 0 16px;
    }
    .sub-tab {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

/* ---- Scroll Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from Left */
.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right */
.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children (delay per child) */
.stagger-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.54s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax background (controlled by JS) */
.parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Card hover lift */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ---- Sub Page Visual Hero (Full-width image section) ---- */
.sub-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background-color: #050505;
    overflow: hidden;
}

.sub-visual-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.sub-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.sub-visual-blur-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,94,20,0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

.sub-visual-blur-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,189,6,0.15) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    z-index: 1;
}

.sub-visual-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.sub-visual-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sub-visual-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.sub-visual-title em {
    font-style: italic;
    color: var(--chemirex-primary, #FF5E14);
}

.sub-visual-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 0;
}

.sub-visual-stats {
    display: flex;
    gap: 0;
    margin-top: 40px;
}

.sub-visual-stat {
    padding: 0 28px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.sub-visual-stat:first-child {
    padding-left: 0;
}

.sub-visual-stat:last-child {
    border-right: none;
}

.sub-visual-stat .sv-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sub-visual-stat .sv-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
}

@media (max-width: 767px) {
    .sub-visual {
        min-height: 320px;
    }
    .sub-visual-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .sub-visual-inner {
        padding: 40px 0;
    }
    .sub-visual-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .sub-visual-stat {
        border-right: none;
        padding: 0;
    }
}

/* ---- Sub Page Header (for pages without custom hero) ---- */
/* ---- Sub-page Hero (Designed Header) ---- */
.sub-hero {
    position: relative;
    padding: 100px 0 60px;
    background: #050505;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.sub-hero-label {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-hero-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.sub-hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .sub-hero {
        min-height: 240px;
        padding: 80px 0 40px;
    }
    .sub-hero-title {
        font-size: 2rem;
    }
}

/* ---- Sub-page Header (Fallback Simple) ---- */
.sub-page-header {
    background: #050505;
    padding: 20px 0 48px;
    text-align: center;
}

.sub-page-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

/* ---- Section Styles ---- */
.sub-section {
    padding: 100px 0;
}

.sub-section.bg-light {
    background: #f8f9fa;
}

.sub-section.bg-dark {
    background: #050505;
    color: #fff;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--chemirex-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label i {
    font-size: 1rem;
}

.section-heading {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-heading .highlight {
    background: linear-gradient(to right, var(--chemirex-primary), var(--chemirex-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    max-width: 700px;
}

/* ---- Glass Cards ---- */
.sub-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sub-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ---- Counter Cards ---- */
.counter-card-concept {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.counter-card-concept:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.counter-card-concept .counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--chemirex-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-card-concept .counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-card-concept .counter-desc {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-top: 4px;
}

/* ---- Timeline (History Page) ---- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--chemirex-primary), var(--chemirex-secondary));
    top: 0;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--chemirex-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    top: 25px;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 94, 20, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -25px;
}

.timeline-content {
    background: #fff;
    border-radius: 1rem;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--chemirex-primary), var(--chemirex-secondary));
    color: #fff;
    padding: 5px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.timeline-content p {
    margin-bottom: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ---- CEO Message Area ---- */
.ceo-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.9;
    color: #333;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--chemirex-primary);
}

.ceo-signature h5 {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 20px;
}

.ceo-signature span {
    color: var(--chemirex-primary);
    font-weight: 500;
}

/* ---- Transportation Card (Location Page) ---- */
.transportation-card {
    background: #fff;
    border-radius: 1rem;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.transportation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.transportation-card .transport-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--chemirex-primary);
    transition: all 0.3s ease;
}

.transportation-card:hover .transport-icon {
    background: var(--chemirex-primary);
    color: #fff;
}

.transportation-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.transportation-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.transportation-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
    font-size: 15px;
}

.transportation-card ul li:last-child {
    border-bottom: none;
}

.transportation-card ul li i {
    color: var(--chemirex-primary);
    margin-right: 8px;
}

/* ---- Core Values Cards ---- */
.core-value-card {
    text-align: center;
    padding: 40px 25px;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.core-value-card .value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--chemirex-primary);
    transition: all 0.3s ease;
}

.core-value-card:hover .value-icon {
    background: var(--chemirex-primary);
    color: #fff;
}

.core-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.core-value-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* ---- Map Area ---- */
.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe,
.map-container #google-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 1rem;
}

/* ---- Contact Info Card ---- */
.contact-info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 94, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--chemirex-primary);
    margin-right: 15px;
}

.contact-info-card .info-text h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-card .info-text p,
.contact-info-card .info-text a {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
}

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

/* ---- Mission/Vision Cards ---- */
.mv-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h3 i {
    color: var(--chemirex-primary);
    font-size: 1.5rem;
}

.mv-card p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.mv-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-card ul li {
    padding: 6px 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mv-card ul li i {
    color: var(--chemirex-primary);
    font-size: 1rem;
}

/* ---- Sub-page Footer ---- */
.sub-footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

/* ---- CTA Section ---- */
.sub-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--chemirex-primary), #ff8c42);
    text-align: center;
    color: #fff;
}

.sub-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.sub-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--chemirex-primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--chemirex-primary);
}

/* ---- Navbar Submenu (Dropdown) ---- */
.navbar-menu .has-submenu {
    position: relative;
}

.navbar-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 12px;
    list-style: none;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.navbar-submenu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.has-submenu:hover .navbar-submenu {
    display: block;
}

.navbar-submenu li {
    padding: 0;
}

.navbar-submenu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #555 !important;
    white-space: nowrap;
    transition: all 0.2s;
}

.navbar-submenu a:hover {
    color: var(--chemirex-primary) !important;
    background: rgba(0, 0, 0, 0.03);
}

/* ---- Mobile Submenu ---- */
.mobile-menu-group {
    display: flex;
    flex-direction: column;
}

.mobile-submenu {
    padding-left: 20px;
}

.mobile-sub-link {
    font-size: 0.9rem !important;
    opacity: 0.6;
}

/* ======================================================
   About Page (Renewal) - Editorial / Magazine Style
   ====================================================== */

/* --- Color Utilities --- */
:root {
    --crx-black: #050505;
    --crx-dark:  #121212;
    --crx-blue:  #FF5E14;
    --crx-lime:  #FBBD06;
}

.text-crx-blue  { color: var(--crx-blue)  !important; }
.text-crx-lime  { color: var(--crx-lime)  !important; }
.text-crx-black { color: var(--crx-black) !important; }
.bg-crx-blue    { background-color: var(--crx-blue)  !important; }
.bg-crx-lime    { background-color: var(--crx-lime)  !important; }
.bg-crx-black   { background-color: var(--crx-black) !important; }
.bg-crx-dark    { background-color: var(--crx-dark)  !important; }

/* --- CEO Greeting Section (Clean 2-Column) --- */
.ceo-greeting {
    padding: var(--spacing-section) 0;
    background: #fff;
}

.ceo-headline {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 56px;
    max-width: 700px;
}

.ceo-photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ceo-photo img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ceo-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceo-stat {
    font-size: 0.9rem;
    color: #888;
}

.ceo-stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-right: 6px;
}

.ceo-greeting .col-lg-8 p {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

.ceo-intro strong {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.ceo-thanks {
    margin-top: 8px;
}

.ceo-thanks strong {
    font-size: 1rem;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .ceo-greeting { padding: 60px 0; }
    .ceo-headline { margin-bottom: 36px; }
    .ceo-photo img { aspect-ratio: 4 / 3; }
}

/* CTA Link */
.ceo-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 28px;
    border: 1.5px solid #1a1a1a;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ceo-cta-link:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Core Values Strip */
.ceo-values-strip {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.ceo-value-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.ceo-value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ceo-values-card {
    padding: 8px 0 8px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-values-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--chemirex-primary);
    display: inline-block;
}

.ceo-value-item {
    margin-bottom: 8px;
}

.ceo-value-item i {
    display: block;
    font-size: 1.4rem;
    color: var(--chemirex-primary);
    margin-bottom: 8px;
}

.ceo-value-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.ceo-value-item p {
    font-size: 0.82rem !important;
    color: #888 !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
}

.ceo-values-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--chemirex-primary);
    text-decoration: none;
    transition: gap 0.3s;
}

.ceo-values-link:hover {
    gap: 12px;
}

@media (max-width: 991px) {
    .ceo-values-strip { margin-top: 48px; padding-top: 40px; }
    .ceo-values-card { padding: 24px 0 0; }
    .ceo-value-img { min-height: 200px; }
}

@media (max-width: 576px) {
    .ceo-greeting { padding: 40px 0; }
    .ceo-headline { font-size: 1.3rem; margin-bottom: 28px; }
    .ceo-values-strip { margin-top: 36px; padding-top: 32px; }
}

/* --- Section 1: About Hero (legacy) --- */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--crx-black);
    overflow: hidden;
    padding: 140px 0 100px;
}

.about-hero-page-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero .hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease;
}

/* Uncover Image Reveal */
.about-hero .hero-uncover {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: row;
    pointer-events: none;
}

.about-hero .uncover-slice {
    flex: 1;
    background: var(--crx-black, #0a0a0a);
    transform: scaleX(1);
    transform-origin: left center;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.about-hero .uncover-slice:nth-child(1) {
    transition-delay: 0s;
}

.about-hero .uncover-slice:nth-child(2) {
    transition-delay: 0.15s;
}

.about-hero .uncover-slice:nth-child(3) {
    transition-delay: 0.3s;
}

.about-hero.uncovered .uncover-slice {
    transform: scaleX(0);
}

.about-hero.uncovered .hero-bg-img {
    opacity: 0.3;
    transform: scale(1.08);
}

.about-hero .hero-blur-blue {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.25) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    filter: blur(80px);
    pointer-events: none;
}

.about-hero .hero-blur-lime {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 189, 6, 0.2) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    filter: blur(80px);
    pointer-events: none;
}

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero .hero-badge {
    display: inline-block;
    border: 1px solid rgba(251, 189, 6, 0.5);
    color: var(--crx-lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.about-hero .hero-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--crx-lime);
}

.about-hero .hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    max-width: 540px;
    margin-top: 28px;
}

.about-hero .hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 48px;
}

.about-hero .hero-stat {
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-hero .hero-stat:first-child {
    padding-left: 0;
}

.about-hero .hero-stat:last-child {
    border-right: none;
}

.about-hero .hero-stat .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about-hero .hero-stat .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* --- Section 2: Editorial Intro (Light Magazine) --- */
.about-editorial {
    padding: 100px 0 120px;
    background: #fafafa;
}

/* Big Headline */
.ae-headline {
    margin-bottom: 72px;
}

.ae-headline p {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.45;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
}

.ae-headline em {
    font-style: italic;
    color: var(--chemirex-primary, #FF5E14);
}

/* 3-Column Grid */
.ae-grid {
    display: grid;
    grid-template-columns: 280px 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Left Column */
.ae-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ae-img-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.ae-img-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.ae-stat-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ae-stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
}

.ae-stat-num sup {
    font-size: 1.5rem;
    color: var(--chemirex-primary, #FF5E14);
}

.ae-stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #666;
    line-height: 1.35;
}

/* Center Column */
.ae-center {
    padding-top: 8px;
}

.ae-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.ae-tab {
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #bbb;
    cursor: pointer;
    padding: 0 0 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.ae-tab.active {
    color: #111;
    border-bottom-color: #111;
}

.ae-tab:hover {
    color: #555;
}

.ae-panel {
    display: none;
}

.ae-panel.active {
    display: block;
}

.ae-panel p {
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.ae-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 32px;
    border: 2px solid #111;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: all 0.25s;
}

.ae-cta:hover {
    background: #111;
    color: #fff;
}

/* Right Column */
.ae-right {
    position: relative;
}

.ae-img-large {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.ae-img-large img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.ae-accent-card {
    position: absolute;
    bottom: -24px;
    left: -40px;
    background: var(--chemirex-primary, #FF5E14);
    border-radius: 16px;
    padding: 28px;
    width: 260px;
    box-shadow: 0 12px 40px rgba(255,94,20,0.25);
}

.ae-accent-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.ae-accent-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.ae-accent-card li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    padding: 5px 0;
    font-weight: 500;
}

.ae-accent-card li i {
    margin-right: 6px;
    font-weight: 700;
}

.ae-accent-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
    justify-content: space-between;
}

.ae-accent-btn:hover {
    background: rgba(0,0,0,0.4);
    color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
    .ae-grid {
        grid-template-columns: 240px 1fr 300px;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .ae-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .ae-left {
        flex-direction: row;
        align-items: center;
    }
    .ae-img-card {
        max-width: 200px;
    }
    .ae-accent-card {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: -40px;
        margin-left: 24px;
        margin-right: 24px;
    }
}

@media (max-width: 575px) {
    .about-editorial {
        padding: 60px 0 80px;
    }
    .ae-headline {
        margin-bottom: 48px;
    }
    .ae-left {
        flex-direction: column;
    }
    .ae-img-card {
        max-width: 100%;
    }
    .ae-stat-num {
        font-size: 2.5rem;
    }
}

/* --- Section 3: Core Values (Brutalist Grid) --- */
.about-values {
    padding: 120px 0;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.about-values .values-header-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
}

.about-values .values-header-desc {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.about-values .value-col {
    padding: 48px 36px;
    border-right: 1px solid #ddd;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: default;
}

.about-values .value-col:last-child {
    border-right: none;
}

.about-values .value-col .value-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #bbb;
    margin-bottom: 24px;
    display: block;
    transition: color 0.3s ease;
}

.about-values .value-col .value-icon-wrap {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    line-height: 1;
}

.about-values .value-col .value-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-values .value-col .value-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.about-values .value-col:hover {
    background: #050505;
}

.about-values .value-col:hover .value-num,
.about-values .value-col:hover .value-icon-wrap,
.about-values .value-col:hover .value-title {
    color: #fff;
}

.about-values .value-col:hover .value-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Value Cards - Scroll Animation */
.value-card-anim {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card-anim:nth-child(1) { transition-delay: 0s; }
.value-card-anim:nth-child(2) { transition-delay: 0.2s; }
.value-card-anim:nth-child(3) { transition-delay: 0.4s; }

.stagger-children.visible .value-card-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Spin-In */
.value-icon-anim {
    opacity: 0;
    transform: scale(0.3) rotate(-90deg);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card-anim:nth-child(1) .value-icon-anim { transition-delay: 0.3s; }
.value-card-anim:nth-child(2) .value-icon-anim { transition-delay: 0.5s; }
.value-card-anim:nth-child(3) .value-icon-anim { transition-delay: 0.7s; }

.stagger-children.visible .value-icon-anim {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Bottom line reveal */
.value-line {
    height: 3px;
    background: linear-gradient(90deg, var(--chemirex-primary, #FF5E14), var(--crx-lime, #FBBD06));
    margin-top: 28px;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-card-anim:nth-child(1) .value-line { transition-delay: 0.5s; }
.value-card-anim:nth-child(2) .value-line { transition-delay: 0.7s; }
.value-card-anim:nth-child(3) .value-line { transition-delay: 0.9s; }

.stagger-children.visible .value-line {
    transform: scaleX(1);
}

/* --- Section 4: Global Integration (Dark Technical) --- */
.about-global {
    padding: 120px 0;
    background-color: var(--crx-black);
    position: relative;
    overflow: hidden;
}

.about-global .global-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.about-global .global-header {
    position: relative;
    z-index: 2;
}

.about-global .global-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--crx-lime);
    margin-bottom: 16px;
}

.about-global .global-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-global .global-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
}

.about-global .global-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 36px 28px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    height: 100%;
}

.about-global .global-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(251, 189, 6, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-global .global-card .card-icon {
    font-size: 1.8rem;
    color: var(--crx-lime);
    margin-bottom: 20px;
    display: block;
}

.about-global .global-card .card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.about-global .global-card .card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* --- Section 5: Testimonials --- */
.about-testimonials {
    padding: 120px 0;
    background: #fff;
}

.about-testimonials .testi-header-star {
    font-size: 0.9rem;
    color: #FFB800;
    letter-spacing: 2px;
}

.about-testimonials .testi-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.about-testimonials .testi-meta {
    font-size: 0.85rem;
    color: #999;
}

.about-testimonials .testi-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.about-testimonials .testi-nav-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.about-testimonials .testi-card {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-testimonials .testi-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.about-testimonials .testi-card .quote-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    opacity: 0.15;
}

.about-testimonials .testi-card .testi-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 28px;
}

.about-testimonials .testi-card .testi-company {
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-testimonials .testi-card .testi-role {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

.about-testimonials .testi-card .testi-rating {
    font-size: 0.75rem;
    color: #FFB800;
    margin-top: 8px;
}

/* --- Section 6: CTA Lime --- */
.about-cta-brand {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--chemirex-primary), #ff8c42);
    position: relative;
    overflow: hidden;
}

.about-cta-brand .cta-deco-1 {
    position: absolute;
    top: -40%;
    right: -5%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.about-cta-brand .cta-deco-2 {
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    pointer-events: none;
}

.about-cta-brand .cta-inner {
    position: relative;
    z-index: 2;
}

.about-cta-brand .cta-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.about-cta-brand .cta-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 36px;
}

.about-cta-brand .btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #050505;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.about-cta-brand .btn-cta-dark:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* --- About Responsive --- */
@media (max-width: 991px) {
    .about-hero h1 {
        font-size: clamp(2.8rem, 10vw, 5rem);
    }
    .about-hero .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .about-hero .hero-stat {
        border-right: none;
        padding-left: 0;
        padding-right: 0;
    }
    .about-values .value-col {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 40px 24px;
    }
    .about-values .value-col:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .about-editorial,
    .about-values,
    .about-global,
    .about-testimonials {
        padding: 80px 0;
    }
    .about-cta-brand {
        padding: 72px 0;
    }
    .about-cta-brand .cta-title {
        font-size: 2.6rem;
    }
}

/* --- About Page Refresh --- */
.about-mini-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--chemirex-primary, #FF5E14);
}

.about-scroll-react {
    --about-scroll-y: 0px;
    transform: translate3d(0, var(--about-scroll-y), 0);
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.about-flow {
    padding: 136px 0 140px;
    background: #fff;
}

.about-flow-head {
    display: block;
}

.about-flow-heading {
    position: relative;
    max-width: 1180px;
    padding-left: 28px;
}

.about-flow-heading::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #111;
}

.about-flow-side {
    width: min(100%, 720px);
    margin-top: 52px;
    margin-left: auto;
}

.about-flow-title {
    margin: 0;
    max-width: none;
    font-size: clamp(3.1rem, 5.05vw, 5.25rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.055em;
    color: #050505;
}

.about-flow-title span {
    display: block;
}

.about-flow-desc {
    margin: 0;
    max-width: 680px;
    font-size: 1.14rem;
    font-weight: 500;
    line-height: 1.88;
    color: #494949;
}

.about-flow-body {
    display: grid;
    gap: 12px;
    max-width: 680px;
    margin-top: 20px;
}

.about-flow-body p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.9;
    color: #5a5a5a;
}

.about-flow-visuals {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.44fr);
    gap: 24px;
    align-items: end;
    margin-top: 68px;
}

.about-flow-card {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #f5f4f1;
    border-radius: 34px;
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.06);
}

.about-flow-card::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 76px;
    height: 76px;
    background: #fff;
    border-top-left-radius: 26px;
}

.about-flow-card.is-left img {
    aspect-ratio: 0.92 / 1;
}

.about-flow-card.is-right img {
    aspect-ratio: 1.38 / 0.82;
}

.about-flow-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.about-story {
    padding: 120px 0 180px;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 82px;
    align-items: center;
}

.about-story-media {
    position: relative;
}

.about-story-main {
    margin: 0;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.08);
}

.about-story-main img {
    width: 100%;
    aspect-ratio: 0.92 / 1;
    object-fit: cover;
    object-position: 72% center;
    display: block;
}

.about-story-badge {
    position: absolute;
    right: -24px;
    bottom: 34px;
    display: grid;
    gap: 12px;
    width: min(100%, 260px);
    padding: 24px 24px 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.1);
}

.about-story-badge strong {
    font-size: 3.15rem;
    line-height: 0.9;
    font-weight: 900;
    color: #111;
}

.about-story-badge span {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #6d6d6d;
    font-weight: 700;
}

.about-story-badge ul {
    list-style: none;
    margin: 2px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.about-story-badge li {
    position: relative;
    padding-left: 14px;
    font-size: 0.9rem;
    color: #4e4e4e;
}

.about-story-badge li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--chemirex-primary, #FF5E14);
}

.about-story-title {
    margin: 0 0 18px;
    max-width: 14ch;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.04em;
    color: #111;
}

.about-story-lead {
    margin: 0;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #4f4f4f;
}

.about-story-body {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding-top: 22px;
}

.about-story-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: #5b5b5b;
}

.about-story-body strong {
    color: #111;
}

.about-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-story-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 176px;
    padding: 15px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 999px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.about-story-link:hover {
    background: #111;
    border-color: #111;
    color: #fff;
    transform: translateY(-2px);
}

.about-business {
    padding: 120px 0 180px;
    background: #fff;
}

.about-business-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    gap: 36px;
    align-items: end;
    margin-bottom: 44px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ece7df;
}

.about-business-title {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.35rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.04em;
    color: #111;
}

.about-business-desc {
    margin: 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.85;
    color: #666;
    justify-self: end;
}

.about-business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-business-card {
    overflow: hidden;
    border: 1px solid #ebe6de;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(17, 17, 17, 0.08);
}

.about-business-visual {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.about-business-card.tone-sts .about-business-visual {
    background: linear-gradient(135deg, #f6f6f6 0%, #f0ece6 100%);
}

.about-business-card.tone-organic .about-business-visual {
    background: linear-gradient(135deg, #f6f7f2 0%, #edf3e8 100%);
}

.about-business-card.tone-mineral .about-business-visual {
    background: linear-gradient(135deg, #f5f1eb 0%, #ece5dc 100%);
}

.about-business-card.tone-sourcing .about-business-visual {
    background: linear-gradient(135deg, #f3f5f8 0%, #e9eef6 100%);
}

.about-business-visual::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.about-business-visual img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-business-index {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 3;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(17, 17, 17, 0.48);
}

.about-business-body {
    padding: 28px 28px 30px;
}

.about-business-body h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
}

.about-business-body p {
    margin: 0;
    min-height: 5.8em;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #5f5f5f;
}

.about-business-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #111;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
}

.about-business-link:hover {
    color: var(--chemirex-primary, #FF5E14);
}

.about-principles {
    padding: 120px 0 180px;
    background: #fff;
}

.about-business + .about-principles {
    padding-top: 140px;
}

.about-principles-wrap {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 78px;
    align-items: start;
}

.about-principles-side {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.about-principles-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(17, 17, 17, 0.08);
}

.about-principles-photo img {
    width: 100%;
    aspect-ratio: 0.9 / 1;
    object-fit: cover;
    display: block;
}

.about-principles-highlight {
    padding: 24px 24px 22px;
    border-radius: 26px;
    background: #f7f3ec;
}

.about-principles-highlight p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #545454;
}

.about-principles-head {
    margin-bottom: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid #111;
}

.about-principles-title {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.04em;
    color: #111;
}

.about-principles-desc {
    margin: 18px 0 0;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.85;
    color: #666;
}

.about-principles-list {
    border-top: none;
}

.about-principle-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 34px 0 36px;
    border-bottom: 1px solid #ece7df;
}

.about-principle-index {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--chemirex-primary, #FF5E14);
}

.about-principle-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 2.3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #111;
}

.about-principle-copy p {
    margin: 0;
    max-width: 940px;
    font-size: 1rem;
    line-height: 1.95;
    color: #5b5b5b;
}

.about-promise {
    padding: 0 0 120px;
    background: #fff;
}

.about-promise-box {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: center;
    border: 1px solid #ebe7dd;
    border-radius: 32px;
    background: linear-gradient(180deg, #faf8f4 0%, #f7f2ea 100%);
    padding: 44px 48px;
}

.about-promise-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-promise-copy h2 {
    margin: 0 0 14px;
    max-width: 14ch;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #111;
}

.about-promise-copy p {
    margin: 0;
    max-width: 560px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: #606060;
}

.about-promise-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-promise-summary {
    display: grid;
    gap: 14px;
}

.about-promise-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.about-promise-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-promise-item h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    font-weight: 800;
    color: #111;
}

.about-promise-item p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
    color: #616161;
}

.about-promise-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    padding: 16px 28px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-promise-link.is-secondary {
    background: transparent;
    border: 1px solid #d7cfc1;
    color: #111;
}

.about-promise-link:hover {
    background: var(--chemirex-primary, #FF5E14);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 94, 20, 0.18);
}

.about-promise-link.is-secondary:hover {
    border-color: var(--chemirex-primary, #FF5E14);
}

@media (max-width: 1199px) {
    .about-flow-head,
    .about-story-grid,
    .about-principles-wrap {
        gap: 44px;
    }

    .about-business-head {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-business-desc {
        justify-self: start;
    }

    .about-business-grid {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .about-flow { padding: 108px 0 64px; }
    .about-story,
    .about-business,
    .about-principles {
        padding-top: 56px;
        padding-bottom: 120px;
    }

    .about-business {
        padding-bottom: 132px;
    }

    .about-business + .about-principles {
        padding-top: 84px;
    }

    .about-flow-head,
    .about-story-grid,
    .about-business-grid,
    .about-principles-wrap,
    .about-promise-box {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-flow-side {
        padding-bottom: 0;
    }

    .about-story-badge {
        right: 20px;
        bottom: 20px;
    }

    .about-principles-side {
        position: static;
    }

    .about-principle-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-principle-index {
        padding-top: 0;
    }

    .about-promise-link {
        width: auto;
    }

    .about-promise-box {
        padding: 34px 32px;
    }
}

@media (max-width: 767px) {
    .about-flow {
        padding: 96px 0 56px;
    }

    .about-story,
    .about-business,
    .about-principles {
        padding-top: 42px;
        padding-bottom: 104px;
    }

    .about-business {
        padding-bottom: 116px;
    }

    .about-business + .about-principles {
        padding-top: 68px;
    }

    .about-promise {
        padding-bottom: 88px;
    }

    .about-flow-title,
    .about-story-title,
    .about-business-title,
    .about-principles-title,
    .about-promise-copy h2 {
        max-width: none;
    }

    .about-flow-title {
        font-size: clamp(2.2rem, 11vw, 3.35rem);
        line-height: 1.2;
    }

    .about-flow-heading {
        padding-left: 22px;
    }

    .about-flow-heading::before {
        top: 13px;
        width: 10px;
        height: 10px;
    }

    .about-flow-side {
        width: 100%;
        margin-top: 30px;
    }

    .about-flow-visuals {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 36px;
    }

    .about-flow-card {
        border-radius: 28px;
    }

    .about-flow-card::after {
        width: 58px;
        height: 58px;
        border-top-left-radius: 20px;
    }

    .about-story-badge {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .about-story-main {
        border-radius: 28px;
    }

    .about-business-visual {
        min-height: 210px;
    }

    .about-business-body {
        padding: 24px 22px 26px;
    }

    .about-business-body p {
        min-height: 0;
    }

    .about-principles-photo,
    .about-promise-box {
        border-radius: 26px;
    }

    .about-promise-box {
        padding: 28px 22px;
    }

    .about-promise-actions {
        flex-direction: column;
    }

    .about-promise-link {
        width: 100%;
    }

    .about-promise-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 18px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-scroll-react {
        transform: none !important;
        transition: none !important;
    }
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 15px !important;
        text-align: left !important;
        left: 0 !important;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -5px;
        right: auto;
    }
    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .sub-section {
        padding: 60px 0;
    }
    .section-heading {
        font-size: 1.6rem;
    }
    .map-container iframe,
    .map-container #google-map {
        height: 350px;
    }
    .ceo-quote {
        font-size: 1rem;
    }
}

/* --- History Timeline (protiumscience style) --- */
.htl-section {
    padding: clamp(96px, 10vw, 136px) 0 clamp(120px, 11vw, 168px);
    background: #fff;
}

.htl-header {
    max-width: 760px;
    margin-bottom: clamp(64px, 7vw, 120px);
}

.htl-title {
    font-size: clamp(2.75rem, 4.4vw, 3.125rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: #111;
    margin: 0 0 28px;
}

.htl-desc {
    font-size: clamp(1.875rem, 3.4vw, 2.5rem);
    font-weight: 700;
    color: #111;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 760px;
}

/* Timeline container with vertical line */
.htl-timeline {
    position: relative;
    padding-left: 52px;
}

.htl-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(244, 120, 64, 0.55) 0%, rgba(244, 120, 64, 0.22) 100%);
}

/* Era block */
.htl-era {
    position: relative;
    padding-bottom: clamp(72px, 8vw, 120px);
}

.htl-era:last-child {
    padding-bottom: 0;
}

/* Dot */
.htl-dot {
    position: absolute;
    left: -52px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: var(--chemirex-primary);
    box-shadow: 0 0 0 6px #fff;
    z-index: 1;
}

.htl-era:first-child .htl-dot {
    background: var(--chemirex-primary);
}

/* Year */
.htl-year {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
    line-height: 1;
    margin: 0 0 24px;
}

.htl-era-title {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin: 0 0 36px;
}

/* Items list */
.htl-items {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 720px;
}

.htl-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 0 0 18px;
    margin-bottom: 18px;
}

.htl-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.htl-item-yr {
    flex-shrink: 0;
    width: 56px;
    font-size: clamp(1rem, 1.35vw, 1.375rem);
    font-weight: 800;
    line-height: 1.45;
    color: #111;
}

.htl-item-txt {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.035em;
}

/* Image */
.htl-img {
    border-radius: 24px;
    overflow: hidden;
    margin-top: 18px;
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
}

.htl-img img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .htl-section { padding: 80px 0 110px; }
    .htl-header { margin-bottom: 56px; }
    .htl-timeline { padding-left: 38px; }
    .htl-dot { left: -38px; top: 12px; width: 10px; height: 10px; box-shadow: 0 0 0 5px #fff; }
    .htl-year { margin-bottom: 18px; }
    .htl-era-title { margin-bottom: 24px; }
    .htl-era { padding-bottom: 72px; }
}

@media (max-width: 576px) {
    .htl-section { padding: 60px 0 88px; }
    .htl-header { margin-bottom: 40px; }
    .htl-title { font-size: 2.2rem; margin-bottom: 20px; }
    .htl-desc { font-size: 1.5rem; line-height: 1.5; }
    .htl-timeline { padding-left: 28px; }
    .htl-timeline::before { left: 4px; }
    .htl-dot { left: -28px; top: 10px; width: 8px; height: 8px; box-shadow: 0 0 0 4px #fff; }
    .htl-year { font-size: 2.6rem; margin-bottom: 14px; }
    .htl-era-title { font-size: 0.95rem; margin-bottom: 20px; }
    .htl-item { gap: 14px; padding-bottom: 14px; margin-bottom: 14px; }
    .htl-item-yr { width: 40px; font-size: 0.95rem; }
    .htl-item-txt { font-size: 0.96rem; line-height: 1.7; letter-spacing: -0.02em; }
    .htl-img { border-radius: 18px; margin-top: 0; }
}

/* =============================================
   Location Page - Clean Editorial
   ============================================= */
.loc-section {
    padding: 80px 0;
}

.loc-section-alt {
    background: #f8f9fa;
}

.loc-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--chemirex-primary);
    margin-bottom: 8px;
}

.loc-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 32px;
}

.loc-info dl {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.loc-info dl:first-child {
    padding-top: 0;
}

.loc-info dl:last-child {
    border-bottom: none;
}

.loc-info dt {
    min-width: 64px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-top: 2px;
}

.loc-info dd {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

.loc-info dd a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.loc-info dd a:hover {
    color: var(--chemirex-primary);
}

.loc-transport {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.loc-transport h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.loc-transport ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-transport ul li {
    position: relative;
    padding: 6px 0 6px 16px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.loc-transport ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--chemirex-primary);
}

.loc-map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 420px;
}

.loc-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

.loc-branch-card {
    background: #fff;
    border-radius: 1rem;
    padding: 36px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.loc-branch-card .loc-label {
    margin-bottom: 4px;
}

.loc-branch-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.loc-branch-card dl {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.loc-branch-card dl:last-child {
    border-bottom: none;
}

.loc-branch-card dt {
    min-width: 48px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-top: 2px;
}

.loc-branch-card dd {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

.loc-branch-card dd a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.loc-branch-card dd a:hover {
    color: var(--chemirex-primary);
}

.branch-network-section {
    padding: 120px 0 80px;
    background: #fff;
}

.branch-network-head,
.branch-gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 48px;
}

.branch-network-title,
.branch-gallery-title,
.branch-map-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.1rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.04em;
    color: #111;
}

.branch-network-desc,
.branch-gallery-desc,
.branch-map-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.85;
    color: #666;
}

.branch-network-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.branch-network-card {
    padding: 36px 32px;
    border: 1px solid #ebe6de;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.05);
}

.branch-network-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chemirex-primary);
}

.branch-network-card h3 {
    margin: 0 0 12px;
    font-size: 1.24rem;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
}

.branch-network-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #666;
}

.branch-office-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.branch-office-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #ebe6de;
    background: #fff;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
}

.branch-office-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.branch-office-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.branch-office-card:hover .branch-office-media img {
    transform: scale(1.05);
}

.branch-office-badge,
.branch-office-country {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.branch-office-badge {
    top: 18px;
    left: 18px;
    padding: 7px 14px;
    background: rgba(17, 17, 17, 0.72);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #fff;
}

.branch-office-country {
    right: 18px;
    bottom: 18px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #111;
}

.branch-office-body {
    padding: 28px 28px 32px;
}

.branch-office-head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 20px;
}

.branch-office-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f6f3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chemirex-primary);
    font-size: 1.35rem;
}

.branch-office-role {
    margin: 0 0 8px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #666;
}

.branch-office-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.32;
    color: #111;
}

.branch-office-info {
    display: grid;
    gap: 12px;
}

.branch-office-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    font-size: 0.96rem;
    line-height: 1.75;
    color: #555;
}

.branch-office-item i {
    margin-top: 3px;
    color: var(--chemirex-primary);
}

.branch-office-item a {
    color: inherit;
    text-decoration: none;
}

.branch-office-item a:hover {
    color: var(--chemirex-primary);
}

.branch-office-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.branch-office-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f6f3ee;
    font-size: 0.78rem;
    font-weight: 700;
    color: #555;
}

.branch-map-section {
    padding: 80px 0 120px;
    background: #fff;
}

.branch-map-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.branch-map-panel {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    border: 1px solid #ebe6de;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
}

.branch-map-block + .branch-map-block {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #ece5dc;
}

.branch-map-label {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--chemirex-primary);
}

.branch-map-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.18rem;
    font-weight: 800;
    color: #111;
}

.branch-map-block p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #666;
}

.branch-map-list,
.branch-map-guide {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-map-list {
    display: grid;
    gap: 10px;
}

.branch-map-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0ebe4;
    font-size: 0.95rem;
    color: #555;
}

.branch-map-list li:last-child {
    border-bottom: none;
}

.branch-map-list li span:first-child {
    color: #999;
    font-weight: 700;
}

.branch-map-list a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}

.branch-map-list a:hover {
    color: var(--chemirex-primary);
}

.branch-map-guide {
    display: grid;
    gap: 10px;
}

.branch-map-guide li {
    position: relative;
    padding-left: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

.branch-map-guide li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--chemirex-primary);
}

.branch-map-embed {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid #ebe6de;
    box-shadow: 0 20px 42px rgba(17, 17, 17, 0.08);
    min-height: 100%;
}

.branch-map-embed iframe {
    width: 100%;
    min-height: 560px;
    border: 0;
    display: block;
}

.branch-gallery-section {
    padding: 80px 0 160px;
    background: #fff;
}

.branch-gallery-card {
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #ebe6de;
    background: #fff;
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.05);
}

.branch-gallery-media {
    overflow: hidden;
    aspect-ratio: 1.32 / 1;
}

.branch-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.branch-gallery-card:hover .branch-gallery-media img {
    transform: scale(1.04);
}

.branch-gallery-body {
    padding: 24px 24px 28px;
}

.branch-gallery-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f6f3ee;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--chemirex-primary);
}

.branch-gallery-body h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.38;
    color: #111;
}

.branch-gallery-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

@media (max-width: 991px) {
    .branch-network-head,
    .branch-gallery-head {
        grid-template-columns: 1fr;
    }

    .branch-network-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .branch-office-grid,
    .branch-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .loc-section {
        padding: 48px 0;
    }
    .loc-title {
        font-size: 1.5rem;
    }
    .loc-branch-title {
        font-size: 1.3rem;
    }
    .loc-map {
        min-height: 300px;
        margin-top: 24px;
    }
    .loc-map iframe {
        min-height: 300px;
    }

    .branch-network-section {
        padding: 56px 0 24px;
    }

    .branch-network-head,
    .branch-gallery-head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .branch-network-grid,
    .branch-office-grid {
        grid-template-columns: 1fr;
    }

    .branch-map-section {
        padding: 8px 0 64px;
    }

    .branch-map-grid {
        grid-template-columns: 1fr;
    }

    .branch-map-panel {
        padding: 24px 22px;
    }

    .branch-map-list li {
        flex-direction: column;
        gap: 6px;
    }

    .branch-map-embed iframe {
        min-height: 340px;
    }

    .branch-gallery-section {
        padding: 0 0 96px;
    }

    .branch-office-media {
        height: 210px;
    }
}

/* =============================================
   History Page - Dark Editorial (graysc style)
   ============================================= */
.hist-dark {
    background: #050505;
    padding: 0 0 100px;
    min-height: 100vh;
}

.hist-hero {
    padding: 40px 0 80px;
}

.hist-hero-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
}

/* 각 연도 행 */
.hist-rows {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hist-row {
    display: grid;
    grid-template-columns: 100px 1fr 1.2fr 48px;
    gap: 24px;
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hist-row-year {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 8px;
}

.hist-row-subtitle {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: var(--text-lg);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.5px;
    padding-top: 2px;
}

.hist-row-details p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.hist-row-details p:last-child {
    margin-bottom: 0;
}

.hist-row-arrow {
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 8px;
}

.hist-row-arrow i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.hist-row:hover .hist-row-arrow i {
    color: var(--chemirex-primary);
}

/* Era header row */
.hist-row-era {
    border-bottom: 2px solid var(--chemirex-primary);
    padding: 32px 0 24px;
}
.hist-row-era .hist-row-year {
    color: var(--chemirex-primary);
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}
.hist-row-era .hist-row-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

/* Item row - text in details column, smaller */
.hist-row-item {
    padding: 28px 0;
}
.hist-row-item .hist-row-subtitle {
    display: none;
}
.hist-row-item .hist-row-details {
    grid-column: 2 / 4;
}
.hist-row-item .hist-row-details p {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hist-admin {
    margin-top: 48px;
    text-align: right;
}

.hist-admin a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.hist-admin a:hover {
    color: var(--chemirex-primary);
}

@media (max-width: 991px) {
    .hist-row {
        grid-template-columns: 80px 1fr 48px;
        gap: 16px;
    }
    .hist-row-details {
        grid-column: 1 / -1;
        padding-left: 80px;
        margin-top: -8px;
    }
}

@media (max-width: 767px) {
    .hist-dark {
        padding: 0 0 60px;
    }
    .hist-hero {
        padding: 24px 0 48px;
    }
    .hist-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 32px 0;
    }
    .hist-row-year {
        font-size: 0.85rem;
        padding-top: 0;
    }
    .hist-row-subtitle {
        font-size: 1.3rem;
        padding-top: 0;
    }
    .hist-row-details {
        padding-left: 0;
        margin-top: 8px;
    }
    .hist-row-arrow {
        display: none;
    }
}

/* =============================================
   Product Page - kigistec.com Style Redesign
   ============================================= */

/* ---- Product Hero ---- */
.product-hero {
    background: #050505;
    padding: 40px 0 50px;
}
.product-hero-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.product-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.product-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ---- Product Section ---- */
.product-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

/* ---- Filter Bar (Top) ---- */
.product-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.product-cate-tabs {
    display: flex;
    gap: 6px;
}
.product-cate-tab {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.product-cate-tab:hover {
    border-color: var(--chemirex-primary, #FF5E14);
    color: var(--chemirex-primary, #FF5E14);
}
.product-cate-tab.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ---- Search Bar ---- */
.product-search-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    max-width: 480px;
}
.product-search-bar input[type="text"] {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}
.product-search-bar input[type="text"]:focus {
    border-color: var(--chemirex-primary, #FF5E14);
}
.product-search-bar .btn-search {
    padding: 10px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.product-search-bar .btn-search:hover {
    background: var(--chemirex-primary, #FF5E14);
}
.product-search-bar .btn-reset {
    padding: 10px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-search-bar .btn-reset:hover {
    background: #e0e0e0;
}

/* ---- Mobile Filter ---- */
@media (max-width: 991px) {
    .product-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .product-cate-tabs {
        flex-wrap: wrap;
    }
    .product-cate-tab {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .product-search-bar {
        max-width: none;
    }
    .product-search-bar input[type="text"] {
        flex: 1 1 auto;
    }
}

/* =============================================
   Business Division Components — Clean Light Theme
   ============================================= */

/* --- Tab Bar --- */
.biz-tab-bar {
    position: sticky;
    top: 64px;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease;
}

.biz-tab-bar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.biz-tab-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.biz-tab-list li {
    flex: 1;
}

.biz-tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 16px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.biz-tab-link:hover {
    color: #333;
    text-decoration: none;
}

.biz-tab-link.active {
    color: var(--chemirex-primary);
    border-bottom-color: var(--chemirex-primary);
    font-weight: 600;
}

.biz-tab-link i {
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.biz-hero {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.biz-hero::before {
    content: '';
    position: absolute;
    top: 48px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0) 72%);
    pointer-events: none;
}

.biz-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.biz-hero-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.biz-hero-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.biz-hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--chemirex-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.biz-hero-content {
    padding: 0;
}

.biz-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--chemirex-primary);
    margin-bottom: 16px;
}

.biz-hero-title {
    font-size: clamp(2rem, 3.35vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.biz-hero-desc {
    font-size: 1.12rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

.biz-hero-desc strong {
    color: #222;
    font-weight: 700;
}

.biz-hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.biz-hero-points li {
    padding: 6px 0;
    font-size: 1.01rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.7;
}

.biz-hero-points li i {
    color: var(--chemirex-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.biz-hero-points li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--chemirex-primary);
    border-radius: 50%;
}

.biz-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.biz-btn-outline,
.biz-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--chemirex-primary);
    color: var(--chemirex-primary);
    background: transparent;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.biz-btn-outline:hover,
.biz-btn-primary:hover {
    background: var(--chemirex-primary);
    color: #fff;
    text-decoration: none;
}

.biz-btn-ghost,
.biz-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid #ddd;
    color: #555;
    background: transparent;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.biz-btn-ghost:hover,
.biz-btn-secondary:hover {
    border-color: #999;
    color: #222;
    text-decoration: none;
}

/* --- Stats Strip (Dark Accent) --- */
.biz-stats-strip {
    background: #111;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.biz-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255, 94, 20, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
    pointer-events: none;
}

.biz-stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.biz-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.biz-stat-item {
    min-height: 152px;
    text-align: center;
    position: relative;
    padding: 30px 20px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.biz-stat-item::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    width: 52px;
    height: 3px;
    background: var(--chemirex-primary);
    border-radius: 999px;
}

.biz-stat-item + .biz-stat-item::before {
    display: none;
}

.biz-stat-item:not(:last-child)::after {
    display: block;
}

.biz-stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.biz-stat-num span {
    font-size: 0.55em;
    font-weight: 700;
    color: var(--chemirex-primary);
    margin-left: 2px;
}

.biz-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.55;
}

.biz-metrics-section {
    padding: 78px 0 84px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.biz-metrics-section::before {
    content: "";
    position: absolute;
    top: 46px;
    left: -96px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0) 72%);
    pointer-events: none;
}

.biz-metrics-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 40px 64px;
    align-items: end;
    margin-bottom: 42px;
}

.biz-metrics-head .biz-section-title {
    margin-bottom: 0;
    text-align: left;
    max-width: none;
    word-break: keep-all;
}

.biz-metrics-side {
    display: grid;
    justify-items: start;
    gap: 24px;
}

.biz-metrics-side .biz-section-desc {
    margin: 0;
}

.biz-metrics-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(148px, auto);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.biz-metric-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 204px;
    padding: 32px 28px 26px;
    border: 1px solid #ebe7dd;
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.04);
}

.biz-metric-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.biz-metric-card.is-tall {
    min-height: 426px;
}

.biz-metric-card:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
}

.biz-metric-card:nth-child(2) {
    grid-column: span 3;
    grid-row: span 2;
}

.biz-metric-card:nth-child(3) {
    grid-column: 7 / span 3;
    grid-row: 1 / span 1;
}

.biz-metric-card:nth-child(4) {
    grid-column: 7 / span 3;
    grid-row: 2 / span 1;
}

.biz-metric-card:nth-child(5) {
    grid-column: 10 / span 3;
    grid-row: 1 / span 2;
}

.biz-metric-body {
    display: grid;
    gap: 14px;
}

.biz-metric-value,
.biz-metric-kicker {
    display: block;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.biz-metric-value span,
.biz-metric-kicker span {
    font-size: 0.48em;
    font-weight: 700;
    margin-left: 2px;
}

.biz-metric-value-ghost {
    margin-top: auto;
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
    opacity: 0.14;
}

.biz-metric-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #3a4351;
}

.biz-metric-title {
    margin: 0;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: -0.03em;
    color: #161616;
}

.biz-metric-desc {
    margin: 0;
    max-width: 28ch;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #5f5f5f;
}

.biz-metric-arrow {
    display: none;
}

.biz-metric-point {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    margin-bottom: 8px;
}

.biz-metric-card.tone-dark .biz-metric-point {
    color: rgba(255,255,255,0.4);
}

.biz-metric-card.tone-aqua {
    color: #161616;
}

.biz-metric-card.tone-aqua::before {
    background:
        radial-gradient(circle at 20% 18%, rgba(85, 196, 193, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f2fbfb 100%);
}

.biz-metric-card.tone-violet {
    color: #161616;
}

.biz-metric-card.tone-violet::before {
    background:
        radial-gradient(circle at 48% 88%, rgba(125, 98, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%);
}

.biz-metric-card.tone-light {
    color: #171717;
}

.biz-metric-card.tone-light::before {
    background:
        radial-gradient(circle at 86% 18%, rgba(229,229,229,0.75) 0%, rgba(229,229,229,0.16) 34%, transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f4 100%);
}

.biz-metric-card.tone-dark {
    color: #fff;
    border-color: #1c2027;
}

.biz-metric-card.tone-dark::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
        linear-gradient(160deg, #232327 0%, #141417 100%);
}

.biz-metric-card.tone-dark .biz-metric-title,
.biz-metric-card.tone-dark .biz-metric-kicker {
    color: #fff;
}

.biz-metric-card.tone-dark .biz-metric-desc {
    color: rgba(255, 255, 255, 0.72);
}

.biz-metric-card.tone-steel {
    color: #161616;
}

.biz-metric-card.tone-steel::before {
    background:
        radial-gradient(circle at 80% 18%, rgba(105, 121, 140, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f1f4f7 100%);
}

.biz-metric-card.tone-aqua .biz-metric-arrow,
.biz-metric-card.tone-violet .biz-metric-arrow,
.biz-metric-card.tone-light .biz-metric-arrow,
.biz-metric-card.tone-steel .biz-metric-arrow {
    background: #111;
    color: #fff;
}

.biz-metric-card.tone-dark .biz-metric-arrow {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.biz-metric-card.tone-aqua .biz-metric-value {
    color: #1496a0;
}

.biz-metric-card.tone-violet .biz-metric-value-ghost {
    color: #7d62ff;
}

.biz-metric-card.tone-light .biz-metric-kicker,
.biz-metric-card.tone-dark .biz-metric-kicker,
.biz-metric-card.tone-steel .biz-metric-title {
    color: inherit;
}

/* --- Product/Service Section --- */
.biz-section,
.biz-products-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.biz-section-white {
    background: #fff;
}

.biz-products-section::before,
.biz-extra-section::before,
.biz-strengths-section::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.biz-products-section::before {
    top: 56px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.08) 0%, rgba(255, 94, 20, 0) 72%);
}

.biz-extra-section::before {
    top: 40px;
    left: -110px;
    background: radial-gradient(circle, rgba(20, 78, 140, 0.08) 0%, rgba(20, 78, 140, 0) 74%);
}

.biz-strengths-section::before {
    bottom: 32px;
    right: -90px;
    background: radial-gradient(circle, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 72%);
}

.biz-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.biz-products-section .biz-section-header {
    max-width: none;
    margin: 0 0 56px;
    text-align: left;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.biz-section-label,
.biz-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--chemirex-primary);
    margin-bottom: 12px;
    display: inline-block;
}

.biz-section-title {
    font-size: clamp(1.7rem, 2.7vw, 2.25rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.biz-section-desc {
    font-size: 1.03rem;
    color: #777;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

.biz-products-section .biz-section-desc {
    margin: 0;
    max-width: 720px;
}

/* --- Cards --- */
.biz-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(17, 17, 17, 0.05);
}

.biz-card::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -24px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.12) 0%, rgba(255, 94, 20, 0) 68%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    opacity: 0.8;
    pointer-events: none;
}

.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.biz-card:hover::before {
    transform: scale(1.12);
    opacity: 1;
}

.biz-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.biz-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.biz-card-icon i {
    font-size: 1.4rem;
    color: var(--chemirex-primary);
}

.biz-card-title {
    font-size: 1.14rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.4;
}

.biz-card-grade {
    font-size: 0.84rem;
    color: var(--chemirex-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.biz-card-desc {
    font-size: 0.96rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 16px;
}

.biz-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.biz-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.biz-card-meta i {
    font-size: 0.9rem;
}

.biz-card-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 0.82rem;
    color: #777;
}

.biz-card-grid {
    position: relative;
    z-index: 1;
}

.biz-slider-shell {
    position: relative;
    z-index: 1;
}

.biz-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.biz-slider-note {
    margin: 0;
    font-size: 0.94rem;
    color: #666;
    line-height: 1.6;
}

.biz-slider-controls {
    display: inline-flex;
    gap: 8px;
    flex-shrink: 0;
}

.biz-slider-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.biz-slider-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: var(--chemirex-primary);
    color: var(--chemirex-primary);
}

.biz-slider-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.biz-slider-shell.is-static .biz-slider-controls {
    display: none;
}

.biz-card-slider {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 8px;
}

.biz-card-slider::-webkit-scrollbar {
    display: none;
}

.biz-card-slider > [class*="col-"] {
    flex: 0 0 min(420px, calc(100vw - 120px));
    max-width: min(420px, calc(100vw - 120px));
    width: min(420px, calc(100vw - 120px));
    padding-left: 0;
    padding-right: 0;
    scroll-snap-align: start;
    margin-top: 0 !important;
}

.biz-card-slider > [class*="col-"] + [class*="col-"] {
    margin-left: 24px;
}

.biz-products-section-case .biz-section-header {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 42px;
}

.biz-slider-shell-case .biz-slider-head {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.biz-slider-shell-case .biz-slider-note {
    max-width: 720px;
    color: #555;
}

.biz-card-slider-case > [class*="col-"] {
    flex: 0 0 min(500px, calc(100vw - 120px));
    max-width: min(500px, calc(100vw - 120px));
    width: min(500px, calc(100vw - 120px));
}

.biz-card-slider-case > [class*="col-"] + [class*="col-"] {
    margin-left: 28px;
}

.biz-card-slider-case > [class*="col-"] .biz-card {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-top: 0 !important;
    border-radius: 30px !important;
    padding: 0;
    box-shadow: 0 24px 56px rgba(17, 17, 17, 0.06);
}

.biz-card-slider-case > [class*="col-"] .biz-card::before {
    display: none;
}

.biz-card-slider-case > [class*="col-"] .biz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 66px rgba(17, 17, 17, 0.09);
}

.biz-card-case-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 30px 30px 0 0;
}

.biz-card-case-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.biz-card-case-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 17, 17, 0.06);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #555;
}

.biz-card-case-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.biz-card-case-icon {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 17, 17, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.biz-card-case-icon span {
    display: block;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #111;
}

.biz-card-case-index {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(17, 17, 17, 0.72);
}

.biz-card-case-body {
    padding: 28px 30px 30px;
}

.biz-card-case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.biz-card-case-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    color: #444;
}

.biz-card-case-pill.is-muted {
    color: #5b5b5b;
}

.biz-card-case-pill i {
    font-size: 0.9rem;
    color: var(--chemirex-primary);
}

.biz-card-case .biz-card-title {
    font-size: 1.46rem;
    margin-bottom: 14px;
}

.biz-card-case .biz-card-desc {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #5f5f5f;
}

.biz-card-case.tone-mist .biz-card-case-cover {
    background: #edf3f7;
}

.biz-card-case.tone-sand .biz-card-case-cover {
    background: #f5efe5;
}

.biz-card-case.tone-peach .biz-card-case-cover {
    background: #f7ece7;
}

.biz-card-case.tone-sage .biz-card-case-cover {
    background: #edf3ed;
}

.biz-card-case.tone-stone .biz-card-case-cover {
    background: #f1f2f4;
}

.biz-card-case.tone-earth .biz-card-case-cover {
    background: #f6ece4;
}

/* --- Accordion (Strengths) --- */
.biz-accordion-section,
.biz-strengths-section {
    padding: 100px 0;
    background: #fff;
}

.biz-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.biz-accordion-item {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.biz-accordion-item:first-child {
    border-top: 1px solid #eee;
}

.biz-accordion-header,
.biz-accordion-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.biz-accordion-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

.biz-accordion-icon i {
    font-size: 1.2rem;
    color: #888;
    transition: color 0.3s;
}

.biz-accordion-item.active .biz-accordion-icon {
    background: var(--chemirex-primary);
}

.biz-accordion-item.active .biz-accordion-icon i {
    color: #fff;
}

.biz-accordion-title {
    flex: 1;
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    line-height: 1.45;
}

.biz-accordion-arrow {
    font-size: 1.2rem;
    color: #bbb;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.biz-accordion-arrow i {
    font-size: 1rem;
    color: #bbb;
    transition: color 0.3s;
}

.biz-accordion-item.active .biz-accordion-arrow,
.biz-accordion-item.active .biz-accordion-arrow i {
    transform: rotate(180deg);
    color: var(--chemirex-primary);
}

.biz-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-accordion-item.active .biz-accordion-body {
    max-height: 300px;
}

.biz-accordion-body-inner,
.biz-accordion-content {
    padding: 0 0 24px 60px;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* --- CTA Box (Dark Accent) --- */
.biz-cta-section {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.biz-cta-box {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.biz-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,94,20,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.biz-cta-box::after {
    display: none;
}

.biz-cta-content {
    position: relative;
    z-index: 1;
}

.biz-cta-title {
    font-size: clamp(1.75rem, 2.9vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.biz-cta-desc {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.biz-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--chemirex-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.biz-cta-btn:hover {
    background: #e0520f;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* --- Additional Content Section (Supply Forms, Process, etc.) --- */
.biz-extra-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.biz-extra-section.bg-alt {
    background: #f8f9fa;
}

.biz-mini-card {
    background: #f8f9fa;
    border-radius: 22px;
    padding: 28px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.04);
}

.biz-forms-grid > [class*="col-"] {
    display: flex;
}

.biz-forms-grid .biz-mini-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.biz-mini-card::before,
.biz-info-card::before {
    content: '';
    position: absolute;
    inset: auto 22px 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--chemirex-primary), rgba(255, 94, 20, 0));
}

.biz-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.biz-mini-card i {
    font-size: 2rem;
    color: var(--chemirex-primary);
    display: block;
    margin-bottom: 12px;
}

.biz-mini-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    line-height: 1.45;
}

.biz-mini-card-desc {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.65;
    margin: 0;
    min-height: 3.3em;
}

/* Process Steps */
.biz-process-steps {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.biz-process-step {
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
    padding: 28px 18px 22px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.05);
    overflow: hidden;
}

.biz-process-step::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--chemirex-primary), rgba(255, 94, 20, 0));
}

.biz-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -25px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--chemirex-primary), transparent);
}

.biz-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    border: 2px solid #111;
}

.biz-step-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.45;
}

.biz-step-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* --- Regulatory / Info Grid --- */
.biz-info-card {
    background: #f8f9fa;
    border-radius: 22px;
    padding: 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 16px 42px rgba(17, 17, 17, 0.04);
}

.biz-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.biz-info-card i {
    font-size: 1.6rem;
    color: var(--chemirex-primary);
    display: block;
    margin-bottom: 12px;
}

.biz-info-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.45;
}

.biz-info-card-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

.biz-grid-stagger {
    position: relative;
    z-index: 1;
}

.biz-grid-stagger.biz-ani > [class*="col-"] > * {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(1) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.05s; }
.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(2) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.13s; }
.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(3) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.21s; }
.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(4) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.29s; }
.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(5) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.37s; }
.biz-grid-stagger.biz-ani.in-view > [class*="col-"]:nth-child(6) > * { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 991px) {
    .biz-tab-list {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 16px;
    }
    .biz-tab-link {
        padding: 14px 12px;
        font-size: 0.82rem;
    }
    .biz-tab-link i { display: none; }
    .biz-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .biz-hero { padding: 60px 0; }
    .biz-hero-img-wrap img { height: 280px; }
    .biz-stats-inner,
    .biz-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
    .biz-stat-item + .biz-stat-item::before { display: none; }
    .biz-stat-item { min-width: 120px; }
    .biz-section,
    .biz-products-section { padding: 60px 0; }
    .biz-accordion-section,
    .biz-strengths-section { padding: 60px 0; }
    .biz-cta-box { padding: 60px 0; }
    .biz-extra-section { padding: 60px 0; }
    .biz-metrics-section { padding: 64px 0 60px; }
    .biz-accordion-content,
    .biz-accordion-body-inner { padding-left: 28px; }
    .biz-process-step:not(:last-child)::after { display: none; }
    .biz-hero-content { padding: 24px 0 0; }
    .biz-products-section .biz-section-header { margin-bottom: 42px; }
    .biz-metrics-head,
    .biz-metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .biz-metric-card,
    .biz-metric-card.is-tall,
    .biz-metric-card:nth-child(1),
    .biz-metric-card:nth-child(2),
    .biz-metric-card:nth-child(3),
    .biz-metric-card:nth-child(4),
    .biz-metric-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }
    .biz-metrics-head .biz-section-title {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .biz-tab-bar { top: 64px; }
    .biz-hero { padding: 40px 0; }
    .biz-hero-title { font-size: 1.8rem; }
    .biz-hero-desc { font-size: 1rem; }
    .biz-hero-points li { font-size: 0.96rem; }
    .biz-hero-img-wrap img { height: 220px; }
    .biz-accordion-body-inner,
    .biz-accordion-content { padding-left: 0; }
    .biz-section,
    .biz-products-section { padding: 48px 0; }
    .biz-metrics-section { padding: 52px 0 48px; }
    .biz-section-header { margin-bottom: 36px; }
    .biz-card { padding: 24px; }
    .biz-section-title { font-size: 1.52rem; }
    .biz-section-desc { font-size: 0.97rem; }
    .biz-metrics-side { gap: 18px; }
    .biz-metric-card,
    .biz-metric-card.is-tall {
        min-height: 208px;
        padding: 24px 22px 22px;
        border-radius: 24px;
    }
    .biz-metric-title { font-size: 1.18rem; }
    .biz-metric-desc { font-size: 0.92rem; }
    .biz-metric-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .biz-tab-link {
        padding: 12px 16px;
        font-size: 0.82rem;
        gap: 5px;
    }
    .biz-tab-link i { font-size: 0.95rem; }
    .biz-accordion-trigger { padding: 18px 20px; gap: 12px; }
    .biz-accordion-icon { width: 38px; height: 38px; }
    .biz-stat-num { font-size: 1.95rem; }
    .biz-stat-label { font-size: 0.84rem; }
    .biz-card-title { font-size: 1.05rem; }
    .biz-card-desc,
    .biz-accordion-content,
    .biz-mini-card-desc,
    .biz-info-card-desc,
    .biz-step-desc,
    .biz-cta-desc { font-size: 0.92rem; }
    .biz-cta-title { font-size: 1.6rem; }
    .biz-stats-grid { flex-direction: column; gap: 20px; }
    .biz-stats-grid { grid-template-columns: 1fr; }
    .biz-stat-item { min-height: auto; }
    .biz-products-section .biz-section-header {
        padding-bottom: 20px;
        margin-bottom: 36px;
    }
    .biz-slider-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .biz-card-slider > [class*="col-"] {
        flex-basis: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        width: calc(100vw - 56px);
    }
    .biz-card-slider > [class*="col-"] + [class*="col-"] {
        margin-left: 16px;
    }
    .biz-card-slider-case > [class*="col-"] {
        flex-basis: calc(100vw - 56px);
        max-width: calc(100vw - 56px);
        width: calc(100vw - 56px);
    }
    .biz-card-slider-case > [class*="col-"] + [class*="col-"] {
        margin-left: 16px;
    }
    .biz-card-case-cover {
        aspect-ratio: 4 / 3;
        padding: 24px;
    }
    .biz-card-case-body {
        padding: 24px;
    }
    .biz-card-case-icon {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }
    .biz-card-case-icon span {
        font-size: 0.98rem;
    }
    .biz-card-case .biz-card-title {
        font-size: 1.24rem;
    }
    .biz-card-case .biz-card-desc {
        font-size: 0.93rem;
    }
}

@media (min-width: 992px) {
    .biz-stats-grid .biz-stat-item:nth-child(2n) {
        margin-top: 26px;
    }

    .biz-card-grid > [class*="col-"]:nth-child(3n + 2),
    .biz-grid-stagger > [class*="col-"]:nth-child(even) {
        margin-top: 34px;
    }

    .biz-strengths-section .col-lg-5.biz-ani-left {
        position: sticky;
        top: 138px;
        align-self: flex-start;
    }

    .biz-strengths-section .biz-accordion {
        padding: 8px 28px;
        background: rgba(255,255,255,0.86);
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 26px;
        box-shadow: 0 28px 64px rgba(17, 17, 17, 0.06);
    }

    .biz-strengths-section .biz-accordion-item:first-child {
        border-top: none;
    }
}

/* Animation polish: stagger for card grid */
.biz-card-grid .col-lg-4:nth-child(1) .biz-card { transition-delay: 0.05s; }
.biz-card-grid .col-lg-4:nth-child(2) .biz-card { transition-delay: 0.1s; }
.biz-card-grid .col-lg-4:nth-child(3) .biz-card { transition-delay: 0.15s; }
.biz-card-grid .col-lg-4:nth-child(4) .biz-card { transition-delay: 0.2s; }
.biz-card-grid .col-lg-4:nth-child(5) .biz-card { transition-delay: 0.25s; }
.biz-card-grid .col-lg-4:nth-child(6) .biz-card { transition-delay: 0.3s; }

/* =============================================
   Business Page Enhanced Animations
   Inspired by protiumscience.com scroll reveal
   ============================================= */

/* Base animation class - elements start hidden */
.biz-ani {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-ani.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.biz-ani-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-ani-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.biz-ani-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-ani-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up reveal */
.biz-ani-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-ani-scale.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delay classes for sequential entrance */
.biz-delay-1 { transition-delay: 0.1s; }
.biz-delay-2 { transition-delay: 0.2s; }
.biz-delay-3 { transition-delay: 0.3s; }
.biz-delay-4 { transition-delay: 0.4s; }
.biz-delay-5 { transition-delay: 0.5s; }
.biz-delay-6 { transition-delay: 0.6s; }
.biz-delay-7 { transition-delay: 0.7s; }
.biz-delay-8 { transition-delay: 0.8s; }

/* SVG line draw animation */
@keyframes biz-line-draw {
    0% { stroke-dashoffset: 300; }
    100% { stroke-dashoffset: 0; }
}

.biz-line-draw {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.biz-line-draw.in-view {
    animation: biz-line-draw 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Parallax image effect */
.biz-parallax-img {
    overflow: hidden;
}

.biz-parallax-img img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Text reveal - clip from bottom */
.biz-text-reveal {
    overflow: hidden;
}

.biz-text-reveal > * {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-text-reveal.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

/* Horizontal line expand */
.biz-line-expand {
    position: relative;
}

.biz-line-expand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--chemirex-primary);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-line-expand.in-view::after {
    width: 100%;
}

/* Card entrance with stagger - for card grids */
.biz-cards-stagger .biz-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-cards-stagger.in-view > [class*="col-"]:nth-child(1) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.biz-cards-stagger.in-view > [class*="col-"]:nth-child(2) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.biz-cards-stagger.in-view > [class*="col-"]:nth-child(3) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.biz-cards-stagger.in-view > [class*="col-"]:nth-child(4) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.biz-cards-stagger.in-view > [class*="col-"]:nth-child(5) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.biz-cards-stagger.in-view > [class*="col-"]:nth-child(6) .biz-card { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.biz-process-steps.biz-ani .biz-process-step {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-process-steps.biz-ani.in-view .biz-process-step:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.biz-process-steps.biz-ani.in-view .biz-process-step:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.biz-process-steps.biz-ani.in-view .biz-process-step:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.biz-process-steps.biz-ani.in-view .biz-process-step:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.biz-process-steps.biz-ani.in-view .biz-process-step:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.biz-section-header.biz-text-reveal > *:nth-child(1) {
    transition-delay: 0.04s;
}

.biz-section-header.biz-text-reveal > *:nth-child(2) {
    transition-delay: 0.12s;
}

.biz-section-header.biz-text-reveal > *:nth-child(3) {
    transition-delay: 0.2s;
}

/* Accordion stagger entrance */
.biz-accordion .biz-accordion-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease;
}

.biz-accordion.in-view .biz-accordion-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.biz-accordion.in-view .biz-accordion-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.biz-accordion.in-view .biz-accordion-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.biz-accordion.in-view .biz-accordion-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* Stats counter entrance */
.biz-stats-strip .biz-stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.biz-stats-strip.in-view .biz-stat-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.biz-stats-strip.in-view .biz-stat-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.biz-stats-strip.in-view .biz-stat-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.biz-stats-strip.in-view .biz-stat-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

/* ---- Partner Page ---- */
.partner-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partner-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--chemirex-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.partner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
}

.partner-desc {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.partner-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-card:hover {
    border-color: var(--chemirex-primary);
    box-shadow: 0 4px 16px rgba(255, 94, 20, 0.08);
}

.partner-card-name {
    font-size: 1rem;
    font-weight: 600;
    color: #aaa;
}

@media (max-width: 767px) {
    .partner-section {
        padding: 48px 0;
    }
    .partner-title {
        font-size: 1.8rem;
    }
    .partner-card {
        padding: 28px 16px;
    }
}

@media (max-width: 575px) {
    .partner-title {
        font-size: 1.5rem;
    }
    .partner-desc {
        font-size: 0.95rem;
    }
    .partner-card {
        padding: 24px 12px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .section-rise,
    .section-rise.in-view,
    .biz-ani, .biz-ani-left, .biz-ani-right, .biz-ani-scale,
    .biz-text-reveal > *, .biz-cards-stagger .biz-card,
    .biz-process-steps.biz-ani .biz-process-step,
    .biz-grid-stagger.biz-ani > [class*="col-"] > *,
    .biz-accordion .biz-accordion-item, .biz-stats-strip .biz-stat-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}
