/* ══════════════════════════════════════════════════════════════
   SBEHUB — Home Page Styles v2 — Modern / No-Card
   ══════════════════════════════════════════════════════════════ */

/* ── Hero Ticker (stats bar at bottom of hero) ── */
.hero-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 72px;
    position: relative;
    z-index: 2;
}

.ticker-item {
    text-align: center;
}

.ticker-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.ticker-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.ticker-divider {
    width: 1px;
    height: 36px;
    background: var(--border-strong);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Bento Grid (not card-based)
   ══════════════════════════════════════════════════════════════ */
.services-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border);
}

.bento-item {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
    overflow: hidden;
    cursor: pointer;
}

.bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-color), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.bento-item:hover .bento-glow {
    opacity: 0.06;
}

.bento-item:hover {
    background: rgba(12, 18, 35, 0.9);
}

.bento-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
    transition: var(--transition-base);
}

.bento-item:hover .bento-number {
    color: rgba(4, 92, 180, 0.1);
}

.bento-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.bento-item:hover h3 {
    color: var(--brand-light);
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-light);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-base);
}

.bento-item:hover .bento-link {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   WHO WE SERVE — Flowing Timeline (no cards)
   ══════════════════════════════════════════════════════════════ */
.serve-bg {
    background: var(--bg-secondary);
}

.serve-flow {
    max-width: 800px;
    position: relative;
}

.serve-flow::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--border) 100%);
}

.serve-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 0;
    position: relative;
    transition: var(--transition-base);
}

.serve-row:hover {
    transform: translateX(8px);
}

.serve-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1.5px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.serve-marker span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.serve-row:hover .serve-marker {
    border-color: var(--brand);
    background: rgba(4, 92, 180, 0.08);
    box-shadow: 0 0 20px rgba(4, 92, 180, 0.15);
}

.serve-row:hover .serve-marker span {
    color: var(--brand-light);
}

.serve-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    transition: var(--transition-fast);
}

.serve-row:hover .serve-info h3 {
    color: var(--brand-light);
}

.serve-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US — Split Layout
   ══════════════════════════════════════════════════════════════ */
.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.why-left .section-title {
    margin-bottom: 16px;
}

.why-left .section-subtitle {
    margin-bottom: 36px;
}

.why-image-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.why-image-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-image-block:hover img {
    transform: scale(1.04);
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition-base);
}

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

.why-item:hover {
    padding-left: 12px;
}

.why-index {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
    transition: var(--transition-base);
}

.why-item:hover .why-index {
    color: rgba(4, 92, 180, 0.15);
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-item:hover h3 {
    color: var(--brand-light);
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   MISSION / VISION / VALUES — Horizontal Strip
   ══════════════════════════════════════════════════════════════ */
.mvv-bg {
    background: var(--bg-secondary);
}

.mvv-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.mvv-block {
    padding: 48px 36px;
    background: var(--bg-primary);
    position: relative;
    transition: var(--transition-base);
}

.mvv-block:hover {
    background: rgba(6, 9, 15, 0.7);
}

.mvv-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
}

.mvv-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mvv-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mvv-block p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY STRIP
   ══════════════════════════════════════════════════════════════ */
.gallery-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-img {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .why-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .hero-ticker {
        flex-wrap: wrap;
        gap: 24px;
    }

    .ticker-divider { display: none; }

    .ticker-item {
        min-width: 120px;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .mvv-strip {
        grid-template-columns: 1fr;
    }

    .gallery-row {
        grid-template-columns: 1fr;
    }

    .gallery-img img {
        height: 220px;
    }

    .serve-flow::before { left: 23px; }
}

@media (max-width: 480px) {
    .bento-item {
        padding: 32px 24px;
    }

    .ticker-value { font-size: 1.4rem; }
}
