/*
Theme Name: PT OPTIMA BITRA INDO Child Theme
Description: Custom Re-Engineered B2B Stylesheet with Local TTF Infrastructure
Version: 1.0.1
*/

/* --- L1: LOCAL TTF FONTS ARCHITECTURE (ROOT ALIGNED) --- */

/* Syne Headings Typography */
@font-face {
    font-family: 'Syne';
    src: url('/Syne.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* DM Sans Core Typography Matrix */
@font-face {
    font-family: 'DM Sans';
    src: url('/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/DMSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMSans-MediumItalic.ttf';
    /* Matched to file name in cPanel */
    font-family: 'DM Sans';
    src: url('/DMSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/DMSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* --- L2: DESIGN MATRIX CONSTANTS --- */
:root {
    --obi-bg-canvas: #f8fafc;
    /* Light Slate Canvas */
    --obi-brand-primary: #8b1e22;
    /* Industrial Crimson Metallic */
    --obi-brand-secondary: #ffffff;
    /* Block Contrast (Cards) */
    --obi-typography-base: #1e293b;
    /* Deep Slate Typography */
    --obi-text-muted: #64748b;
    /* Metallic Muted Silver */
    --obi-border-color: rgba(30, 41, 59, 0.08);

    --obi-font-headings: 'Syne', sans-serif;
    --obi-font-body: 'DM Sans', sans-serif;
    --obi-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* --- L3: CORE RESET & CONTEXT CONFIGURATION --- */
.obi-app-context {
    background-color: var(--obi-bg-canvas);
    color: var(--obi-typography-base);
    font-family: var(--obi-font-body);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}


/* --- L4: GLOBAL B2B TYPOGRAPHIC HIERARCHY --- */

.obi-app-context h1,
.obi-app-context h2,
.obi-app-context h3,
.obi-app-context h4,
.obi-app-context h5,
.obi-app-context h6 {
    font-family: var(--obi-font-headings);
    font-weight: 700;
    color: var(--obi-typography-base);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 0.5em;
}

.obi-app-context h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
}

.obi-app-context h2 {
    font-size: 36px;
}

.obi-app-context h3 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.obi-app-context h4 {
    font-size: 18px;
    text-transform: uppercase;
}

.obi-app-context h5 {
    font-size: 16px;
}

.obi-app-context h6 {
    font-size: 14px;
    color: var(--obi-text-muted);
}


/* --- L5: CORPORATE B2B NAV-LINKS INTEGRATION --- */

.obi-app-context a {
    color: var(--obi-typography-base);
    text-decoration: none;
    font-weight: 500;
    transition: var(--obi-transition);
    display: inline-block;
    position: relative;
}

/* Premium micro-animation line for standard text links */
.obi-app-context a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--obi-brand-primary);
    transition: var(--obi-transition);
}

.obi-app-context a:hover {
    color: var(--obi-brand-primary);
}

.obi-app-context a:hover::after {
    width: 100%;
}


/* --- L6: THREE-LAYER ADAPTIVE MATRIX --- */
@media (max-width: 1024px) {
    .obi-app-context {
        font-size: 15px;
    }

    .obi-app-context h1 {
        font-size: 38px;
    }

    .obi-app-context h2 {
        font-size: 30px;
    }

    .obi-app-context h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .obi-app-context {
        font-size: 14px;
        line-height: 1.65;
    }

    .obi-app-context h1 {
        font-size: 32px;
    }

    .obi-app-context h2 {
        font-size: 26px;
    }

    .obi-app-context h3 {
        font-size: 18px;
    }
}

/* --- SECTION: FIXED CORPORATE HEADER --- */

.obi-header-node {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(248, 250, 252, 0.85); /* Light Slate with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--obi-border-color);
    z-index: 1000;
    transition: var(--obi-transition);
}

.obi-header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.obi-logo-box {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.obi-header-logo {
    height: 45px;
    width: auto;
    display: block;
}

/* Navigation Menu Stack */
.obi-navigation-rail {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.obi-nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.obi-nav-item {
    font-family: var(--obi-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-typography-base);
    padding: 10px 0;
}

/* Premium Hot Button with Shine Effect */
.obi-action-hub {
    flex: 0 0 auto;
}

.obi-hot-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    color: var(--obi-brand-secondary) !important; /* White color text */
    padding: 14px 28px;
    font-family: var(--obi-font-headings);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(139, 30, 34, 0.15);
    overflow: hidden;
    position: relative;
}

.obi-hot-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease-in-out;
}

.obi-hot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 34, 0.3);
}

.obi-hot-button:hover::before {
    left: 100%;
}

/* Mobile Controls Reset */
.obi-burger-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1010;
}

.obi-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--obi-typography-base);
    transition: var(--obi-transition);
}

/* --- THREE-LAYER ADAPTIVE MATRIX (HEADER OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-header-node {
        height: 80px;
    }
    .obi-nav-menu {
        gap: 20px;
    }
    .obi-nav-item {
        font-size: 12px;
    }
    .obi-hot-button {
        padding: 12px 22px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .obi-burger-trigger {
        display: flex;
    }
    
    /* Transforming Menu into Vertical Stack Mobile Overlay */
    .obi-navigation-rail {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--obi-brand-secondary);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        margin: 0;
        padding: 100px 40px;
        flex-direction: column;
        justify-content: flex-start;
        transition: var(--obi-transition);
    }
    
    .obi-navigation-rail.obi-active {
        right: 0;
    }
    
    .obi-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .obi-nav-item {
        font-size: 15px;
    }
    
    .obi-action-hub {
        display: none; /* Hide button on mobile header to prioritize layout space */
    }
    
    /* Burger Active Transform States */
    .obi-burger-trigger.obi-active .obi-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--obi-brand-primary);
    }
    .obi-burger-trigger.obi-active .obi-bar:nth-child(2) {
        opacity: 0;
    }
    .obi-burger-trigger.obi-active .obi-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--obi-brand-primary);
    }
}


/* --- SYSTEM INFRASTRUCTURE: MODAL WINDOW MATRIX --- */

.obi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 12, 16, 0.65); /* Dark corporate overlay */
    backdrop-filter: blur(0px); /* Animated dynamically via JS class */
    -webkit-backdrop-filter: blur(0px);
    z-index: 9999; /* Absolute high-priority overlay layer */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
    perspective: 1500px; /* Essential for 3D paper fold effect */
}

