*,
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    position: relative;
    font-family: 'Raleway', 'Poppins', sans-serif;
}

:root {
    --gradient-primary: linear-gradient(145deg, #0866ad, #0a4c7e);
    --gradient-secondary: linear-gradient(145deg, #001627, #001e35);
    
    --primary: #0866ad;
    --primary-hover: #0a4c7e;
    --primary-soft: rgba(8, 102, 173, 0.1);
    --secondary: #001627;
    --secondary-hover: #001e35;
    --secondary-soft: rgba(0, 22, 39, 0.05);
    --light-bg: #ffffff;

    --text-light: #ffffff;
    --text-soft: #f8f9fa;
    --text-muted: #444c53;
    --text-dark: #001627;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(8, 102, 173, 0.15);
    --shadow-lg: 0 15px 40px rgba(8, 102, 173, 0.2);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --border-radius-xl: 32px;
}

/* Theme Block */
.theme_block {
    width: 15px;
    height: 15px;
    background-color: var(--primary);
}

/* Nav */
.landing_ind {
    width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    transition: 0.5s ease-in-out;
    
    & > .land_container {
        width: 80%;
        position: relative;
        margin: 0 auto;
        transition: 0.5s ease-in-out;
        z-index: 2;
    }
}

/* Mini Header */
.ind_mini_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    
    &.center {
        justify-content: center;
    }
    
    & > .theme_block {
        width: 15px;
        height: 15px;
        background-color: var(--primary);
    }
    
    & > span {
        font-size: 1.1em;
        font-weight: 600;
        color: var(--primary);
        letter-spacing: 2px;
    }
}

/* Section Title */
.ind_section_title {
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    
    & > span {
        color: var(--primary);
    }
    
    &.left {
        text-align: left;
    }
    
    &.light {
        color: var(--text-light);
    }
}

.ind_section_subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto;
    line-height: 1.6;
}

