.industrial-hero {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .industrial-hero {
        padding: 50px 15px;
        border-radius: 15px;
    }
}

.industrial-hero::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(255, 183, 3, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 70% 30%, rgba(255, 183, 3, 0.08) 0%, transparent 50%);
}

.industrial-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 183, 3, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 183, 3, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.industrial-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.industrial-hero-content h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.industrial-hero-content h2 span {
    color: #ffb703;
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

/* HMI Panel Styles */
.hmi-panel {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
    border: 2px solid #1a2332;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

@media (max-width: 1200px) {
    .hmi-panel {
        margin: 30px 10px 0;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .hmi-panel {
        margin: 20px 8px 0;
    }
}

@media (max-width: 576px) {
    .hmi-panel {
        margin: 15px 5px 0;
        border-radius: 8px;
    }
}

.hmi-header {
    background: linear-gradient(180deg, #141c2b 0%, #0d1320 100%);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1f2d42;
    gap: 10px;
    flex-wrap: wrap;
}

.hmi-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00d4ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hmi-logo i { font-size: 20px; }

.hmi-nav {
    display: flex;
    gap: 5px;
}

.hmi-nav-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #8b9cb3;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hmi-nav-btn:hover { background: rgba(0, 212, 255, 0.1); color: #00d4ff; }
.hmi-nav-btn.active { background: rgba(0, 212, 255, 0.15); color: #00d4ff; border-color: #00d4ff; }

.hmi-status-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hmi-status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #6b7b8f;
}

.hmi-led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.hmi-led.green { background: #00ff88; box-shadow: 0 0 8px #00ff88; }
.hmi-led.yellow { background: #ffb703; box-shadow: 0 0 8px #ffb703; }
.hmi-led.red { background: #ff4757; box-shadow: 0 0 8px #ff4757; }

.hmi-datetime {
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.hmi-body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0;
    min-height: 350px;
    max-height: 450px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hmi-body { 
        grid-template-columns: 1fr; 
        max-height: none;
        min-height: auto;
    }
    .hmi-sidebar { order: -1; }
}

.hmi-main-area { 
    padding: 12px;
    overflow: hidden;
}

.hmi-sidebar {
    background: rgba(0,0,0,0.3);
    border-left: 1px solid #1a2332;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 450px;
}

.hmi-section-header {
    color: #8b9cb3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hmi-section-header i { color: #00d4ff; }

.hmi-factory-layout {
    background: rgba(0,0,0,0.2);
    border: 1px solid #1a2332;
    border-radius: 8px;
    padding: 12px;
    height: 100%;
    overflow: hidden;
}

.factory-floor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    height: calc(100% - 35px);
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    scrollbar-color: #1a2332 transparent;
}

.factory-floor::-webkit-scrollbar {
    height: 6px;
}

.factory-floor::-webkit-scrollbar-track {
    background: transparent;
}

.factory-floor::-webkit-scrollbar-thumb {
    background: #1a2332;
    border-radius: 3px;
}

.factory-zone {
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 6px;
    padding: 8px;
    min-width: 85px;
    text-align: center;
    flex-shrink: 0;
}

.zone-label {
    font-size: 9px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.silo-group {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.silo {
    width: 24px;
    height: 50px;
    background: rgba(0,0,0,0.4);
    border: 1px solid #2a3d55;
    border-radius: 3px 3px 6px 6px;
    position: relative;
    overflow: hidden;
}

.silo-level {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    transition: height 0.8s ease;
}

.silo-value {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #8b9cb3;
    font-family: monospace;
    white-space: nowrap;
}

.conveyor-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.conveyor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.conveyor-belt {
    width: 50px;
    height: 10px;
    background: #1a2332;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    overflow: hidden;
    position: relative;
}

.conveyor-item {
    width: 8px;
    height: 6px;
    background: #ffb703;
    border-radius: 2px;
    animation: conveyorMove 2s linear infinite;
}

.conveyor-item:nth-child(2) { animation-delay: -0.66s; }
.conveyor-item:nth-child(3) { animation-delay: -1.33s; }

@keyframes conveyorMove {
    0% { transform: translateX(-30px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(30px); opacity: 0; }
}

.conveyor-motor {
    width: 20px;
    height: 20px;
    background: #1a2332;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #00ff88;
}

.conveyor-motor.running { color: #00ff88; }
.conveyor-motor.stopped { color: #ff4757; }
.conveyor-motor.stopped i { animation: none; }

.machine-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.machine {
    background: rgba(0,0,0,0.3);
    border: 1px solid #2a3d55;
    border-radius: 6px;
    padding: 8px;
}

.machine-body {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.machine-body i {
    font-size: 16px;
    color: #ffb703;
}

.machine-status {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

.machine-status.running {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.machine-status.stopped {
    background: rgba(255, 71, 87, 0.15);
    color: #ff4757;
}

.machine-info {
    display: flex;
    gap: 10px;
    font-size: 9px;
    color: #6b7b8f;
}

.machine-info i { color: #ffb703; margin-right: 2px; }

.robot-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.robot-arm {
    width: 50px;
    height: 45px;
    position: relative;
}

.robot-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #3b82f6;
    border-radius: 3px;
}

.robot-segment {
    position: absolute;
    background: #60a5fa;
    border-radius: 3px;
}

.robot-segment.seg1 {
    width: 6px;
    height: 25px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom center;
    animation: robotArm1 3s ease-in-out infinite;
}

.robot-segment.seg2 {
    width: 20px;
    height: 5px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: left center;
    animation: robotArm2 3s ease-in-out infinite;
}

.robot-gripper {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid #93c5fd;
    border-radius: 2px;
    animation: robotGrip 3s ease-in-out infinite;
}

@keyframes robotArm1 {
    0%, 100% { transform: translateX(-50%) rotate(-15deg); }
    50% { transform: translateX(-50%) rotate(15deg); }
}

@keyframes robotArm2 {
    0%, 100% { transform: translateX(-30%) rotate(-10deg); }
    50% { transform: translateX(-70%) rotate(10deg); }
}

@keyframes robotGrip {
    0%, 45%, 100% { border-color: #93c5fd; }
    50%, 95% { border-color: #00ff88; }
}

.robot-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 9px;
    color: #6b7b8f;
}

.robot-cycle { color: #00d4ff; font-family: monospace; }

.packaging-station {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.package-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00ff88;
    font-size: 16px;
    font-family: monospace;
    font-weight: 700;
}

.package-counter i { color: #ffb703; font-size: 18px; }

.package-rate {
    font-size: 10px;
    color: #6b7b8f;
}

.hmi-widget {
    background: rgba(0,0,0,0.2);
    border: 1px solid #1a2332;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.widget-header {
    background: rgba(0, 212, 255, 0.05);
    padding: 8px 12px;
    font-size: 10px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #1a2332;
}

.pid-panel { padding: 10px; }

.pid-setpoint, .pid-actual, .pid-output {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pid-label { font-size: 10px; color: #6b7b8f; }
.pid-value { font-size: 14px; font-weight: 700; color: #00ff88; font-family: monospace; }
.pid-actual .pid-value { color: #ffb703; }

.pid-bar-container { padding: 12px 0; }

.pid-bar {
    height: 8px;
    background: rgba(0,0,0,0.4);
    border-radius: 4px;
    position: relative;
    overflow: visible;
}

.pid-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #00ff88);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.pid-bar-setpoint {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 16px;
    background: #ff4757;
    border-radius: 1px;
    transition: left 0.5s ease;
}

.energy-panel { padding: 10px; }

.energy-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.energy-value {
    font-size: 28px;
    font-weight: 700;
    color: #00ff88;
    font-family: monospace;
}

.energy-unit {
    font-size: 14px;
    color: #6b7b8f;
}

.energy-bars { display: flex; flex-direction: column; gap: 8px; }

.energy-bar-item {
    display: grid;
    grid-template-columns: 40px 1fr 35px;
    align-items: center;
    gap: 8px;
}

.energy-bar-label { font-size: 9px; color: #6b7b8f; }

.energy-bar {
    height: 6px;
    background: rgba(0,0,0,0.4);
    border-radius: 3px;
    overflow: hidden;
}

.energy-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #00d4ff);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.energy-bar-val {
    font-size: 10px;
    color: #00d4ff;
    font-family: monospace;
    text-align: right;
}

.trend-chart {
    height: 80px;
    padding: 8px;
    overflow: hidden;
    position: relative;
}

.trend-chart canvas {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.hmi-footer {
    background: #050810;
    border-top: 1px solid #1a2332;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hmi-alarm-strip { flex: 1; }

.alarm-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.alarm-indicator.normal {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.alarm-indicator.warning {
    background: rgba(255, 183, 3, 0.1);
    color: #ffb703;
    border: 1px solid rgba(255, 183, 3, 0.2);
    animation: alarmPulse 1s ease-in-out infinite;
}

.alarm-indicator.critical {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
    animation: alarmPulse 0.5s ease-in-out infinite;
}

@keyframes alarmPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hmi-kpi-strip {
    display: flex;
    gap: 25px;
}

.hmi-kpi { text-align: center; }

.kpi-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #00d4ff;
    font-family: monospace;
}

.kpi-label {
    font-size: 9px;
    color: #6b7b8f;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hmi-header { flex-direction: column; align-items: flex-start; gap: 8px; padding: 8px 12px; }
    .hmi-nav { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
    .hmi-status-bar { width: 100%; justify-content: space-between; }
    .hmi-body { 
        min-height: auto;
        grid-template-columns: 1fr;
        max-height: none;
    }
    .hmi-sidebar { 
        order: 2;
        border-left: none;
        border-top: 1px solid #1a2332;
        padding: 10px;
        gap: 10px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        max-height: none;
    }
    .hmi-main-area { padding: 8px; }
    .factory-floor { 
        gap: 6px;
        padding: 6px;
        flex-wrap: nowrap;
    }
    .factory-zone { min-width: 65px; padding: 5px; }
    .silo { width: 20px; height: 45px; }
    .conveyor-belt { width: 42px; height: 8px; }
    .machine { padding: 6px; }
    .robot-arm { width: 42px; height: 38px; }
    .hmi-footer { flex-direction: column; gap: 8px; padding: 8px 10px; }
    .hmi-kpi-strip { width: 100%; justify-content: space-around; gap: 8px; }
    .trend-chart { height: 70px; padding: 6px; }
}

@media (max-width: 576px) {
    .industrial-hero { padding: 20px 8px; }
    .industrial-hero-content h2 { font-size: 18px; }
    .hmi-logo { font-size: 11px; }
    .hmi-logo i { font-size: 16px; }
    .hmi-nav-btn span { display: none; }
    .hmi-nav-btn { padding: 6px 8px; font-size: 10px; }
    .hmi-nav-btn i { font-size: 12px; }
    .hmi-header { padding: 6px 8px; }
    .hmi-body { min-height: auto; }
    .hmi-sidebar { 
        grid-template-columns: 1fr;
        padding: 8px;
        gap: 8px;
    }
    .hmi-main-area { padding: 6px; }
    .factory-floor { 
        gap: 5px;
        padding: 5px;
    }
    .factory-zone { min-width: 55px; padding: 4px; }
    .zone-label { font-size: 7px; margin-bottom: 5px; }
    .silo { width: 16px; height: 38px; }
    .silo-value { font-size: 7px; bottom: -13px; }
    .silo-group { gap: 5px; }
    .conveyor-belt { width: 38px; height: 7px; }
    .conveyor-item { width: 6px; height: 5px; }
    .conveyor-motor { width: 14px; height: 14px; font-size: 7px; }
    .machine-body i { font-size: 12px; }
    .machine-status { font-size: 6px; padding: 2px 4px; }
    .machine-info { font-size: 7px; gap: 6px; }
    .robot-arm { width: 38px; height: 33px; }
    .robot-base { width: 24px; height: 8px; }
    .robot-segment.seg1 { width: 5px; height: 20px; bottom: 8px; }
    .robot-segment.seg2 { width: 16px; height: 4px; top: 8px; }
    .robot-gripper { width: 8px; height: 8px; top: 4px; right: 6px; }
    .robot-info { font-size: 7px; }
    .package-counter { font-size: 12px; }
    .package-counter i { font-size: 14px; }
    .package-rate { font-size: 8px; }
    .widget-header { font-size: 9px; padding: 6px 8px; }
    .pid-panel, .energy-panel { padding: 8px; }
    .pid-label, .energy-bar-label { font-size: 8px; }
    .pid-value { font-size: 11px; }
    .energy-value { font-size: 20px; }
    .energy-unit { font-size: 12px; }
    .energy-bar-item { grid-template-columns: 35px 1fr 32px; gap: 5px; }
    .energy-bar { height: 5px; }
    .energy-bar-val { font-size: 9px; }
    .trend-chart { height: 60px; padding: 5px; }
    .hmi-footer { padding: 6px 8px; }
    .alarm-indicator { font-size: 9px; padding: 4px 8px; }
    .kpi-value { font-size: 13px; }
    .kpi-label { font-size: 7px; }
    .hmi-kpi-strip { flex-wrap: wrap; gap: 6px; }
}

/* Other Global Styles from Original File */
.industrial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.industrial-stat {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, rgba(255, 183, 3, 0.03) 100%);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.industrial-stat:hover { transform: translateY(-5px); border-color: rgba(255, 183, 3, 0.5); }
.industrial-stat .number { font-size: 32px; font-weight: 700; color: #ffb703; display: block; }
.industrial-stat .label { color: rgba(255, 255, 255, 0.7); font-size: 13px; margin-top: 5px; }
@media (max-width: 768px) { .industrial-stats { grid-template-columns: repeat(2, 1fr); } }

.process-section { margin: 50px 0; }
.process-section h3 { color: #fff; font-size: 22px; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }
.process-section h3 i { color: #ffb703; }
.process-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin: 30px 0; }
@media (max-width: 992px) { .process-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .process-cards { grid-template-columns: 1fr; } }
.process-card {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, rgba(255, 183, 3, 0.02) 100%);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.process-card:hover { transform: translateY(-5px); border-color: rgba(255, 183, 3, 0.5); }
.process-card-number {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    background: #ffb703; color: #000;
    width: 24px; height: 24px; border-radius: 50%;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.process-card i { font-size: 28px; color: #ffb703; margin-bottom: 12px; display: block; }
.process-card h5 { color: #fff; font-size: 13px; margin: 0; font-weight: 600; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin: 40px 0; }
@media (max-width: 992px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(255, 183, 3, 0.4); }
.service-card-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(255, 183, 3, 0.1));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #ffb703;
    margin-bottom: 20px;
}
.service-card h4 { color: #fff; font-size: 18px; margin: 0 0 12px 0; }
.service-card p { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.6; margin: 0 0 15px 0; }
.service-card ul { list-style: none; padding: 0; margin: 0; }
.service-card ul li { padding: 6px 0; color: rgba(255, 255, 255, 0.65); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.service-card ul li i { color: #ffb703; font-size: 10px; }

.plc-brands-section { margin: 40px 0; }
.plc-brands-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.plc-brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 183, 3, 0.2);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 160px;
}
.plc-brand-card:hover { border-color: rgba(255, 183, 3, 0.5); transform: translateY(-5px); }
.plc-brand-card .brand-name { color: #ffb703; font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.plc-brand-card .brand-series { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.sectors-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin: 30px 0; }
@media (max-width: 992px) { .sectors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
.sector-card {
    background: rgba(255, 183, 3, 0.05);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.sector-card:hover { border-color: rgba(255, 183, 3, 0.5); transform: translateY(-5px); }
.sector-card i { font-size: 28px; color: #ffb703; margin-bottom: 10px; display: block; }
.sector-card h5 { color: #fff; font-size: 13px; margin: 0; font-weight: 500; }

.protocols-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px 0; }
.protocol-badge {
    background: rgba(255, 183, 3, 0.1);
    border: 1px solid rgba(255, 183, 3, 0.3);
    color: #ffb703;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.protocol-badge:hover { background: rgba(255, 183, 3, 0.2); transform: translateY(-2px); }

.project-cta {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(255, 183, 3, 0.05) 100%);
    border: 1px solid rgba(255, 183, 3, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}
.project-cta h3 { color: #fff; font-size: 24px; margin-bottom: 15px; }
.project-cta p { color: rgba(255, 255, 255, 0.8); margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.project-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #ffb703, #e6a502);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.project-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 183, 3, 0.3); color: #000; }