/* Master Overlay Active State */
.obi-modal-overlay.obi-modal-visible {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 3D Paper Sheet Window Layout */
.obi-modal-sheet {
    background-color: var(--obi-brand-secondary); /* Clean white card */
    width: 100%;
    max-width: 950px;
    max-height: 85vh;
    border-radius: 4px;
    position: relative;
    padding: 60px;
    box-shadow: 0 30px 70px rgba(11, 12, 16, 0.25);
    border: 1px solid var(--obi-border-color);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    
    /* Paper Sheet Unfolding Animation Initial State (Folded, small, skewed) */
    transform: rotateX(45deg) rotateY(-15deg) translateZ(-300px) scale(0.6);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Unfolded Paper State */
.obi-modal-overlay.obi-modal-visible .obi-modal-sheet {
    transform: rotateX(0deg) rotateY(0deg) translateZ(0) scale(1);
}

/* Folded Closing Animation State (Shorter duration for punchy exit) */
.obi-modal-overlay.obi-modal-closing .obi-modal-sheet {
    transform: rotateX(-35deg) rotateY(10deg) translateZ(-400px) scale(0.5);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Content Area & Local Scroll Containment */
.obi-modal-scroll-holder {
    overflow-y: auto;
    padding-right: 15px;
    flex: 1;
}

/* Custom Engineered Scrollbar for B2B Content Sheet */
.obi-modal-scroll-holder::-webkit-scrollbar {
    width: 4px;
}
.obi-modal-scroll-holder::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.obi-modal-scroll-holder::-webkit-scrollbar-thumb {
    background: var(--obi-brand-primary);
    border-radius: 2px;
}

/* Typography Inside Content Sheet */
.obi-modal-header-block {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--obi-border-color);
    padding-bottom: 30px;
}

.obi-modal-title {
    font-size: 32px;
    color: var(--obi-typography-base);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.obi-modal-subtitle {
    font-family: var(--obi-font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--obi-text-muted);
}

/* GEAR-STYLED CLOSING CONTROLLER INTERACTIVE RULES */
.obi-modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background-color: #f1f5f9;
    border: 1px solid var(--obi-border-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: var(--obi-transition);
}

.obi-gear-icon {
    font-size: 18px;
    color: var(--obi-typography-base);
    /* Internal continuous smooth rotation is handled by classes if needed, here we use transition */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
}

/* Interactive Hover State: Rotates like a real industrial gear and shifts to brand crimson */
.obi-modal-close-btn:hover {
    background-color: var(--obi-brand-primary);
    border-color: var(--obi-brand-primary);
    box-shadow: 0 4px 12px rgba(139, 30, 34, 0.2);
}

.obi-modal-close-btn:hover .obi-gear-icon {
    transform: rotate(180deg);
    color: var(--obi-brand-secondary); /* Shifts icon color to white */
}

/* --- THREE-LAYER ADAPTIVE MATRIX (MODAL ADJUSTMENTS) --- */

@media (max-width: 1024px) {
    .obi-modal-sheet {
        padding: 45px;
        max-width: 700px;
    }
    .obi-modal-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .obi-modal-overlay {
        padding: 15px;
    }
    .obi-modal-sheet {
        padding: 35px 20px 25px;
        max-height: 90vh;
        border-radius: 8px;
    }
    .obi-modal-header-block {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    .obi-modal-title {
        font-size: 22px;
        padding-right: 30px; /* Leave space for close button */
    }
    .obi-modal-subtitle {
        font-size: 13px;
        line-height: 1.65;
    }
    .obi-modal-close-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    .obi-gear-icon {
        font-size: 15px;
    }
}


/* --- SPECIFIC PRIVACY POLICY OVERLAY ARCHITECTURE --- */

.obi-policy-overlay {
    z-index: 10000; /* Higher priority than standard operational modals */
}

.obi-legal-body-text {
    font-family: var(--obi-font-body);
    color: var(--obi-typography-base);
    font-size: 14px;
    line-height: 1.8;
}

.obi-legal-date {
    font-weight: 700;
    color: var(--obi-brand-primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obi-legal-body-text h3 {
    font-family: var(--obi-font-headings);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--obi-typography-base);
    margin: 30px 0 12px;
    letter-spacing: 0.5px;
}

.obi-legal-body-text p {
    color: var(--obi-text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.obi-legal-body-text strong {
    color: var(--obi-brand-primary);
}

@media (max-width: 768px) {
    .obi-legal-body-text {
        font-size: 13px;
        line-height: 1.7;
    }
    .obi-legal-body-text h3 {
        font-size: 14px;
        margin: 25px 0 10px;
    }
    .obi-legal-body-text p {
        text-align: left;
    }
}

/* --- SPECIFIC TERMS & CONDITIONS OVERLAY ARCHITECTURE --- */

.obi-terms-overlay {
    /* Base configuration matches standard modal overlay */
    z-index: 10010; /* Set slightly higher than policy, but script will auto-escalate dynamically */
}

/* Reusing .obi-legal-body-text and shared headings from the policy architecture */

/* --- SPECIFIC LEGAL DISCLAIMER OVERLAY ARCHITECTURE --- */

.obi-disclaimer-overlay {
    z-index: 10020; /* Base CSS layer counter, dynamically escalated via Javascript framework */
}

/* --- B2B INTAKE FORM SYSTEM ARCHITECTURE --- */

.obi-intake-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(30, 41, 59, 0.02);
    border-left: 3px solid var(--obi-typography-base);
    padding: 24px;
    border-radius: 4px;
}

/* Honey Spambot Trap Layer - Invisible to real B2B users */
.obi-hidden-honey {
    display: none !important;
    visibility: hidden;
}

/* Corporate Block Zonation Layout */
.obi-form-block {
    padding: 24px;
    border-radius: 4px;
    border: 1px solid var(--obi-border-color);
    transition: var(--obi-transition);
}

.obi-block-identity {
    background-color: rgba(139, 30, 34, 0.02); /* Soft Crimson Tint */
    border-left: 3px solid var(--obi-brand-primary);
}

.obi-block-geography {
    background-color: rgba(30, 41, 59, 0.02); /* Soft Charcoal Tint */
    border-left: 3px solid var(--obi-typography-base);
}

.obi-block-specifications {
    background-color: #ffffff; /* Clean White Contrast Tint */
    border-left: 3px solid var(--obi-text-muted);
}

.obi-block-caption {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--obi-typography-base);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.obi-block-caption i {
    color: var(--obi-brand-primary);
}

/* Grid Rows Management */
.obi-form-row {
    display: flex;
    flex-direction: row; /* Enforces horizontal alignment for dual-column fields */
    gap: 20px;
    margin-bottom: 16px;
}

.obi-form-row:last-child {
    margin-bottom: 0;
}

.obi-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px; /* Forces new line if width drops below safe threshold */
}

.obi-width-full {
    flex: 1 0 100%;
}

/* Form Fields Industrial Styling */
.obi-field-label {
    font-family: var(--obi-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--obi-text-muted);
}

.obi-form-input,
.obi-form-select,
.obi-form-textarea {
    width: 100%;
    background-color: var(--obi-brand-secondary);
    border: 1px solid rgba(30, 41, 59, 0.15);
    padding: 12px 16px;
    font-family: var(--obi-font-body);
    font-size: 14px;
    color: var(--obi-typography-base);
    border-radius: 4px;
    transition: var(--obi-transition);
}

.obi-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}

.obi-form-textarea {
    height: 100px;
    resize: vertical;
    min-height: 80px;
}

/* Active State Matrix */
.obi-form-input:focus,
.obi-form-select:focus,
.obi-form-textarea:focus {
    outline: none;
    border-color: var(--obi-brand-primary);
    box-shadow: 0 0 0 3px rgba(139, 30, 34, 0.08);
    background-color: #ffffff;
}

/* Compliance & Bottom Action Row */
.obi-form-compliance-bar {
    border-top: 1px solid var(--obi-border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.obi-checkbox-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.obi-compliance-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.obi-compliance-checkbox {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--obi-brand-primary);
    cursor: pointer;
}

.obi-compliance-text {
    font-family: var(--obi-font-body);
    font-size: 12px;
    line-height: 1.6;
    color: var(--obi-text-muted);
}

.obi-legal-inline-link {
    color: var(--obi-brand-primary);
    font-weight: 600;
    text-decoration: underline;
}

.obi-legal-inline-link::after {
    display: none !important; /* Disables global animated line for layout optimization */
}

.obi-submit-action-box {
    flex: 0 0 auto;
}

.obi-submit-button {
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    font-family: var(--obi-font-headings);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 30, 34, 0.15);
    transition: var(--obi-transition);
}

.obi-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 34, 0.3);
}

/* SUCCESS STATE UI CARD STYLES */
.obi-success-feedback-sheet {
    text-align: center;
    padding: 40px 20px;
    animation: obi-sheet-fade-in 0.4s ease forwards;
}

@keyframes obi-sheet-fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.obi-success-icon-box {
    font-size: 56px;
    color: #10b981; /* Secure green color */
    margin-bottom: 20px;
}

.obi-success-title {
    font-size: 24px;
    color: var(--obi-typography-base);
    margin-bottom: 12px;
}

.obi-success-message {
    font-family: var(--obi-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--obi-text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* --- THREE-LAYER ADAPTIVE MATRIX (FORM OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-form-compliance-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .obi-submit-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .obi-form-row {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
    }
    .obi-input-group {
        width: 100%;
        margin-bottom: 16px;
    }
    .obi-form-block {
        padding: 16px;
    }
}

/* --- FORM ROW INFRASTRUCTURE --- */
.obi-form-row {
    display: flex;
    flex-direction: row; /* Forces children to align horizontally */
    flex-wrap: nowrap;   /* Disables premature wrapping on desktop screens */
    gap: 20px;
    margin-bottom: 16px;
    width: 100%;         /* Ensures row spans full width of the parent container */
}

/* --- INPUT GROUP INFRASTRUCTURE --- */
.obi-input-group {
    flex: 1 1 50%;       /* Direct modification: Forces each group to take exactly half of the row space */
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-sizing: border-box;
}

/* --- FULL WIDTH OVERRIDE --- */
.obi-width-full {
    flex: 1 1 100%;      /* Forces standalone elements to span the entire row */
}

/* --- L5: FORM FIELDS CONFIGURATION MATRIX --- */

.obi-form-input,
.obi-form-select,
.obi-form-textarea {
    width: 100%;
    max-width: 100%;       /* Enforces absolute boundary restrictions */
    box-sizing: border-box; /* Crucial: Forces padding to be calculated inside the 100% width framework */
    background-color: var(--obi-brand-secondary);
    border: 1px solid rgba(30, 41, 59, 0.15);
    padding: 12px 16px;
    font-family: var(--obi-font-body);
    font-size: 14px;
    color: var(--obi-typography-base);
    border-radius: 4px;
    transition: var(--obi-transition);
}

/* --- OVERRIDE SELECT ARROW BOX PATTERN --- */
.obi-form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none; /* Safe rendering protocol for Safari browser engines */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
}



/* --- SECTION 2: HERO SCREEN MATRIX --- */

.obi-hero-section {
    padding-top: 150px;
    /* Leave safe headroom for the fixed header blur plate */
    padding-bottom: 90px;
    background-color: var(--obi-bg-canvas);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.obi-hero-section:after {
    content: '';
    position: absolute;
    top: 33%;
    right: 225px;
    width: 520px;
    height: 100%;
    background: url('/51.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

/* Background grid accent blending with canvas */
.obi-hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 30, 34, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.obi-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.obi-hero-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.obi-hero-content {
    flex: 1.2;
}

.obi-hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Holding Badge Layout */
.obi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.03);
}

.obi-badge-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--obi-brand-primary);
    border-radius: 50%;
    position: relative;
}

.obi-badge-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid var(--obi-brand-primary);
    border-radius: 50%;
    animation: obi-badge-glow 2s infinite ease-in-out;
}

@keyframes obi-badge-glow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.obi-badge-text {
    font-family: var(--obi-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--obi-text-muted);
}

/* Typographic Expressive Layers */
.obi-hero-headline {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 30px;
}

.obi-crimson-gradient {
    background: linear-gradient(90deg, var(--obi-brand-primary) 0%, #bd2a2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.obi-hero-lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--obi-text-muted);
    margin-bottom: 40px;
    max-width: 680px;
}

/* Metadata Parameters Grid Block */
.obi-hero-meta-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--obi-border-color);
}