.ind_hero {
    position: relative;
    background: linear-gradient(135deg, #0a0a1a 0%, #001627 100%);
    overflow: hidden;
    
    & > .ind_hero_overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../IMAGES/31ac5f91ee20d3d9af2d32191d57d6hjk23.png);
        background-size: cover;
        background-position: center;
        opacity: 0.3;
        z-index: 0;
    }
    
    & > .ind_nav_wrapper {
        position: relative;
        z-index: 10;
    }
    
    & > .ind_hero_layout {
        position: relative;
        margin: 0 auto;
        padding: 40px 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        width: 85%;
        
        & > .ind_hero_content {
            padding: 20px 0;
            
            & > .ind_hero_tag {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 30px;
                
                & > .ind_tag_line {
                    width: 10px;
                    height: 10px;
                    background: var(--primary);
                    border-radius: 3px;
                }
                
                & > span {
                    color: var(--primary);
                    font-size: 0.9em;
                    font-weight: 600;
                    letter-spacing: 3px;
                    text-transform: uppercase;
                }
            }
            
            & > .ind_hero_title {
                font-size: 4em;
                line-height: 1.2;
                font-weight: 300;
                color: var(--text-light);
                margin-bottom: 25px;
                
                & > span {
                    display: block;
                    font-weight: 800;
                    background: linear-gradient(135deg, var(--primary), #adcadf);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
            }
            
            & > .ind_hero_desc {
                font-size: 1.2em;
                line-height: 1.6;
                color: rgba(255, 255, 255, 0.8);
                margin-bottom: 40px;
                max-width: 500px;
            }
            
            & > .ind_hero_stats {
                display: flex;
                gap: 40px;
                margin-bottom: 40px;
                
                & > .ind_stat {
                    display: flex;
                    flex-direction: column;
                    
                    & > .ind_stat_number {
                        font-size: 1.8em;
                        font-weight: 800;
                        color: var(--primary);
                        line-height: 1.2;
                    }
                    
                    & > .ind_stat_label {
                        font-size: 0.85em;
                        color: rgba(255, 255, 255, 0.7);
                    }
                }
            }
            
            & > .ind_hero_buttons {
                display: flex;
                gap: 20px;
                
                & > .ind_btn_primary {
                    display: inline-block;
                    padding: 16px 35px;
                    background: var(--primary);
                    color: var(--text-light);
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background-color: var(--primary-hover);
                        transform: translateY(-3px);
                        box-shadow: var(--shadow-lg);
                    }
                }
                
                & > .ind_btn_secondary {
                    display: inline-block;
                    padding: 16px 35px;
                    background: transparent;
                    color: var(--text-light);
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    border: 2px solid rgba(255, 255, 255, 0.3);
                    transition: all 0.3s ease;
                    
                    &:hover {
                        border-color: var(--primary);
                        background: rgba(8, 102, 173, 0.1);
                        transform: translateY(-3px);
                    }
                }
            }
        }
        
        & > .ind_hero_visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            
            & > .ind_supply_chain_visual {
                position: relative;
                width: 450px;
                height: 450px;
                display: flex;
                align-items: center;
                justify-content: center;
                
                & > .ind_supply_ring {
                    position: absolute;
                    width: 380px;
                    height: 380px;
                    border: 2px dashed rgba(8, 102, 173, 0.5);
                    border-radius: 50%;
                    animation: rotateRing 20s linear infinite;
                }
                
                & > .ind_supply_ring_2 {
                    position: absolute;
                    width: 280px;
                    height: 280px;
                    border: 2px dashed rgba(8, 102, 173, 0.3);
                    border-radius: 50%;
                    animation: rotateRingReverse 15s linear infinite;
                }
                
                & > .ind_supply_nodes {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    
                    & > .ind_node {
                        position: absolute;
                        background: var(--primary);
                        color: white;
                        padding: 8px 16px;
                        border-radius: 30px;
                        font-size: 0.85em;
                        font-weight: 600;
                        white-space: nowrap;
                        box-shadow: var(--shadow-md);
                        animation: pulseNode 2s ease-in-out infinite;
                        
                        &.node1 { top: 0; left: 50%; transform: translateX(-50%); --tx: -50%; }
                        &.node2 { top: 15%; right: 0; transform: translateX(30%); --tx: 30%; }
                        &.node3 { bottom: 15%; right: 0; transform: translateX(30%); --tx: 30%; }
                        &.node4 { bottom: 0; left: 50%; transform: translateX(-50%); --tx: -50%; }
                        &.node5 { bottom: 15%; left: 0; transform: translateX(-30%); --tx: -30%; }
                        &.node6 { top: 15%; left: 0; transform: translateX(-30%); --tx: -30%; }
                    }
                }
                
                & > .ind_center_circle {
                    width: 120px;
                    height: 120px;
                    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    z-index: 5;
                    box-shadow: 0 0 30px rgba(8, 102, 173, 0.5);
                    
                    & > span {
                        color: white;
                        font-weight: 700;
                        font-size: 1.1em;
                        line-height: 1.3;
                    }
                }
            }
        }
    }
    
    & > .ind_scroll_indicator {
        position: relative;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        
        & > span {
            font-size: 0.8em;
            color: rgba(255, 255, 255, 0.5);
        }
        
        & > .ind_scroll_arrow {
            font-size: 1.5em;
            color: var(--primary);
            animation: bounce 2s ease-in-out infinite;
        }
    }
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateRingReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseNode {
    0%, 100% { transform: scale(1) translateX(var(--tx, -50%)); opacity: 0.8; }
    50% { transform: scale(1.05) translateX(var(--tx, -50%)); opacity: 1; }
}

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

.ind_value_banner {
    padding: 40px 0;
    background: var(--light-bg);
    
    & > .ind_value_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        
        & > .ind_value_item {
            text-align: center;
            padding: 40px 30px;
            background: var(--text-soft);
            border-radius: var(--border-radius-lg);
            transition: all 0.3s ease;
            
            &:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-md);
            }
            
            & > .ind_value_icon {
                font-size: 3em;
                margin-bottom: 20px;
                color: var(--primary);
            }
            
            & > h3 {
                font-size: 1.3em;
                color: var(--secondary);
                margin-bottom: 15px;
                font-weight: 700;
            }
            
            & > p {
                color: var(--text-muted);
                line-height: 1.6;
                font-size: 0.95em;
            }
        }
    }
}

