/* ============================================
   UMANG BOARDS V2 — SECTIONS CSS
   Value | Products | Global | CSR | Events |
   Investor | CTA | Footer
   ============================================ */

/* ============================================
   SECTION 2 — VALUE PROPOSITION (9 Items)
   ============================================ */
.s-value {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--bg-primary);
    overflow: hidden;
}
.s-value-inner { max-width: 1400px; margin: 0 auto; }
.s-value-header { max-width: 700px; margin-bottom: clamp(3rem, 6vh, 5rem); opacity: 0; }

/* ============================================
   BENTO GRID — asymmetric layout with image cells
   3 columns, items spanning different sizes
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.2rem;
}

/* Bento span modifiers */
.bento-grid .vc-large { grid-column: span 2; grid-row: span 2; }
.bento-grid .vc-img-tall { grid-column: span 1; grid-row: span 2; }
.bento-grid .vc-wide { grid-column: span 2; }
.bento-grid .vc-img-wide { grid-column: span 2; }

/* Base card */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    opacity: 0; transform: translateY(32px);
    transition: all 0.5s var(--ease-out-expo);
}
.value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.45s var(--ease-out-expo);
}
.value-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 20px 60px rgba(11,31,58,0.08);
    transform: translateY(-4px) !important;
}
.value-card:hover::before { transform: scaleX(1); }

/* Continent tags inside image cards */
.vc-continents {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem;
}
.vc-continents span {
    font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    padding: 0.25rem 0.6rem; border-radius: 20px;
}

/* Stat-on-image overlay — white text over dark gradient */
.vc-img-overlay-stat {
    background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.45) 50%, rgba(11,31,58,0.15) 100%);
    display: flex; align-items: flex-end; padding: clamp(1.2rem, 2vw, 2rem);
}
.vc-stat-content { color: #fff; }
.vc-stat-content .vc-number {
    font-family: var(--font-body); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800; line-height: 1; color: #FFFFFF; margin-bottom: 0.3rem;
}
.vc-stat-content .vc-label {
    font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem;
}
.vc-stat-content .vc-desc {
    font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.6;
}

/* Quote overlay variant */
.vc-img-overlay-quote { align-items: center; justify-content: center; text-align: center; }
.vc-img-overlay-quote .vc-stat-content { max-width: 580px; }
.vc-img-overlay-quote blockquote {
    font-family: var(--font-body); font-size: 1rem; font-style: italic;
    line-height: 1.65; color: rgba(255,255,255,0.9);
    padding: 0; border: none;
}
.vc-img-overlay-quote cite {
    display: block; font-family: var(--font-mono); font-size: 0.48rem;
    font-style: normal; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light); margin-top: 1rem;
}

/* Image cards */
.value-card.vc-img {
    padding: 0; border: none; min-height: 260px;
    background: var(--navy);
}
.value-card.vc-img:hover { transform: translateY(-4px) !important; }
.value-card.vc-img::before { display: none; }
.vc-img-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 20px;
    transition: transform 0.7s var(--ease-out-expo);
}
.value-card.vc-img:hover .vc-img-photo { transform: scale(1.04); }
.vc-img-overlay {
    position: absolute; inset: 0; border-radius: 20px;
    background: linear-gradient(to top, rgba(11,31,58,0.75) 0%, rgba(11,31,58,0.1) 55%, transparent 100%);
    display: flex; align-items: flex-end; padding: 1.5rem;
}
.vc-img-caption { color: #fff; }
.vc-img-tag {
    font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold-light);
    background: rgba(200,168,75,0.2); border: 1px solid rgba(200,168,75,0.4);
    display: inline-block; padding: 0.2rem 0.5rem; border-radius: 20px; margin-bottom: 0.4rem;
}
.vc-img-text { font-size: 0.88rem; font-weight: 600; line-height: 1.3; }

/* Stat card elements */
.vc-icon {
    width: 48px; height: 48px; margin-bottom: 1rem; border-radius: 14px;
    background: rgba(11,31,58,0.05); display: flex; align-items: center;
    justify-content: center; color: var(--navy);
}
.vc-icon svg { width: 22px; height: 22px; }
.vc-number {
    font-family: var(--font-body); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800; line-height: 1; color: var(--navy); margin-bottom: 0.3rem;
}
.vc-label {
    font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem;
}
.vc-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-top: auto; }


/* ============================================
   SECTION 3 — PRODUCT PORTFOLIO
   ============================================ */