.obi-meta-node {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.obi-meta-icon {
    font-size: 20px;
    color: var(--obi-brand-primary);
    background-color: rgba(139, 30, 34, 0.05);
    padding: 12px;
    border-radius: 4px;
}

.obi-meta-text h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.obi-meta-text p {
    font-family: var(--obi-font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--obi-text-muted);
}

/* Call to Action Premium Buttons Group */
.obi-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.obi-hero-btn-primary {
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    color: #ffffff !important;
    font-family: var(--obi-font-headings);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 36px;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(139, 30, 34, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.obi-hero-btn-primary i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.obi-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 30, 34, 0.25);
}

.obi-hero-btn-primary:hover i {
    transform: translateX(4px);
}

.obi-hero-btn-secondary {
    border: 1px solid rgba(30, 41, 59, 0.15);
    background-color: transparent;
    color: var(--obi-typography-base);
    font-family: var(--obi-font-headings);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 32px;
    border-radius: 4px;
}

.obi-hero-btn-secondary:hover {
    background-color: rgba(30, 41, 59, 0.03);
    border-color: var(--obi-typography-base);
}

/* RIGHT COLUMN VISUAL INTERACTIVE ENGINE */
.obi-visual-canvas {
    position: relative;
    width: 440px;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Vector tech mesh lines backdrop representing 20% high-tech */
.obi-vector-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(161, 168, 181, 0.25);
    border-radius: 50%;
    animation: obi-mesh-spin 30s infinite linear;
}

.obi-vector-mesh::before {
    content: '';
    position: absolute;
    top: 10%; left: 10%; width: 80%; height: 80%;
    border: 1px dashed rgba(139, 30, 34, 0.15);
    border-radius: 50%;
}

@keyframes obi-mesh-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Continuous pulse tech wave expanding outwards */
.obi-pulse-wave {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px solid rgba(139, 30, 34, 0.2);
    border-radius: 50%;
    animation: obi-wave-expand 4s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes obi-wave-expand {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Localized Central Shield Container */
.obi-logo-shield-holder {
    position: relative;
    z-index: 10;
    background-color: var(--obi-brand-secondary);
    padding: 40px;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(30, 41, 59, 0.05), 0 0 40px rgba(139, 30, 34, 0.03);
    border: 1px solid var(--obi-border-color);
    animation: obi-shield-float 6s infinite ease-in-out;
    width: 200px;
    height: 200px;
}

.obi-hero-main-logo {
    width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(11, 12, 16, 0.04));
    display: none;
}

@keyframes obi-shield-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* --- THREE-LAYER ADAPTIVE MATRIX (HERO SCREEN OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .obi-hero-split {
        flex-direction: column-reverse; /* Push visual up on medium screens, content down */
        gap: 50px;
        text-align: center;
    }
    .obi-hero-lead-text {
        margin-left: auto;
        margin-right: auto;
    }
    .obi-hero-meta-grid {
        text-align: left;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .obi-hero-actions {
        justify-content: center;
    }
    .obi-visual-canvas {
        width: 360px;
        height: 360px;
    }
    .obi-logo-shield-holder {
        padding: 30px;
    }
    .obi-hero-main-logo {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .obi-hero-headline {
        font-size: 34px;
        line-height: 1.2;
    }
    .obi-hero-lead-text {
        font-size: 14px;
        line-height: 1.7;
    }
    .obi-hero-meta-grid {
        flex-direction: column;
        gap: 20px;
    }
    .obi-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .obi-hero-btn-primary,
    .obi-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .obi-visual-canvas {
        width: 280px;
        height: 280px;
    }
    .obi-logo-shield-holder {
        padding: 25px;
    }
    .obi-hero-main-logo {
        width: 120px;
    }
}


/* --- SECTION 3: CORPORATE PROFILE & LIVING MATRIX --- */

.obi-profile-section {
    padding: 120px 0;
    background-color: var(--obi-brand-secondary);
    /* Pure white contrast block */
    border-top: 1px solid var(--obi-border-color);
    border-bottom: 1px solid var(--obi-border-color);
    position: relative;
    overflow: hidden;
}

.obi-profile-section:after {
    content: '';
    position: absolute;
    top: 57%;
    right: 250px;
    width: 550px;
    height: 100%;
    background: url('/50.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

.obi-profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.obi-profile-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.obi-profile-text-zone {
    flex: 1.1;
}

.obi-profile-visual-zone {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Local Section Badge Typography */
.obi-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.obi-profile-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 25px;
}

.obi-profile-lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--obi-typography-base);
    font-weight: 500;
    margin-bottom: 20px;
    text-align: justify;
}

.obi-profile-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--obi-text-muted);
    margin-bottom: 45px;
    text-align: justify;
}

/* Strategic Future Vector Cards Grid */
.obi-vector-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.obi-vector-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: var(--obi-bg-canvas); /* Soft Slate */
    border: 1px solid var(--obi-border-color);
    border-radius: 4px;
    transition: var(--obi-transition);
}

.obi-vector-card:hover {
    border-color: var(--obi-brand-primary);
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(139, 30, 34, 0.04);
}

.obi-card-icon-box {
    font-size: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    width: 46px;
    height: 46px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(139, 30, 34, 0.15);
}

.obi-card-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.obi-card-text p {
    font-family: var(--obi-font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--obi-text-muted);
}

/* LIVING VISUAL RADAR ENGINE STYLES (60 FPS INFRASTRUCTURE) */
.obi-interactive-hub-frame {
    position: relative;
    width: 440px;
    height: 440px;
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    border-radius: 50%;
    box-shadow: inset 0 0 40px rgba(30, 41, 59, 0.03);
}

/* Native Self-drawn SVG styling elements */
.obi-radar-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
}

.obi-svg-circle-line {
    fill: none;
    stroke: rgba(30, 41, 59, 0.06);
    stroke-width: 1px;
}

.obi-svg-axis-line {
    stroke: rgba(30, 41, 59, 0.04);
    stroke-width: 1px;
    stroke-dasharray: 4 4;
}