.ind_categories {
    padding: 40px 0;
    background: #f8fafc;
    
    & > .ind_categories_header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    & > .ind_categories_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .ind_category_card {
            position: relative;
            height: 280px;
            cursor: pointer;
            perspective: 1000px;
            
            &.flipped {
                & > .ind_card_front {
                    transform: rotateY(180deg);
                }
                
                & > .ind_card_back {
                    transform: rotateY(0);
                }
            }
            
            & > .ind_card_front,
            & > .ind_card_back {
                position: absolute;
                width: 100%;
                height: 100%;
                backface-visibility: hidden;
                border-radius: var(--border-radius-lg);
                padding: 30px;
                transition: all 0.6s ease;
                display: flex;
                flex-direction: column;
            }
            
            & > .ind_card_front {
                background-color: var(--light-bg);
                box-shadow: var(--shadow-md);
                text-align: center;
                justify-content: center;
                transform: rotateY(0);
                
                & > .ind_category_icon {
                    font-size: 3em;
                    margin-bottom: 20px;
                    color: var(--primary);
                }
                
                & > h3 {
                    font-size: 1.3em;
                    color: var(--secondary);
                    font-weight: 700;
                }
                
                & > .ind_card_hover_trigger {
                    position: absolute;
                    bottom: 20px;
                    right: 20px;
                    width: 30px;
                    height: 30px;
                    background: var(--primary-soft);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--primary);
                    font-size: 1.2em;
                    font-weight: 600;
                }
            }
            
            & > .ind_card_back {
                background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
                color: var(--text-light);
                transform: rotateY(180deg);
                justify-content: center;
                
                & > ul {
                    list-style: none;
                    padding: 0;
                    
                    & > li {
                        padding: 8px 0;
                        position: relative;
                        padding-left: 25px;
                        font-size: 0.9em;
                        
                        &::before {
                            content: '✓';
                            position: absolute;
                            left: 0;
                            color: var(--primary);
                        }
                    }
                }
            }
        }
    }
}

.ind_process {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    
    & > .ind_process_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .ind_process_header {
            text-align: center;
            margin-bottom: 60px;
            
            & > .ind_mini_header {
                justify-content: center;
                
                & > span {
                    color: var(--text-light);
                }
            }
            
            & > .ind_section_title {
                color: var(--text-light);
            }
        }
        
        & > .ind_process_flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            
            & > .ind_process_step {
                flex: 1;
                text-align: center;
                padding: 30px;
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                border-radius: var(--border-radius-lg);
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    background: rgba(255, 255, 255, 0.1);
                }
                
                & > .ind_step_number {
                    width: 50px;
                    height: 50px;
                    background: var(--primary);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5em;
                    font-weight: 700;
                    color: white;
                    margin: 0 auto 20px;
                }
                
                & > .ind_step_content {
                    & > h4 {
                        color: white;
                        font-size: 1.1em;
                        margin-bottom: 10px;
                        font-weight: 700;
                    }
                    
                    & > p {
                        color: rgba(255, 255, 255, 0.7);
                        font-size: 0.9em;
                        line-height: 1.5;
                    }
                }
            }
            
            & > .ind_process_arrow {
                font-size: 2em;
                color: var(--primary);
                font-weight: 600;
            }
        }
    }
}

.ind_benefits {
    padding: 40px 0;
    background: white;
    
    & > .ind_benefits_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .ind_benefits_header {
            margin-bottom: 50px;
        }
        
        & > .ind_benefits_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            
            & > .ind_benefit_card {
                text-align: center;
                padding: 40px 30px;
                background: #f8fafc;
                border-radius: var(--border-radius-lg);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-lg);
                }
                
                & > .ind_benefit_icon {
                    font-size: 2.5em;
                    margin-bottom: 20px;
                    color: var(--primary);
                }
                
                & > h3 {
                    font-size: 1.2em;
                    color: var(--secondary);
                    margin-bottom: 15px;
                    font-weight: 700;
                }
                
                & > p {
                    color: var(--text-muted);
                    line-height: 1.6;
                    font-size: 0.9em;
                }
            }
        }
    }
}

.ind_showcase {
    padding: 40px 0;
    background: #f8fafc;
    
    & > .ind_showcase_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .ind_showcase_header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        & > .ind_showcase_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            
            & > .ind_showcase_item {
                text-align: center;
                padding: 40px 30px;
                background: white;
                border-radius: var(--border-radius-lg);
                box-shadow: var(--shadow-sm);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-lg);
                }
                
                & > .ind_showcase_icon {
                    font-size: 2.5em;
                    margin-bottom: 20px;
                    color: var(--primary);
                }
                
                & > h4 {
                    font-size: 1.1em;
                    color: var(--secondary);
                    margin-bottom: 10px;
                    font-weight: 700;
                }
                
                & > p {
                    color: var(--text-muted);
                    font-size: 0.9em;
                    line-height: 1.5;
                }
            }
        }
    }
}

