/* Base Styles */
:root {
    --primary: #2a5ee8;
    --primary-dark: #1a4bc4;
    --secondary: #00c4cc;
    --accent: #ff6b35;
    --dark: #1a1d28;
    --dark-gray: #2d3246;
    --medium-gray: #5a6075;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 94, 232, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #00a8b0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 196, 204, 0.2);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-tertiary:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 29, 40, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(26, 29, 40, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.btn) {
    color: var(--secondary);
}

.nav-links a:hover:not(.btn):after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0f1621 0%, #1a1d28 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 800px;
    z-index: 1;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px 0 0 10px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 29, 40, 0.8) 0%, rgba(26, 29, 40, 0) 50%);
}

/* Partners Section */
.partners {
    padding: 60px 0;
    background-color: var(--white);
}

.partners p {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    height: 40px;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.mission-text p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.mission-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
}

.feature-item span {
    font-weight: 600;
    color: var(--dark);
}

.mission-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: var(--accent);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--dark);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

.step:nth-child(even) .step-number {
    left: auto;
    right: 50px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.step-content p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.step-content ul {
    margin-top: 20px;
}

.step-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--dark-gray);
}

.step-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

.step-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.features-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.pane-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pane-text {
    flex: 1;
}

.pane-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.pane-text p {
    font-size: 16px;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card ul {
    margin-top: 15px;
}

.feature-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

.feature-card ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pane-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pane-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    padding: 120px 0;
    background-color: var(--white);
}

.advantages-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.advantages-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}

.overlay-item {
    position: absolute;
    transform: translate(-50%, -50%);
}

.pulse-dot {
    width: 15px;
    height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.overlay-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay-item:hover .overlay-tooltip {
    opacity: 1;
}

.advantages-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-item {
    display: flex;
    gap: 20px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(42, 94, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.advantage-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.advantage-text p {
    font-size: 16px;
    color: var(--medium-gray);
}

.industries-grid {
    margin-top: 80px;
}

.industries-grid h3 {
    text-align: center;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 40px;
}

.industry-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.industry-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.industry-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.industry-card p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
    font-style: normal;
}

.author-info span {
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light-gray);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.7;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-newsletter form {
    display: flex;
    margin-bottom: 30px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
}

.footer-newsletter button {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #00a8b0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.legal-links a {
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1s;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .mission-content, .advantages-content {
        flex-direction: column;
    }
    
    .mission-image, .advantages-image {
        width: 100%;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step:nth-child(even) {
        flex-direction: column;
    }
    
    .step-number {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
    }
    
    .step:nth-child(even) .step-number {
        right: auto;
    }
}

@media (max-width: 992px) {
    .hero-content {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        transform: none;
    }
    
    .hero-buttons, .cta-buttons {
        justify-content: center;
    }
    
    .pane-content {
        flex-direction: column;
    }
    
    .pane-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .step, .mission, .advantages {
        padding: 60px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .pane-content {
        padding: 30px 20px;
    }
    
    .industry-cards {
        grid-template-columns: 1fr;
    }
}






/* System Visualization Hero */
.hero-system {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #728097 0%, #1a1d28 100%);
    color: var(--white);
    position: relative;
}

.system-visualization {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.system-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mainframe {
    background: var(--primary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 300px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(42, 94, 232, 0.3);
}

.system-connections {
    position: absolute;
    top: 120px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.connection-line {
    width: 4px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}

.system-components-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.system-component {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.system-component:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.component-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.component-icon i {
    transition: transform 0.3s ease;
}

.system-component:hover .component-icon i {
    transform: scale(1.1);
}

.system-component h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.component-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.system-dashboard {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.display-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.display-row .label {
    color: rgba(255, 255, 255, 0.7);
}

.display-row .value {
    font-weight: 600;
}

.display-row .value.active {
    color: var(--secondary);
}

.display-row .value.nominal {
    color: #4caf50;
}

.system-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.specs-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.specs-item i {
    font-size: 28px;
    color: var(--secondary);
    margin-top: 5px;
}

.specs-item h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--white);
}

.specs-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .system-visualization {
        padding: 30px;
    }
    
    .system-components-row {
        gap: 20px;
    }
    
    .system-component {
        width: 180px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-system {
        padding: 120px 0 80px;
    }
    
    .system-visualization {
        padding: 25px;
    }
    
    .mainframe {
        width: 100%;
        max-width: 300px;
    }
    
    .dashboard-display {
        grid-template-columns: 1fr;
    }
    
    .system-specs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-system {
        padding: 100px 0 60px;
    }
    
    .system-component {
        width: 100%;
        max-width: 220px;
    }
    
    .system-dashboard {
        padding: 20px;
    }
}