/* Scanning ray sweep animation */
.obi-svg-sweep-line {
    stroke: var(--obi-brand-primary);
    stroke-width: 2px;
    opacity: 0.4;
    transform-origin: 200px 200px;
    animation: obi-radar-sweep 6s infinite linear;
}

@keyframes obi-radar-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Living Hub Geo-Nodes Configuration */
.obi-hub-node {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.obi-node-core {
    width: 38px;
    height: 38px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-typography-base);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--obi-transition);
    position: relative;
    z-index: 5;
}

/* Wave expansion effect around node targets */
.obi-node-pulse-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--obi-brand-primary);
    opacity: 0;
    z-index: 1;
    animation: obi-node-glow 3s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes obi-node-glow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Individual Coordinates positioning on radar field */
.obi-node-center { top: 181px; left: 181px; } /* Center HQ Axis */
.obi-node-hub1   { top: 70px; left: 260px; }   /* Tanjung Priok Port Node */
.obi-node-hub2   { top: 290px; left: 90px; }   /* Java Logistics Belt Node */

/* Interactive Hover States and Tooltips */
.obi-node-tooltip {
    position: absolute;
    bottom: -32px;
    white-space: nowrap;
    background-color: var(--obi-typography-base);
    color: #ffffff;
    font-family: var(--obi-font-body);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: var(--obi-transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.obi-hub-node:hover .obi-node-core {
    background-color: var(--obi-brand-primary);
    border-color: var(--obi-brand-primary);
    color: #ffffff;
    transform: scale(1.1);
}

.obi-hub-node:hover .obi-node-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Ambient glow background cloud under visual layer */
.obi-hub-aurora {
    position: absolute;
    top: 25%; left: 25%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(139, 30, 34, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* --- THREE-LAYER ADAPTIVE MATRIX (PROFILE OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-profile-section { padding: 80px 0; }
    .obi-profile-split {
        flex-direction: column;
        gap: 60px;
    }
    .obi-profile-lead, .obi-profile-desc { text-align: center; }
    .obi-profile-text-zone { text-align: center; width: 100%; }
    .obi-vector-card { text-align: left; }
}

@media (max-width: 768px) {
    .obi-profile-title { font-size: 28px; }
    .obi-profile-lead { font-size: 15px; }
    .obi-profile-desc { font-size: 14px; margin-bottom: 30px; }
    .obi-interactive-hub-frame {
        width: 300px;
        height: 300px;
    }
    /* Scaled re-positioning coordinates for mobile radar grid dimensions */
    .obi-node-center { top: 131px; left: 131px; }
    .obi-node-hub1   { top: 40px; left: 190px; }
    .obi-node-hub2   { top: 210px; left: 50px; }
    .obi-radar-svg { transform: scale(1); transform-origin: center; }
    /* Re-mapping origin point for the sweep vector inside downscaled dimensions */
    .obi-svg-sweep-line { transform-origin: 150px 150px; }
    svg:not(:root) { overflow: visible; }
    .obi-svg-circle-line:nth-child(1) { r: 130px; cx: 150px; cy: 150px; }
    .obi-svg-circle-line:nth-child(2) { r: 90px; cx: 150px; cy: 150px; }
    .obi-svg-circle-line:nth-child(3) { r: 45px; cx: 150px; cy: 150px; }
    .obi-svg-axis-line:nth-child(4) { x1: 150px; y1: 10px; x2: 150px; y2: 290px; }
    .obi-svg-axis-line:nth-child(5) { x1: 10px; y1: 150px; x2: 290px; y2: 150px; }
}

/* --- L7: RUNTIME INTERACTIVE REVEAL MATRIX (FALLBACK ALIGNED) --- */

/* Elements are visible and properly positioned by default to prevent script lockouts */
.obi-vector-card {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

.obi-interactive-hub-frame {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-sizing: border-box;
}

/* Retaining runtime interaction classes for seamless reverse compatibility */
.obi-vector-card.obi-reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.obi-interactive-hub-frame.obi-reveal-active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Orderly layout appearance delays */
.obi-vector-card:nth-child(1) { transition-delay: 0.1s; }
.obi-vector-card:nth-child(2) { transition-delay: 0.25s; }
.obi-vector-card:nth-child(3) { transition-delay: 0.4s; }

/* --- SECTION 4: CORE SOURCING & DISTRIBUTION RAILS --- */

.obi-supply-section {
    padding: 120px 0;
    background-color: var(--obi-bg-canvas);
    /* Soft Slate Canvas background */
    position: relative;
    z-index: 1;
}

.obi-supply-section:after {
    content: '';
    position: absolute;
    top: 28%;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 100%;
    background: url('/55555.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 1250px;
    border-radius: 4px;
    z-index: -1;
    opacity: 0.6;
}

.obi-supply-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Local Section Header Design Layout */
.obi-supply-header-block {
    text-align: center;
    margin-bottom: 65px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.obi-supply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.obi-supply-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.obi-supply-subtitle {
    font-family: var(--obi-font-body);
    font-size: 15px;
    color: var(--obi-text-muted);
    line-height: 1.65;
}

/* 3x2 Matrix Grid Infrastructure */
.obi-supply-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.obi-supply-card {
    background-color: #ffffffe0;
    border: 1px solid var(--obi-border-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    transition: var(--obi-transition);
    box-sizing: border-box;
}

/* Vertical colored crimson rail indicator that activates on hover */
.obi-card-rail-marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: var(--obi-transition);
}

.obi-supply-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.04), 0 5px 15px rgba(139, 30, 34, 0.02);
    border-color: rgba(139, 30, 34, 0.15);
}

.obi-supply-card:hover .obi-card-rail-marker {
    background-color: var(--obi-brand-primary); /* Activates industrial crimson light marker */
}

.obi-supply-card:hover .obi-icon-frame {
    background-color: var(--obi-brand-primary);
    color: #ffffff;
}

.obi-card-body {
    padding: 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.obi-card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.obi-icon-frame {
    font-size: 18px;
    color: var(--obi-brand-primary);
    background-color: rgba(139, 30, 34, 0.04);
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--obi-transition);
}

.obi-stage-num {
    font-family: var(--obi-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-text-muted);
    background-color: var(--obi-bg-canvas);
    padding: 4px 10px;
    border-radius: 3px;
}

.obi-card-content h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.obi-card-content p {
    font-family: var(--obi-font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--obi-typography-base);
    text-align: justify;
}

/* Horizontal Conversion Action Plank Style */
.obi-supply-cta-plank {
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    padding: 24px 40px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.02);
}

.obi-plank-text {
    font-family: var(--obi-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--obi-typography-base);
}

.obi-plank-button {
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    color: #ffffff !important;
    font-family: var(--obi-font-headings);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(139, 30, 34, 0.15);
    flex-shrink: 0;
}

.obi-plank-button i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.obi-plank-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 30, 34, 0.25);
}

.obi-plank-button:hover i {
    transform: translateX(4px);
}

/* --- THREE-LAYER ADAPTIVE MATRIX (SUPPLY SERVICES OVERRIDES) --- */

@media (max-width: 1140px) {
    .obi-supply-matrix {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns grid for tablets/notebooks */
    }
}

@media (max-width: 1024px) {
    .obi-supply-section { padding: 80px 0; }
    .obi-supply-title { font-size: 32px; }
    .obi-supply-cta-plank {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    .obi-plank-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .obi-supply-title { font-size: 26px; }
    .obi-supply-matrix {
        grid-template-columns: 1fr; /* 1 Column single stack grid for smartphones */
        gap: 20px;
    }
    .obi-card-body { padding: 25px; }
    .obi-card-content p { text-align: left; }
}


/* --- SECTION 5: INDUSTRIAL ENGINEERING SUPPORT MATRIX --- */

.obi-engineering-section {
    padding: 120px 0;
    background-color: var(--obi-brand-secondary);
    /* Pure White contrast canvas floor */
    border-bottom: 1px solid var(--obi-border-color);
    position: relative;
}

.obi-engineering-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.obi-engineering-split {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.obi-eng-manifest-zone {
    flex: 0.9;
    position: sticky;
    /* Keeps the manifest block locked during scroll for premium feel */
    top: 130px;
}

.obi-eng-rails-zone {
    flex: 1.1;
}

/* Local Section Badge Typography */
.obi-eng-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.obi-eng-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
}

/* Segmented Content Infrastructure text styling */
.obi-segmented-text-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.obi-segment-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.obi-segment-line {
    width: 2px;
    height: 45px;
    background-color: var(--obi-brand-primary);
    flex-shrink: 0;
    display: block;
}

.obi-segment-item p {
    font-family: var(--obi-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--obi-text-muted);
    text-align: justify;
}

/* RE-ENGINEERED LINEAR GAUGE SCANNING MODULE */
.obi-diagnostics-viz-box {
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    padding: 24px 20px;
    border-radius: 4px;
    max-width: 380px;
}

.obi-target-svg {
    display: block;
    margin-bottom: 10px;
    overflow: visible;
    /* Prevents calibration sphere clipping at boundaries */
}

.obi-svg-base-track {
    stroke: rgba(30, 41, 59, 0.06);
    stroke-width: 2px;
    stroke-linecap: round;
}

.obi-svg-target-line {
    stroke: rgba(30, 41, 59, 0.15);
    stroke-width: 1px;
}

/* Dynamic growing laser beam synchronization track */
.obi-svg-laser-beam {
    stroke: var(--obi-brand-primary);
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: obi-laser-beam-expand 3s infinite linear;
}

@keyframes obi-laser-beam-expand {

    0%,
    100% {
        stroke-dashoffset: 180;
    }

    50% {
        stroke-dashoffset: 0;
    }
}

/* Calibration node traversing full length gradually back and forth */
.obi-svg-scanning-sphere {
    fill: var(--obi-brand-primary);
    filter: drop-shadow(0 0 6px rgba(139, 30, 34, 0.6));
    animation: obi-linear-sphere-scan 3s infinite ease-in-out;
}

@keyframes obi-linear-sphere-scan {
    0% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(190px);
    }

    100% {
        transform: translateX(10px);
    }
}

.obi-viz-label {
    font-family: var(--obi-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-text-muted);
    display: block;
}

/* HORIZONTAL TECHNICAL RAILS MODIFIED ARCHITECTURE */
.obi-technical-rails-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.obi-tech-rail-item {
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    padding: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 35px;
    transition: var(--obi-transition);
    box-sizing: border-box;
    cursor: default;
    /* Fixed rule: strictly forces browser cursor default state */
    position: relative;
    overflow: hidden;
}

/* Clean corporate watermark hidden by default in the architecture background stack */
.obi-rail-watermark {
    position: absolute;
    right: 20px;
    bottom: -10px;
    font-family: var(--obi-font-headings);
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(139, 30, 34, 0.03);
    /* Ultra soft elegant blend outline */
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: var(--obi-transition);
    white-space: nowrap;
    z-index: 1;
}

.obi-rail-prefix-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 70px;
    position: relative;
    z-index: 5;
}

.obi-rail-number {
    font-family: var(--obi-font-headings);
    font-size: 28px;
    font-weight: 700;
    color: rgba(30, 41, 59, 0.15);
    line-height: 1;
    transition: var(--obi-transition);
}

.obi-rail-category {
    font-family: var(--obi-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-text-muted);
    margin-top: 4px;
}

.obi-rail-main-content {
    flex: 1;
    position: relative;
    z-index: 5;
}

.obi-rail-main-content h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    transition: var(--obi-transition);
}