.s-products {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--bg-secondary);
    overflow: hidden;
}
.s-products-inner { max-width: 1400px; margin: 0 auto; }
.s-products-header { margin-bottom: clamp(2rem, 4vh, 3rem); opacity: 0; }

/* Tab Mode Switcher (By Products / By Applications / By Business) */
.product-tab-modes {
    display: flex; gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.product-mode {
    padding: 0.5rem 1.2rem;
    font-family: var(--font-mono); font-size: 0.52rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px; cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}
.product-mode:hover { color: var(--navy); border-color: var(--border-accent); }
.product-mode.active {
    color: #fff; background: var(--navy);
    border-color: var(--navy); font-weight: 700;
}

/* Mode Panels */
.product-mode-panel { display: none; }
.product-mode-panel.active { display: block; }

/* Tabs (inside By Products mode) — prominent corporate style */
.product-tabs {
    display: flex; gap: 0; align-items: stretch;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    width: 100%;
    background: transparent;
    border-bottom: 3px solid rgba(11,31,58,0.08);
}
.product-tab {
    flex: 1; padding: 1.2rem 2rem; font-family: var(--font-body); font-size: 1rem;
    font-weight: 500; letter-spacing: 0; text-align: center;
    color: var(--text-muted); background: transparent; border: none;
    cursor: pointer; position: relative; white-space: nowrap;
    transition: all 0.35s var(--ease-out-expo);
}
.product-tab::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(11,31,58,0.03); opacity: 0;
    transition: opacity 0.3s ease;
}
.product-tab::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
    height: 3px; background: var(--gold); border-radius: 3px 3px 0 0;
    transform: scaleX(0); transition: transform 0.35s var(--ease-out-expo);
}
.product-tab:hover { color: var(--navy); }
.product-tab:hover::before { opacity: 1; }
.product-tab.active {
    color: var(--navy); font-weight: 700;
    background: rgba(11,31,58,0.04);
}
.product-tab.active::after { transform: scaleX(1); }
.product-tab .tab-icon {
    display: block; width: 32px; height: 32px; margin: 0 auto 0.5rem;
    color: var(--text-muted); transition: color 0.3s ease;
}
.product-tab.active .tab-icon { color: var(--gold); }

/* Panels — slide-fade in */
.product-panel {
    display: none; opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease-out-expo);
}
.product-panel.active {
    display: block; opacity: 1;
    transform: translateY(0);
}
.product-panel.entering {
    display: block; opacity: 0; transform: translateY(16px);
}
.product-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.product-panel-visual { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.product-panel-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out-expo); }
.product-panel-visual:hover .product-panel-img { transform: scale(1.05); }
.product-tag {
    display: inline-block; font-family: var(--font-mono); font-size: 0.48rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
    background: rgba(11,31,58,0.06); padding: 0.3rem 0.7rem; border-radius: 3px; margin-bottom: 0.8rem;
}
.product-panel-title { font-family: var(--font-body); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; color: var(--text-primary); margin-bottom: 0.8rem; }
.product-panel-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.product-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.product-list li {
    font-size: 0.68rem; font-family: var(--font-mono); letter-spacing: 0.05em;
    color: var(--text-muted); background: var(--bg-card);
    padding: 0.35rem 0.8rem; border-radius: 20px; border: 1px solid var(--border-subtle);
}

/* Application Grid (By Applications mode) */
.application-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.app-card {
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}
.app-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px rgba(11,31,58,0.06);
    transform: translateY(-4px);
}
.app-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(11,31,58,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); margin-bottom: 1rem;
}
.app-card-icon svg { width: 22px; height: 22px; }
.app-card-title {
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    color: var(--text-primary); margin-bottom: 0.4rem;
}
.app-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Business Cards (By Business mode) */
.business-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.biz-card {
    padding: clamp(2rem, 3vw, 3rem);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    display: flex; flex-direction: column;
    transition: all 0.4s var(--ease-out-expo);
}
.biz-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 16px 50px rgba(11,31,58,0.06);
    transform: translateY(-4px);
}
.biz-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.biz-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(11,31,58,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); flex-shrink: 0;
}
.biz-card-icon svg { width: 24px; height: 24px; }
.biz-card-title { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); }
.biz-card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex: 1; }