.ind_logistics {
    padding: 40px 0;
    background: white;
    
    & > .ind_logistics_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        margin: 0 auto;
        gap: 60px;
        align-items: center;
        
        & > .ind_logistics_content {
            padding: 0 20px;
            
            & > .ind_logistics_text {
                font-size: 1.1em;
                color: var(--text-muted);
                line-height: 1.6;
                margin: 30px 0;
            }
            
            & > .ind_logistics_features {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin: 40px 0;
                
                & > .ind_logistics_feature {
                    display: flex;
                    gap: 15px;
                    align-items: flex-start;
                    
                    & > span {
                        font-size: 1.5em;
                    }
                    
                    & > div > h4 {
                        font-size: 1.1em;
                        color: var(--secondary);
                        margin-bottom: 5px;
                        font-weight: 700;
                    }
                    
                    & > div > p {
                        color: var(--text-muted);
                        font-size: 0.9em;
                    }
                }
            }
            
            & > .ind_logistics_badge {
                display: flex;
                gap: 15px;
                margin-top: 30px;
                
                & > span {
                    padding: 8px 16px;
                    background: var(--primary-soft);
                    color: var(--primary);
                    border-radius: 30px;
                    font-size: 0.85em;
                    font-weight: 600;
                }
            }
        }
        
        & > .ind_logistics_visual {
            position: relative;
            height: 400px;
            
            & > .ind_image_placeholder {
                height: 400px;
                background: linear-gradient(135deg, #4a4a4a, #2d2d2d);
                border-radius: var(--border-radius-lg);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
                
                & > img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                
                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: radial-gradient(circle at 30% 50%, rgba(8, 102, 173, 0.2), transparent 70%);
                    animation: glow 3s ease-in-out infinite;
                }
            }
            
            & > .ind_logistics_card {
                position: absolute;
                bottom: -20px;
                left: -20px;
                background: white;
                padding: 20px;
                border-radius: var(--border-radius-md);
                box-shadow: var(--shadow-lg);
                max-width: 250px;
                
                & > h4 {
                    color: var(--primary);
                    margin-bottom: 5px;
                    font-size: 1.1em;
                    font-weight: 700;
                }
                
                & > p {
                    color: var(--text-muted);
                    font-size: 0.85em;
                }
            }
        }
    }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.ind_faq {
    padding: 40px 0;
    background: #f8fafc;
    
    & > .ind_faq_container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .ind_faq_header {
            margin-bottom: 50px;
        }
        
        & > .ind_faq_accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
            
            & > .ind_faq_item {
                border: 1px solid #e2e8f0;
                border-radius: var(--border-radius-md);
                overflow: hidden;
                background: white;
                
                &.active {
                    & > .ind_faq_answer {
                        max-height: 300px;
                        padding: 20px 30px;
                    }
                    
                    & > .ind_faq_question > .ind_faq_toggle {
                        transform: rotate(45deg);
                    }
                }
                
                & > .ind_faq_question {
                    padding: 20px 30px;
                    background: #f8fafc;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    cursor: pointer;
                    
                    & > h4 {
                        color: var(--secondary);
                        font-weight: 600;
                        font-size: 1.1em;
                    }
                    
                    & > .ind_faq_toggle {
                        font-size: 1.5em;
                        color: var(--primary);
                        font-weight: 600;
                        transition: transform 0.3s ease;
                    }
                }
                
                & > .ind_faq_answer {
                    max-height: 0;
                    padding: 0 30px;
                    overflow: hidden;
                    transition: all 0.3s ease;
                    
                    & > p {
                        color: var(--text-muted);
                        line-height: 1.6;
                        font-size: 0.95em;
                    }
                }
            }
        }
    }
}