.obi-rail-main-content p {
    font-family: var(--obi-font-body);
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--obi-text-muted);
    text-align: justify;
    transition: var(--obi-transition);
}

/* Interactive Runtime Hovers: Shifts color tones and reveals watermark gracefully */
.obi-tech-rail-item:hover {
    background-color: #ffffff;
    border-color: rgba(139, 30, 34, 0.15);
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.04);
}

.obi-tech-rail-item:hover .obi-rail-number {
    color: var(--obi-brand-primary);
}

.obi-tech-rail-item:hover .obi-rail-main-content h3 {
    color: var(--obi-brand-primary);
}

.obi-tech-rail-item:hover .obi-rail-main-content p {
    color: var(--obi-typography-base);
    /* Enhances text contrast slightly during hover focus */
}

.obi-tech-rail-item:hover .obi-rail-watermark {
    opacity: 1;
    transform: translateY(0);
    /* Smoothly lifts corporate logo imprint from background */
}

/* --- THREE-LAYER ADAPTIVE MATRIX (ENGINEERING SUPPORT OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-engineering-section {
        padding: 80px 0;
    }

    .obi-engineering-split {
        flex-direction: column;
        gap: 50px;
    }

    .obi-eng-manifest-zone {
        position: static;
        /* Disable sticky pinning behavior on tablet viewports */
        width: 100%;
        text-align: center;
    }

    .obi-segment-item {
        text-align: left;
    }

    .obi-diagnostics-viz-box {
        margin: 0 auto;
        text-align: left;
    }

    .obi-tech-rail-item {
        padding: 25px;
    }

    .obi-rail-watermark {
        font-size: 32px;
        bottom: -5px;
    }
}

@media (max-width: 768px) {
    .obi-eng-title {
        font-size: 30px;
    }

    .obi-tech-rail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .obi-rail-prefix-box {
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .obi-rail-category {
        margin-top: 0;
    }

    .obi-rail-main-content p {
        text-align: left;
    }

    .obi-rail-watermark {
        display: none;
    }

    /* Drop heavy text layers on smartphone widths to save space */
}


/* --- SECTION 6: INDUSTRIAL PRODUCT GROUPS DIRECTORY --- */

.obi-products-section {
    padding: 120px 0;
    background-color: var(--obi-bg-canvas);
    /* Soft Slate Canvas floor background */
    position: relative;
}

.obi-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Local Section Header Design Layout */
.obi-products-header-block {
    text-align: center;
    margin-bottom: 70px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.obi-products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.obi-products-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.obi-products-subtitle {
    font-family: var(--obi-font-body);
    font-size: 15px;
    color: var(--obi-text-muted);
    line-height: 1.65;
}

/* Master Division Layout Chain */
.obi-divisions-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.obi-division-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Main Broad Heading Block Style */
.obi-division-main-card {
    background-color: var(--obi-brand-secondary);
    /* Pure White block */
    border: 1px solid var(--obi-border-color);
    border-bottom: none;
    /* Merges visually into the underlying rails group border stack */
    padding: 40px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.02);
    box-sizing: border-box;
    position: relative;
}

.obi-division-main-card:after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 190px;
    height: 190px;
    background: url(/50.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}
.obi-division-main-card.part_1:after {
    content: '';
    background: url(/p1.png);
    background-size: cover;
}
.obi-division-main-card.part_2:after {
    content: '';
    background: url(/p2.png);
    background-size: cover;
}
.obi-division-main-card.part_3:after {
    content: '';
    background: url(/p3.png);
    background-size: cover;
}

.obi-division-caption {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.obi-division-tag {
    font-family: var(--obi-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    padding: 4px 10px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(139, 30, 34, 0.2);
}

.obi-division-caption h3 {
    font-size: 22px;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.obi-division-desc {
    font-family: var(--obi-font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--obi-text-muted);
    max-width: 950px;
}

/* The Three Lines Group Framework Container */
.obi-product-rails-group {
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.03);
}

/* Single Technical Product Rail Line Style */
.obi-product-rail-line {
    border-top: 1px solid var(--obi-border-color);
    /* Creates clean dividing lines between subcategories */
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--obi-transition);
    cursor: default;
    /* Enforces precise non-clickable B2B layout status */
    position: relative;
    box-sizing: border-box;
}

/* Left hidden crimson line shackle indicator that stretches dynamically on focus hover */
.obi-product-rail-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--obi-brand-primary);
    transform: scaleY(0);
    transition: var(--obi-transition);
}

.obi-rail-indicator-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(30, 41, 59, 0.2);
    border-radius: 50%;
    transition: var(--obi-transition);
    flex-shrink: 0;
}

.obi-rail-text-box {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.obi-rail-text-box h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 320px;
    /* Locks headings width uniformly for strict layout symmetry */
    flex-shrink: 0;
    transition: var(--obi-transition);
}

.obi-rail-text-box p {
    font-family: var(--obi-font-body);
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--obi-text-muted);
    margin-bottom: 0;
    transition: var(--obi-transition);
}

/* Interactive Line Hover Rules */
.obi-product-rail-line:hover {
    background-color: rgba(30, 41, 59, 0.02);
    /* Soft gray background tint on focus */
}