/* Product CTA — "Something caught your eye?" */
.product-cta-box {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    margin-top: clamp(2rem, 4vh, 3rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: linear-gradient(135deg, var(--navy) 0%, #1A3556 100%);
    border-radius: 16px; color: #fff;
}
.product-cta-title {
    font-family: var(--font-body); font-size: 1.2rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.3rem;
}
.product-cta-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.product-cta-btn {
    flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: var(--gold); color: var(--navy);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    border-radius: 8px; border: none; text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}
.product-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.3); }

/* Product Finder */
.product-finder {
    margin-top: clamp(3rem, 5vh, 4rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}
.pf-title { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 1.2rem; }
.pf-selects { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.pf-select-group { flex: 1; min-width: 180px; }
.pf-label { display: block; font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.pf-select {
    width: 100%; padding: 0.7rem 1rem; font-family: var(--font-body);
    font-size: 0.82rem; color: var(--text-primary);
    border: 1px solid var(--border-medium); border-radius: 8px;
    background: var(--bg-primary); appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6F7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.8rem center;
    cursor: pointer; transition: border-color 0.3s;
}
.pf-select:focus { outline: none; border-color: var(--navy); }
.pf-select:disabled { opacity: 0.5; cursor: not-allowed; }
.pf-go-btn { white-space: nowrap; }


/* ============================================
   FACILITY PARALLAX STRIP
   ============================================ */
.s-facility {
    position: relative;
    height: 55vh; min-height: 380px; max-height: 600px;
    overflow: hidden;
}
.facility-parallax {
    position: absolute; inset: -20% 0;
    background: url('assets/images/facility-aerial.jpg') center center / cover no-repeat;
    will-change: transform;
}
.facility-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,31,58,0.45) 0%,
        rgba(11,31,58,0.25) 40%,
        rgba(11,31,58,0.6) 100%
    );
}
.facility-caption {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end;
    padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem);
}
.facility-caption-inner { opacity: 0; transform: translateY(18px); }
.facility-tag {
    font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.facility-headline {
    font-family: var(--font-body); font-size: clamp(1.6rem, 3.5vw, 3rem);
    font-weight: 800; color: #FFFFFF; line-height: 1.1; margin-bottom: 0.5rem;
}
.facility-sub {
    font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6); text-transform: uppercase;
}

/* ============================================
   SECTION 4 — GLOBAL REACH
   ============================================ */