.ind_contact {
    padding: 40px 0;
    background: white;
    
    & > .ind_contact_container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        margin: 0 auto;
        gap: 60px;
        
        & > .ind_contact_form_wrapper {
            padding: 0 20px;
            
            & > .ind_form {
                margin-top: 40px;
                
                & > .ind_form_row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    margin-bottom: 20px;
                }
                
                & > .ind_form_row > input,
                & > select,
                & > textarea {
                    width: 100%;
                    padding: 12px 15px;
                    border: 2px solid #e2e8f0;
                    border-radius: var(--border-radius-md);
                    font-family: inherit;
                    margin-bottom: 20px;
                    font-size: 1em;
                    
                    &:focus {
                        outline: none;
                        border-color: var(--primary);
                        box-shadow: 0 0 0 3px var(--primary-soft);
                    }
                }
                
                & > textarea {
                    resize: vertical;
                    min-height: 120px;
                }
                
                & > .ind_form_hint {
                    padding: 12px 15px;
                    background: var(--primary-soft);
                    border-radius: var(--border-radius-sm);
                    color: var(--primary);
                    margin-bottom: 20px;
                    font-size: 0.9em;
                    
                    & > span {
                        margin-right: 10px;
                    }
                }
                
                & > .ind_submit_btn {
                    padding: 15px;
                    background: var(--primary);
                    color: white;
                    border: none;
                    border-radius: var(--border-radius-md);
                    font-weight: 600;
                    font-size: 1.1em;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background-color: var(--primary-hover);
                        transform: translateY(-2px);
                        box-shadow: var(--shadow-md);
                    }
                }
            }
        }
        
        & > .ind_contact_info_wrapper {
            padding: 0 20px;
            
            & > .ind_contact_card {
                background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
                color: white;
                border-radius: var(--border-radius-lg);
                padding: 40px;
                box-shadow: var(--shadow-xl);
                position: sticky;
                top: 100px;
                
                & > h3 {
                    font-size: 1.5em;
                    margin-bottom: 30px;
                    color: var(--primary);
                    font-weight: 700;
                }
                
                & > .ind_contact_detail {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 25px;
                    
                    & > span {
                        font-size: 1.5em;
                        min-width: 40px;
                    }
                    
                    & > div > strong {
                        display: block;
                        color: var(--primary);
                        margin-bottom: 5px;
                    }
                    
                    & > div > p {
                        opacity: 0.9;
                        line-height: 1.5;
                        font-size: 0.95em;
                    }
                }
                
                & > .ind_contact_hours {
                    margin: 30px 0;
                    padding: 20px 0;
                    border-top: 1px solid rgba(255, 255, 255, 0.1);
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    
                    & > h4 {
                        color: var(--primary);
                        margin-bottom: 10px;
                        font-size: 1.1em;
                    }
                    
                    & > p {
                        opacity: 0.8;
                        font-size: 0.95em;
                    }
                }
                
                & > .ind_cert_badges {
                    display: flex;
                    gap: 15px;
                    margin-top: 30px;
                    flex-wrap: wrap;
                    
                    & > span {
                        padding: 8px 16px;
                        background: rgba(8, 102, 173, 0.2);
                        border-radius: 30px;
                        font-size: 0.85em;
                        font-weight: 600;
                        color: white;
                    }
                }
            }
        }
    }
}

.floating-catalogue {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    
    & > .floating-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 28px;
        background: var(--secondary);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(8, 102, 173, 0.3);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(8, 102, 173, 0.5);
            background: var(--secondary-hover);
        }
        
        & > .icon {
            font-size: 1.6em;
        }
        
        & > .text {
            font-weight: 500;
            font-size: 1em;
        }
    }
}

@media screen and (max-width: 1700px) {
    .ind_hero > .ind_hero_layout {
        width: 90%;
        padding: 40px 70px;
    }
    
    .ind_value_banner > .ind_value_container,
    .ind_categories > .ind_categories_grid,
    .ind_benefits > .ind_benefits_container,
    .ind_showcase > .ind_showcase_container,
    .ind_process > .ind_process_container,
    .ind_logistics > .ind_logistics_grid,
    .ind_contact > .ind_contact_container {
        width: 90%;
    }
}