.obi-product-rail-line:hover::before {
    transform: scaleY(1);
    /* Smooth vertical expansion of the primary brand marker */
}

.obi-product-rail-line:hover .obi-rail-indicator-dot {
    background-color: var(--obi-brand-primary);
    transform: scale(1.3);
}

.obi-product-rail-line:hover h4 {
    color: var(--obi-brand-primary);
}

.obi-product-rail-line:hover p {
    color: var(--obi-typography-base);
    /* Shifts subtext contrast for enhanced visibility */
}

/* --- THREE-LAYER ADAPTIVE MATRIX (PRODUCTS DIRECTORY OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-products-section {
        padding: 80px 0;
    }

    .obi-products-title {
        font-size: 32px;
    }

    .obi-division-main-card {
        padding: 30px;
    }

    .obi-product-rail-line {
        padding: 20px 30px;
    }

    .obi-rail-text-box {
        gap: 20px;
    }

    .obi-rail-text-box h4 {
        width: 260px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .obi-products-title {
        font-size: 26px;
    }

    .obi-division-caption {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .obi-division-caption h3 {
        font-size: 18px;
    }

    .obi-division-desc {
        font-size: 13.5px;
    }

    .obi-product-rail-line {
        padding: 20px;
    }

    .obi-rail-text-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .obi-rail-text-box h4 {
        width: auto;
        font-size: 13px;
    }

    .obi-rail-text-box p {
        font-size: 13px;
        text-align: left;
    }

    .obi-rail-indicator-dot {
        display: none;
    }

    /* Drop dot layout on smartphone viewports for line alignment saving */
}


/* --- SECTION 7: VERIFIED CORPORATE NETWORK & ALLIANCES --- */

.obi-partners-section {
    padding: 120px 0;
    background-color: var(--obi-brand-secondary);
    /* Pure White contrast floor section */
    border-bottom: 1px solid var(--obi-border-color);
    position: relative;
}

.obi-partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Local Section Header Design Layout */
.obi-partners-header-block {
    text-align: center;
    margin-bottom: 65px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.obi-partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.obi-partners-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.obi-partners-subtitle {
    font-family: var(--obi-font-body);
    font-size: 15px;
    color: var(--obi-text-muted);
    line-height: 1.65;
}

/* 10 Items Symmetrical Grid Layout */
.obi-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Balanced 5x2 grid setup on desktop screens */
    gap: 20px;
    margin-bottom: 60px;
}

.obi-partner-card {
    background-color: var(--obi-bg-canvas);
    /* Soft Slate base color tint */
    border: 1px solid var(--obi-border-color);
    padding: 35px 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--obi-transition);
    cursor: default;
    /* Enforces strict non-clickable status framework */
    box-sizing: border-box;
}

.obi-partner-card img {
    max-width: 150px;
    height: auto;
    margin: 0;
}

/* Custom Geometric Vector Logo Simulation Emblems */
.obi-partner-emblem {
    font-size: 24px;
    color: var(--obi-text-muted);
    margin-bottom: 0;
    opacity: 0.45;
    /* Native monochrome baseline opacity */
    transition: var(--obi-transition);
}

.obi-partner-name {
    font-family: var(--obi-font-headings);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--obi-typography-base);
    letter-spacing: -0.2px;
    margin-bottom: 4px;
    transition: var(--obi-transition);
}

.obi-partner-geo {
    font-family: var(--obi-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-text-muted);
    transition: var(--obi-transition);
}

/* Premium Crimson Metallic Interactive Hover State */
.obi-partner-card:hover {
    background: linear-gradient(135deg, #68151845 100%, #68151845 0%);
    border-color: #68151845;
    box-shadow: 0 12px 30px rgba(139, 30, 34, 0.25);
    transform: translateY(-2px);
}

.obi-partner-card:hover .obi-partner-emblem {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
}

.obi-partner-card:hover .obi-partner-name {
    color: #ffffff;
}

.obi-partner-card:hover .obi-partner-geo {
    color: rgba(255, 255, 255, 0.6);
    /* Soft contrasted platinum tag opacity allocation */
}

/* EXTENDED ALLIANCE MANIFEST PARAGRAPH BLOCK STYLE */
.obi-alliance-manifest-block {
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.01);
}

.obi-manifest-decor-bar {
    position: absolute;
    top: 0;
    left: 40px;
    width: 60px;
    height: 3px;
    background-color: var(--obi-brand-primary);
    /* Industrial branding accent anchor */
}

.obi-manifest-text {
    font-family: var(--obi-font-body);
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--obi-text-muted);
    text-align: justify;
}

/* --- THREE-LAYER ADAPTIVE MATRIX (PARTNERS NETWORK OVERRIDES) --- */

@media (max-width: 1200px) {
    .obi-partners-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Re-mapping into 4 columns layout for netbooks */
    }
}

@media (max-width: 1024px) {
    .obi-partners-section {
        padding: 80px 0;
    }

    .obi-partners-title {
        font-size: 32px;
    }

    .obi-partner-card {
        padding: 25px 15px;
    }

    .obi-alliance-manifest-block {
        padding: 30px;
    }

    .obi-manifest-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .obi-partners-title {
        font-size: 26px;
    }

    .obi-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns grid layout configuration for smartphones */
        gap: 15px;
    }

    .obi-manifest-text {
        font-size: 13.5px;
        line-height: 1.7;
        text-align: left;
    }
}


/* --- SECTION 8: SUPPLY CHAIN CUSTOMIZATION & ACCELERATION RUNWAY --- */

.obi-custom-acceleration-section {
    padding: 120px 0;
    background-color: var(--obi-bg-canvas);
    /* Soft Slate Canvas floor background */
    position: relative;
}

.obi-runway-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Local Section Header Design Layout */
.obi-runway-header-block {
    text-align: center;
    margin-bottom: 80px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.obi-runway-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.obi-runway-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.obi-runway-subtitle {
    font-family: var(--obi-font-body);
    font-size: 15px;
    color: var(--obi-text-muted);
    line-height: 1.65;
}

/* Linear Timeline Infrastructure Framework */
.obi-timeline-rails {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

/* Central background vertical geometry timeline axis line */
.obi-timeline-back-axis {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 27px;
    /* Aligned precisely with the center of the step circles */
    width: 2px;
    background-color: rgba(30, 41, 59, 0.08);
}

.obi-timeline-node {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    position: relative;
    z-index: 5;
}

/* Numeric Step Circle Geometry Marker */
.obi-node-marker-box {
    width: 56px;
    height: 56px;
    background-color: var(--obi-brand-secondary);
    /* Pure White circle */
    border: 2px solid rgba(30, 41, 59, 0.12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.03);
    transition: var(--obi-transition);
}

.obi-node-num {
    font-family: var(--obi-font-headings);
    font-size: 16px;
    font-weight: 700;
    color: var(--obi-typography-base);
    transition: var(--obi-transition);
}

/* Content Payload Area Styling */
.obi-node-payload {
    background-color: var(--obi-brand-secondary);
    /* Pure White payload container */
    border: 1px solid var(--obi-border-color);
    padding: 35px;
    border-radius: 4px;
    flex: 1;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.02);
    transition: var(--obi-transition);
}

.obi-node-payload h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    transition: var(--obi-transition);
}

.obi-node-payload p {
    font-family: var(--obi-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--obi-text-muted);
    text-align: justify;
    margin-bottom: 0;
}

/* Interactive Timeline Node Hover Effects */
.obi-timeline-node:hover .obi-node-marker-box {
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    border-color: var(--obi-brand-primary);
    box-shadow: 0 6px 15px rgba(139, 30, 34, 0.25);
    transform: scale(1.05);
}

.obi-timeline-node:hover .obi-node-num {
    color: #ffffff;
}

.obi-timeline-node:hover .obi-node-payload {
    border-color: rgba(139, 30, 34, 0.15);
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.04);
}

.obi-timeline-node:hover .obi-node-payload h3 {
    color: var(--obi-brand-primary);
}

/* --- INTEGRATED ACCELERATION TRIGGER PLANK (RE-ENGINEERED LIGHT THEME) --- */