.s-global {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--navy);
    color: #FFFFFF;
    overflow: hidden;
}
.s-global-inner { max-width: 1400px; margin: 0 auto; }
.s-global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.s-global-left { opacity: 0; }
.global-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.g-stat { opacity: 0; }
.g-stat-num { font-family: var(--font-body); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.g-stat-label { font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Map Container with Pins */
.s-global-map { opacity: 0; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.map-container { position: relative; }
.global-map-img { width: 100%; height: auto; display: block; opacity: 0.7; filter: brightness(1.2) contrast(0.9); transition: opacity 0.5s; }
.s-global-map:hover .global-map-img { opacity: 0.9; }

/* Map Pins */
.map-pin {
    position: absolute; width: 10px; height: 10px;
    border-radius: 50%; transform: translate(-50%, -50%);
    cursor: pointer; z-index: 2;
    animation: pinPulse 2s ease-in-out infinite;
}
.map-pin::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; border: 1px solid currentColor; opacity: 0.3;
    animation: pinRipple 2s ease-out infinite;
}
.map-pin::after {
    content: attr(data-label);
    position: absolute; bottom: calc(100% + 6px); left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono); font-size: 0.42rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #fff; white-space: nowrap;
    background: rgba(11,31,58,0.9); padding: 0.2rem 0.4rem;
    border-radius: 3px;
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.map-pin:hover::after { opacity: 1; }

.map-pin[data-type="hq"] { background: var(--gold); color: var(--gold); }
.map-pin[data-type="mfg"] { background: #4CAF50; color: #4CAF50; }
.map-pin[data-type="office"] { background: #2196F3; color: #2196F3; }
.map-pin[data-type="export"] { background: rgba(255,255,255,0.6); color: rgba(255,255,255,0.6); width: 6px; height: 6px; }

@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; }
    50% { box-shadow: 0 0 0 4px transparent; }
}
@keyframes pinRipple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Map Legend */
.map-legend {
    display: flex; gap: 1.2rem; padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.map-legend-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-family: var(--font-mono); font-size: 0.42rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.map-legend-dot {
    width: 6px; height: 6px; border-radius: 50%;
}
.dot-hq { background: var(--gold); }
.dot-mfg { background: #4CAF50; }
.dot-office { background: #2196F3; }
.dot-export { background: rgba(255,255,255,0.6); }

.global-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.g-tag {
    font-family: var(--font-mono); font-size: 0.48rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    padding: 0.3rem 0.7rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.g-tag:hover { border-color: var(--gold); color: var(--gold); }


/* ============================================
   SECTION 5 — CSR
   ============================================ */
.s-csr {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--bg-warm);
    overflow: hidden;
}
.s-csr-inner { max-width: 1400px; margin: 0 auto; }
.s-csr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.s-csr-content { opacity: 0; }
.csr-highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.csr-item { display: flex; gap: 1rem; align-items: flex-start; }
.csr-item-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(11,31,58,0.06); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--navy);
}
.csr-item-icon svg { width: 20px; height: 20px; }
.csr-item-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.csr-item-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.s-csr-visual { opacity: 0; border-radius: 16px; overflow: hidden; }
.csr-img { width: 100%; height: auto; display: block; aspect-ratio: 4/3; object-fit: cover; }


/* ============================================
   SECTION 6 — EVENTS & ANNOUNCEMENTS
   ============================================ */
.s-events {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--bg-primary);
    overflow: hidden;
}
.s-events-inner { max-width: 1400px; margin: 0 auto; }
.s-events-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: clamp(3rem, 5vh, 4rem); opacity: 0;
}
.s-events-header .btn-outline { color: var(--navy); border-color: var(--border-accent); }
.s-events-header .btn-outline:hover { border-color: var(--navy); background: rgba(11,31,58,0.03); }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.event-card {
    display: flex; gap: 1.5rem; padding: clamp(1.2rem, 2vw, 2rem);
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: 16px; opacity: 0; transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo);
}
.event-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 12px 40px rgba(11,31,58,0.06);
    transform: translateY(-4px) !important;
}
.event-date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-width: 60px; padding: 0.8rem; background: var(--navy);
    border-radius: 10px; color: #FFF; flex-shrink: 0;
}
.event-day { font-family: var(--font-body); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-month { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-top: 0.2rem; }
.event-content { flex: 1; }
.event-tag {
    display: inline-block; font-family: var(--font-mono); font-size: 0.45rem;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark);
    background: var(--gold-pale); padding: 0.2rem 0.5rem; border-radius: 3px; margin-bottom: 0.6rem;
}
.event-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; line-height: 1.3; }
.event-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }


/* ============================================
   BOARDROOM PARALLAX STRIP
   ============================================ */
.s-boardroom {
    position: relative;
    height: 55vh; min-height: 380px; max-height: 600px;
    overflow: hidden;
}
.boardroom-parallax {
    position: absolute; inset: -20% 0;
    background: url('assets/images/boardroom.jpg') center center / cover no-repeat;
    will-change: transform;
}
.boardroom-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(11,31,58,0.72) 0%,
        rgba(11,31,58,0.3) 55%,
        rgba(11,31,58,0.55) 100%
    );
}
.boardroom-caption {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 0 clamp(1.5rem, 5vw, 5rem);
}
.boardroom-caption-inner { opacity: 0; transform: translateY(18px); max-width: 520px; }

/* ============================================
   SECTION 7 — INVESTOR RELATIONS
   ============================================ */
.s-investor {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    background: var(--navy);
    color: #FFFFFF;
    overflow: hidden;
}
.s-investor-inner { max-width: 1400px; margin: 0 auto; }
.s-investor-header { max-width: 600px; margin-bottom: clamp(3rem, 5vh, 4rem); opacity: 0; }

.investor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.investor-card {
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; display: flex; flex-direction: column;
    opacity: 0; transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo);
}
.investor-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px) !important;
}
.investor-card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(255,255,255,0.06); display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.2rem; color: var(--gold);
}
.investor-card-icon svg { width: 22px; height: 22px; }
.investor-card-title { font-size: 1.1rem; font-weight: 700; color: #FFF; margin-bottom: 0.5rem; }
.investor-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 1.2rem; }

.investor-stock-info { display: flex; gap: 1rem; margin-top: clamp(2rem, 4vh, 3rem); flex-wrap: wrap; }
.stock-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; }
.stock-exchange { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; }
.stock-symbol { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); }


/* ============================================
   CTA BAND
   ============================================ */