@media screen and (max-width: 1440px) {
    .ind_section_title {
        font-size: 2.2em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_title {
        font-size: 3.5em;
    }
}

@media screen and (max-width: 1200px) {
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ind_categories > .ind_categories_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ind_benefits > .ind_benefits_container > .ind_benefits_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ind_showcase > .ind_showcase_container > .ind_showcase_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .ind_hero > .ind_hero_layout {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 40px;
        
        & > .ind_hero_content {
            text-align: center;
            
            & > .ind_hero_tag {
                justify-content: center;
            }
            
            & > .ind_hero_desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            & > .ind_hero_stats {
                justify-content: center;
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            & > .ind_hero_buttons {
                justify-content: center;
            }
        }
        
        & > .ind_hero_visual {
            & > .ind_supply_chain_visual {
                transform: scale(0.85);
                margin: 0 auto;
            }
        }
    }
    
    .ind_process > .ind_process_container > .ind_process_flow {
        flex-direction: column;
        
        & > .ind_process_arrow {
            transform: rotate(90deg);
        }
    }
    
    .ind_logistics > .ind_logistics_grid {
        grid-template-columns: 1fr;
    }
    
    .ind_contact > .ind_contact_container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .landing_ind {
        & > .land_container {
            width: 90%;
            padding: 30px 0;
        }
    }
    .ind_section_title {
        font-size: 1.8em;
    }
    
    .ind_hero > .ind_hero_layout {
        padding: 40px 20px;
        
        & > .ind_hero_content > .ind_hero_title {
            font-size: 2.5em;
        }
        
        & > .ind_hero_content > .ind_hero_desc {
            font-size: 1em;
        }
        
        & > .ind_hero_content > .ind_hero_stats {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        & > .ind_hero_content > .ind_hero_buttons {
            flex-direction: column;
            gap: 15px;
            
            & > .ind_btn_primary,
            & > .ind_btn_secondary {
                width: fit-content;
                text-align: center;
                margin: 0 auto;
            }
        }
        
        & > .ind_hero_visual > .ind_supply_chain_visual {
            transform: scale(0.7);
        }
    }
    
    .ind_value_banner > .ind_value_container {
        grid-template-columns: 1fr;
    }
    
    .ind_categories > .ind_categories_grid {
        grid-template-columns: 1fr;
    }
    
    .ind_benefits > .ind_benefits_container > .ind_benefits_grid {
        grid-template-columns: 1fr;
    }
    
    .ind_showcase > .ind_showcase_container > .ind_showcase_grid {
        grid-template-columns: 1fr;
    }
    
    .ind_contact > .ind_contact_container > .ind_contact_form_wrapper > .ind_form > .ind_form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .floating-catalogue > .floating-btn {
        padding: 12px 20px;
        
        & > .text {
            display: none;
        }
        
        & > .icon {
            font-size: 1.5em;
        }
    }
    
    .ind_hero > .ind_scroll_indicator {
        bottom: 5px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 630px) {
    .ind_hero > .ind_hero_layout {
        & > .ind_hero_visual {
            display: none;
        }
    }
}

@media screen and (max-width: 576px) {
    .ind_section_title {
        font-size: 1.6em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_title {
        font-size: 2em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_desc {
        font-size: 0.95em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_visual > .ind_supply_chain_visual {
        transform: scale(0.6);
    }
    
    .ind_categories > .ind_categories_grid > .ind_category_card {
        height: 320px;
    }
    
    .ind_logistics > .ind_logistics_grid > .ind_logistics_visual > .ind_logistics_card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .ind_contact > .ind_contact_container > .ind_contact_info_wrapper > .ind_contact_card {
        padding: 30px 20px;
        
        & > h3 {
            font-size: 1.3em;
        }
    }
}

@media screen and (max-width: 480px) {
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_title {
        font-size: 1.8em;
    }
    
    .ind_hero > .ind_hero_layout {
        padding: 0 20px;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_visual > .ind_supply_chain_visual {
        transform: scale(0.55);
    }
    
    .ind_categories > .ind_categories_grid > .ind_category_card {
        height: 250px;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_tag {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .ind_section_title {
        font-size: 1.4em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_title {
        font-size: 1.6em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_visual > .ind_supply_chain_visual {
        transform: scale(0.45);
    }
    
    .ind_process > .ind_process_container > .ind_process_flow > .ind_process_step {
        padding: 25px 20px;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_stats > .ind_stat > .ind_stat_number {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 320px) {
    .ind_section_title {
        font-size: 1.3em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_title {
        font-size: 1.4em;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_visual > .ind_supply_chain_visual {
        transform: scale(0.4);
    }
    
    .ind_value_banner > .ind_value_container > .ind_value_item {
        padding: 30px 20px;
        
        & > h3 {
            font-size: 1.2em;
        }
        
        & > p {
            font-size: 0.85em;
        }
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_visual > .ind_supply_chain_visual > .ind_supply_nodes > .ind_node {
        font-size: 0.7em;
        padding: 4px 10px;
    }
    
    .ind_hero > .ind_hero_layout > .ind_hero_content > .ind_hero_stats > .ind_stat > .ind_stat_label {
        font-size: 0.75em;
    }
}