.obi-acceleration-trigger-plank {
    background-color: var(--obi-brand-secondary);
    /* Pure White block for perfect light canvas integration */
    border: 1px solid var(--obi-border-color);
    border-top: 3px solid var(--obi-brand-primary);
    /* Industrial Crimson top accent line indicator */
    border-radius: 4px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 41, 59, 0.04), 0 5px 15px rgba(139, 30, 34, 0.01);
    box-sizing: border-box;
    transition: var(--obi-transition);
}

/* Subtle underlying background soft crimson aurora reflection glow */
.obi-plank-ambient-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 30, 34, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.obi-plank-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 5;
}

.obi-plank-message-box {
    flex: 1;
}

.obi-plank-headline {
    font-family: var(--obi-font-headings);
    font-size: 26px;
    font-weight: 700;
    color: var(--obi-typography-base);
    /* Changed from white to Deep Slate corporate typography */
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.obi-plank-subtext {
    font-family: var(--obi-font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--obi-text-muted);
    /* Swapped to standard metallic muted gray for high readability */
    margin-bottom: 0;
    max-width: 720px;
}

.obi-plank-action-box {
    flex: 0 0 auto;
}

/* Micro interaction hover effect for the entire plank node matrix */
.obi-acceleration-trigger-plank:hover {
    border-color: rgba(139, 30, 34, 0.2);
    box-shadow: 0 20px 50px rgba(30, 41, 59, 0.06), 0 5px 20px rgba(139, 30, 34, 0.03);
    transform: translateY(-2px);
}

/* Premium Heavy Action Launch Button */
.sk-acceleration-hot-button {
    background: linear-gradient(135deg, var(--obi-brand-primary) 0%, #681518 100%);
    color: #ffffff !important;
    font-family: var(--obi-font-headings);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 38px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(139, 30, 34, 0.3);
    transition: var(--obi-transition);
}

.sk-acceleration-hot-button i {
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sk-acceleration-hot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 30, 34, 0.45);
}

/* Micro-interaction: rocket tilts up and shifts forward during focus hover */
.sk-acceleration-hot-button:hover i {
    transform: translate(4px, -4px) rotate(15deg);
}

/* --- THREE-LAYER ADAPTIVE MATRIX (CUSTOMIZATION OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-custom-acceleration-section {
        padding: 80px 0;
    }

    .obi-runway-title {
        font-size: 32px;
    }

    .obi-node-payload {
        padding: 25px;
    }

    .obi-acceleration-trigger-plank {
        padding: 40px;
    }

    .obi-plank-content-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .obi-plank-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .sk-acceleration-hot-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .obi-runway-title {
        font-size: 26px;
    }

    .obi-timeline-back-axis {
        display: none;
    }

    /* Drop axis strip layout on mobile views to maximize viewport width space */
    .obi-timeline-node {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .obi-node-marker-box {
        width: 44px;
        height: 44px;
    }

    .obi-node-num {
        font-size: 14px;
    }

    .obi-node-payload {
        width: 100%;
    }

    .obi-node-payload p {
        text-align: left;
    }

    .obi-plank-headline {
        font-size: 20px;
    }

    .obi-plank-subtext {
        font-size: 13px;
        text-align: left;
    }
}


/* ================================================================== */
/* --- SECTION 9: CORPORATE CONTACTS & INTAKE INFRASTRUCTURE         --- */
/* ================================================================== */

.obi-contacts-section {
    padding: 120px 0;
    background-color: var(--obi-brand-secondary);
    position: relative;
    box-sizing: border-box;
}

.obi-contacts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.obi-contacts-split {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    box-sizing: border-box;
}

/* --- L1: LEFT HALF - CORPORATE TEXT & REQUISITES LAYER --- */

.obi-contacts-info-zone {
    flex: 1;
    box-sizing: border-box;
}

.obi-contacts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    color: var(--obi-brand-primary);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.obi-contacts-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.obi-contacts-lead {
    font-family: var(--obi-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--obi-text-muted);
    margin-bottom: 45px;
    text-align: justify;
}

.obi-requisites-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.obi-requisite-node {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.obi-req-icon-box {
    font-size: 16px;
    color: var(--obi-brand-primary);
    background-color: rgba(139, 30, 34, 0.04);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(139, 30, 34, 0.08);
}

.obi-req-text h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.obi-req-text p {
    font-family: var(--obi-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--obi-text-muted);
    margin-bottom: 0;
}

.obi-sub-hours {
    font-size: 11px;
    font-weight: 700;
    color: var(--obi-brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obi-req-highlight {
    color: var(--obi-typography-base);
    font-weight: 700;
}

.obi-contact-link {
    color: var(--obi-brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--obi-transition);
}

.obi-contact-link:hover {
    color: var(--obi-typography-base);
}

.obi-mail-divider {
    color: rgba(30, 41, 59, 0.2);
    margin: 0 10px;
    font-weight: 400;
}


/* --- L2: RIGHT HALF - INTERACTIVE BLUEPRINT MAP & CONTROLS --- */

.obi-contacts-map-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.obi-map-canvas-card {
    background-color: var(--obi-bg-canvas);
    border: 1px solid var(--obi-border-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.02);
    transition: var(--obi-transition);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    /* Locks the master card width symmetry layout dimensions */
    box-sizing: border-box;
}

.obi-vector-map-blueprint {
    height: 340px;
    position: relative;
    background-color: #f1f5f9;
    /* Industrial blueprint background gray */
    overflow: hidden;
    width: 100%;
}

.obi-blueprint-grid-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(30, 41, 59, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 41, 59, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.obi-vector-axis {
    position: absolute;
    background-color: rgba(30, 41, 59, 0.1);
    transition: var(--obi-transition);
}

.obi-axis-x {
    top: 60%;
    /* Crosses precisely through target HQ node coordinates */
    left: 0;
    width: 100%;
    height: 2px;
}

.obi-axis-y {
    top: 0;
    left: 45%;
    width: 2px;
    height: 100%;
    background-color: transparent;
    border-left: 2px dashed rgba(30, 41, 59, 0.12);
}

.obi-map-target-node {
    position: absolute;
    top: 60%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.obi-target-pin-core {
    width: 32px;
    height: 32px;
    background-color: var(--obi-brand-secondary);
    border: 2px solid var(--obi-brand-primary);
    color: var(--obi-brand-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(139, 30, 34, 0.2);
    position: relative;
    z-index: 5;
    transition: var(--obi-transition);
}

.obi-target-radar-ping {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--obi-brand-primary);
    border-radius: 50%;
    z-index: 1;
    animation: obi-map-ping 2.5s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes obi-map-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.obi-geo-tag {
    position: absolute;
    font-family: var(--obi-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    padding: 4px 8px;
    border-radius: 3px;
    color: var(--obi-text-muted);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: var(--obi-transition);
}

.obi-tag-hq {
    top: 48%;
    left: 49%;
    color: var(--obi-brand-primary);
    font-weight: 800;
    border-color: rgba(139, 30, 34, 0.15);
}

.obi-tag-port {
    top: 15%;
    left: 49%;
}

.obi-tag-strait {
    top: 80%;
    left: 15%;
}

/* The New Google Maps Inner Anchor Link Core Wrapper */
.obi-vector-map-anchor {
    display: block;
    width: 100%;
    text-decoration: none !important;
    box-sizing: border-box;
}

.obi-map-footer-action {
    background-color: var(--obi-brand-secondary);
    border-top: 1px solid var(--obi-border-color);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--obi-font-headings);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-typography-base);
    transition: var(--obi-transition);
}

.obi-map-footer-action i {
    font-size: 11px;
    color: var(--obi-text-muted);
    transition: var(--obi-transition);
}


/* --- L3: RUNTIME HOVER TRANSLATIONS MATRIX (NEW HIERARCHY SHIFT) --- */

.obi-map-canvas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(30, 41, 59, 0.05);
    border-color: rgba(139, 30, 34, 0.15);
}

.obi-map-canvas-card:hover .obi-axis-x {
    background-color: var(--obi-brand-primary);
    /* Active beam trace effect */
    opacity: 0.3;
}

.obi-map-canvas-card:hover .obi-axis-y {
    border-left-color: var(--obi-brand-primary);
    opacity: 0.4;
}

.obi-map-canvas-card:hover .obi-target-pin-core {
    background-color: var(--obi-brand-primary);
    color: #ffffff;
    transform: scale(1.08) rotate(90deg);
    /* High-tech targeting tracking rotational effect */
}

.obi-map-canvas-card:hover .obi-tag-hq {
    background-color: var(--obi-brand-primary);
    color: #ffffff;
    border-color: var(--obi-brand-primary);
}

.obi-vector-map-anchor:hover .obi-map-footer-action {
    color: var(--obi-brand-primary);
    background-color: rgba(139, 30, 34, 0.01);
}

.obi-vector-map-anchor:hover .obi-map-footer-action i {
    color: var(--obi-brand-primary);
    transform: translate(2px, -2px);
}


/* --- L4: INTEGRATED COMPLIANCE FRAME MODULE (ALIGNED PIXEL TO PIXEL) --- */

.obi-contacts-legal-frame {
    margin-top: 25px;
    /* Creates stable vertical distance strictly below the map card */
    width: 100%;
    /* Enforces the container to match the exact 100% width of the card above */
    max-width: 550px;
    background-color: var(--obi-brand-secondary);
    border: 1px solid var(--obi-border-color);
    border-left: 3px solid var(--obi-brand-primary);
    padding: 24px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.01);
    box-sizing: border-box;
    /* Crucial: internal paddings calculate inward preventing box stretching */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.obi-legal-frame-caption {
    font-family: var(--obi-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.obi-legal-frame-caption i {
    color: var(--obi-brand-primary);
}

.obi-legal-links-cluster {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.obi-legal-node-link {
    font-family: var(--obi-font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--obi-typography-base);
    text-decoration: none;
    transition: var(--obi-transition);
}

.obi-legal-node-link:hover {
    color: var(--obi-brand-primary);
    transform: translateY(-1px);
}

.obi-legal-node-divider {
    color: rgba(30, 41, 59, 0.2);
    font-size: 13px;
    font-weight: 400;
    user-select: none;
}


/* --- L5: THREE-LAYER ADAPTIVE MATRIX (CONTACTS OVERRIDES) --- */

@media (max-width: 1024px) {
        .obi-contacts-section {
            padding: 80px 0;
        }

        .obi-contacts-title {
            font-size: 32px;
        }
        .obi-contacts-split {
            flex-direction: column;
            /* Collapses horizontal desktop grid rows into vertical single flow stack */
            gap: 50px;
        }
    
        .obi-contacts-info-zone,
        .obi-contacts-map-zone {
            width: 100%;
        }
    
        .obi-contacts-lead {
            text-align: center;
        }
    
        .obi-requisites-stack {
            max-width: 700px;
            margin: 0 auto;
            text-align: left;
        }
    
        .obi-vector-map-anchor,
        .obi-contacts-legal-frame {
            margin-left: auto;
            margin-right: auto;
        }
    
        .obi-legal-links-cluster,
        .obi-legal-frame-caption {
            justify-content: center;
        }
        }
    
        @media (max-width: 768px) {
            .obi-contacts-title {
                font-size: 26px;
            }
    
            .obi-contacts-lead {
                font-size: 14px;
                line-height: 1.7;
                text-align: left;
            }
    
            .obi-requisites-stack {
                gap: 24px;
            }
    
            .obi-requisite-node {
                gap: 15px;
            }
    
            .obi-req-text p {
                font-size: 13.5px;
            }
    
            .obi-contact-link {
                display: block;
                margin-bottom: 4px;
            }
    
            .obi-mail-divider {
                display: none;
            }
    
            /* Clears inline structural splits to preserve mobile layout space /.obi-vector-map-blueprint { height: 280px; }.obi-tag-strait { display: none; } / Drop heavy geography sublayers tags on smartphone screens scales */
        }


/* --- SECTION 10: MINIMALISTIC CORPORATE FOOTER --- */

.obi-site-footer {
    background-color: var(--obi-brand-secondary);
    /* Pure White base match */
    padding: 35px 0;
    position: relative;
    box-sizing: border-box;
}

.obi-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Darker contrasted dividing axis line for explicit B2B structural separation */
.obi-footer-matrix-line {
    border-top: 2px solid #e2e8f0;
    /* Crisp, slightly darker slate gray solid partition line */
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.obi-footer-copyright {
    font-family: var(--obi-font-body);
    font-size: 12.5px;
    color: var(--obi-text-muted);
    font-weight: 500;
    letter-spacing: -0.1px;
}

.obi-footer-security-tag {
    font-family: var(--obi-font-headings);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--obi-brand-primary);
    /* Industrial branding crimson accent mapping */
    display: flex;
    align-items: center;
    gap: 8px;
}


/* --- THREE-LAYER ADAPTIVE MATRIX (COMPLIANCE BOX & FOOTER OVERRIDES) --- */

@media (max-width: 1024px) {
    .obi-contacts-legal-frame {
        margin-left: auto;
        margin-right: auto;
    }

    .obi-legal-links-cluster {
        justify-content: center;
    }

    .obi-legal-frame-caption {
        justify-content: center;
    }

    .obi-footer-matrix-line {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .obi-contacts-legal-frame {
        padding: 20px 15px;
    }

    .obi-legal-node-link {
        font-size: 12.5px;
    }

    .obi-footer-copyright {
        font-size: 11.5px;
        line-height: 1.6;
    }
}


@media (max-width: 1366px) {
.obi-hero-section:after {
    content: '';
    position: absolute;
    top: 37%;
    right: 18px;
    width: 480px;
    height: 100%;
    background: url(/51.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}
.obi-profile-section:after {
    content: '';
    position: absolute;
    top: 57%;
    right: 50px;
    width: 500px;
    height: 100%;
    background: url(/50.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}
.obi-supply-section:after {
    content: '';
    top: 29%;
    max-width: 1310px;
}


}

@media (max-width: 1280px) {
.obi-hero-section:after {
    content: '';
    position: absolute;
    top: 41%;
    right: 15px;
    width: 450px;
    height: 100%;
    background: url(/51.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}

}

@media (max-width: 1024px) {
.obi-supply-section:after {
    content: '';
    top: 29%;
    max-width: 1200px;
}
.obi-hero-section:after {
    content: '';
    position: absolute;
    top: 14%;
    right: 0;
    left: 0;
    margin: auto;
    width: 296px;
    height: 100%;
    background: url(/51.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 9;
}
.obi-profile-section:after {
    content: '';
    position: absolute;
    top: 83%;
    right: 0;
    left: 0;
    margin: auto;
    width: 400px;
    height: 100%;
    background: url(/50.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}
.obi-division-desc {
    max-width: 750px;
}
.obi-division-main-card:after {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
 }
 .obi-navigation-rail {
    margin: 0 5px;
}
.obi-hot-button {
    padding: 10px 15px;
    font-size: 11px;
}


}

@media (max-width: 500px) {
.obi-hero-section:after,
.obi-supply-section:after {
    display: none;
}
.obi-plank-button {
    width: 90%;
}
.obi-division-main-card:after {
    content: '';
    position: absolute;
    width: 105px;
    height: 105px;
    top: 5px;
    right: 5px;
}
.obi-division-main-card {
    padding: 15px;
}
.obi-division-caption h3 {
    font-size: 17px;
    max-width: 243px;
}
.obi-partner-card img {
    max-width: 110px;
}
.obi-node-payload {
    width: 85%;
}
.sk-acceleration-hot-button {
        width: 85%;
        padding: 10px 18px;
}
.obi-acceleration-trigger-plank {
    padding: 15px;
}
.obi-contacts-legal-frame {
    padding: 15px 10px;
}
.obi-header-node {
    height: 55px;
}
.obi-nav-menu {
    gap: 0;
}
.obi-hero-container {
    max-width: 95%;
    padding: 0 10px;
}
.obi-hero-btn-primary, .obi-hero-btn-secondary {
    width: 80%;
}
.obi-profile-section:after {
    content: '';
    position: absolute;
    top: 85%;
    right: 0;
    left: 0;
    margin: auto;
    width: 250px;
    height: 100%;
    background: url(/50.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
}
.obi-plank-subtext {
    font-size: 13px;
    text-align: center;
}
.obi-target-pin-core {
    width: 32px;
    height: 29px;
}
.obi-map-target-node {
    position: absolute;
    top: 60%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 32px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.obi-logo-shield-holder {
    display: none;
}
.obi-hero-content {
    flex: 1.2;
    margin: -350px 0 0 0;
}


}