.s-cta {
    position: relative;
    padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3.5rem);
    text-align: center; overflow: hidden;
}
.cta-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(145deg, var(--navy) 0%, rgba(11,31,58,0.85) 50%, var(--navy-light) 100%);
}
.s-cta-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; color: #FFFFFF; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; opacity: 0; }


/* ============================================
   FOOTER
   ============================================ */
.s-footer {
    background: #080E16; color: rgba(255,255,255,0.6);
    padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 4vw, 3.5rem) 0;
    position: relative; overflow: hidden;
}
.s-footer-inner { max-width: 1400px; margin: 0 auto; }
.s-footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(3rem, 6vh, 5rem);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Footer Logo */
.footer-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; margin-bottom: 1.2rem; }
.footer-logo-img { width: 56px; height: auto; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text span:first-child { font-family: var(--font-body); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #FFF; }
.footer-logo-sub { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 2px; }
.sf-brand-desc { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; max-width: 300px; }
.sf-certs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.sf-cert {
    font-family: var(--font-mono); font-size: 0.42rem; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.25rem 0.5rem; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.3);
}

/* Footer columns */
.sf-col-title { font-family: var(--font-mono); font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1rem; }
.sf-links { list-style: none; }
.sf-links li { margin-bottom: 0.5rem; }
.sf-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.sf-links a:hover { color: var(--gold); }

/* Footer contact */
.sf-contact { display: flex; flex-direction: column; gap: 0.8rem; }
.sf-contact-row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.sf-contact-row a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.sf-contact-row a:hover { color: var(--gold); }
.sf-contact-icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.3); }

/* Footer socials */
.sf-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.sf-social {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.3); text-decoration: none;
    transition: all 0.3s;
}
.sf-social:hover { border-color: var(--gold); color: var(--gold); }
.sf-social svg { width: 13px; height: 13px; }

/* Footer bottom */
.s-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem;
}
.sf-copy { font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.sf-bottom-links { display: flex; gap: 1.5rem; }
.sf-bottom-links a {
    font-family: var(--font-mono); font-size: 0.45rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.18); text-decoration: none;
    transition: color 0.3s;
}
.sf-bottom-links a:hover { color: rgba(255,255,255,0.45); }


/* ============================================
   RESPONSIVE — ALL SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .value-grid, .value-grid-9 { grid-template-columns: repeat(2, 1fr); }
    /* Bento: collapse spans on tablet */
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid .vc-large { grid-column: span 2; grid-row: span 1; }
    .bento-grid .vc-img-tall { grid-column: span 2; grid-row: span 1; }
    .bento-grid .vc-wide { grid-column: span 2; }
    .bento-grid .vc-img-wide { grid-column: span 2; }
    .product-panel-grid { grid-template-columns: 1fr; }
    .application-grid { grid-template-columns: repeat(2, 1fr); }
    .business-cards { grid-template-columns: repeat(2, 1fr); }
    .s-global-grid { grid-template-columns: 1fr; }
    .s-csr-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .investor-grid { grid-template-columns: repeat(2, 1fr); }
    .s-footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .sf-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
    .value-grid, .value-grid-9 { grid-template-columns: 1fr; }
    /* Bento: single column on mobile */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-grid .vc-large,
    .bento-grid .vc-img-tall,
    .bento-grid .vc-wide,
    .bento-grid .vc-img-wide { grid-column: span 1; grid-row: span 1; }
    .application-grid { grid-template-columns: 1fr; }
    .business-cards { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .investor-grid { grid-template-columns: 1fr; }
    .global-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .product-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .product-tab { white-space: nowrap; padding: 0.8rem 1.2rem; font-size: 0.85rem; flex: none; }
    .product-tab .tab-icon { display: none; }
    .product-cta-box { flex-direction: column; text-align: center; }
    .product-tab-modes { flex-wrap: wrap; }
    .pf-selects { flex-direction: column; }
    .s-events-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .s-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .sf-brand { grid-column: span 2; }
    .cta-actions { flex-direction: column; align-items: center; }
    .event-card { flex-direction: column; gap: 1rem; }
    .event-date { flex-direction: row; gap: 0.5rem; width: fit-content; min-width: auto; }
    .map-legend { flex-wrap: wrap; gap: 0.8rem; }
}

@media (max-width: 480px) {
    .global-stats { grid-template-columns: 1fr; }
    .s-footer-top { grid-template-columns: 1fr; }
    .sf-brand { grid-column: span 1; }
    .s-footer-bottom { flex-direction: column; text-align: center; }
    .investor-stock-info { flex-direction: column; }
}
