/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
}

.btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2563eb;
}

/* Device Mockup */
.device-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-pod {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.hero-video-container {
    position: relative;
    width: 250px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero-video-container .vision-pod {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.camera-lens {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1e293b 30%, #334155 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.status-light {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1e293b;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-video {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
}

.product-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-video .product-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-video:hover .product-icon {
    opacity: 1;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.product-card p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    color: #475569;
}

.feature-list i {
    color: #10b981;
    margin-right: 10px;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #f8fafc;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-image {
    text-align: center;
    margin-bottom: 20px;
}

.solution-image i {
    font-size: 3rem;
    color: #2563eb;
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.solution-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Workflows Section */
.workflows {
    padding: 100px 0;
    background: #fff;
}

.workflow-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 12px;
    gap: 8px;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #64748b;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.workflow-steps {
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Integrations Section */
.integrations {
    padding: 100px 0;
    background: #f8fafc;
}

.integration-categories {
    display: grid;
    gap: 60px;
}

.integration-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 15px;
}

.integration-category h3 i {
    color: #2563eb;
}

.integration-category > p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.integration-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.integration-icon i {
    font-size: 1.5rem;
    color: white;
}

.integration-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.integration-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1e293b;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #2563eb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Product Page Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.nav-link.active {
    color: #2563eb !important;
    font-weight: 600;
}

.product-detail {
    padding: 80px 0;
    background: #fff;
}

.product-detail.alternate {
    background: #f8fafc;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail.alternate .product-detail-grid {
    grid-template-columns: 1fr 1fr;
}

.product-subtitle {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

/* Vision Pod Large Mockup */
.vision-pod-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.product-video-large {
    width: 100%;
    max-width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    background: #000;
}

.product-video-large video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.camera-lens-large {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #1e293b 30%, #334155 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.status-light-large {
    width: 18px;
    height: 18px;
    background: #10b981;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: 30px;
    box-shadow: 0 0 15px #10b981;
    animation: pulse 2s ease-in-out infinite;
}

.connector-ports {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.connector-ports::before,
.connector-ports::after {
    content: '';
    width: 20px;
    height: 8px;
    background: #334155;
    border-radius: 4px;
}

/* Feature Categories */
.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #1e293b;
    font-size: 1.1rem;
}

.feature-category h4 i {
    color: #2563eb;
}

.feature-category ul {
    list-style: none;
}

.feature-category ul li {
    padding: 6px 0;
    color: #64748b;
    position: relative;
    padding-left: 20px;
}

.feature-category ul li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
}

/* Tech Specs */
.tech-specs {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.tech-specs h4 {
    margin-bottom: 20px;
    color: #1e293b;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    font-weight: 600;
    color: #475569;
}

.spec-value {
    color: #1e293b;
    font-weight: 500;
}

/* Server Mockup */
.server-mockup {
    width: 350px;
    height: 200px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin: 0 auto;
}

.server-front-panel {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.server-slots {
    display: flex;
    gap: 8px;
}

.slot {
    width: 60px;
    height: 8px;
    background: #0f172a;
    border-radius: 2px;
}

.server-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.indicator.power {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.indicator.network {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

.indicator.status {
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

/* Feature Highlights */
.feature-highlights {
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-content h4 {
    margin-bottom: 8px;
    color: #1e293b;
}

.highlight-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Server Configurations */
.server-configurations {
    margin-top: 40px;
}

.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.config-option {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.config-option:hover {
    border-color: #2563eb;
}

.config-option h5 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.config-option ul {
    list-style: none;
}

.config-option ul li {
    padding: 4px 0;
    color: #64748b;
    font-size: 0.9rem;
}

/* Software Mockup */
.software-mockup {
    width: 400px;
    margin: 0 auto;
}

.mockup-screen {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
}

.mockup-header {
    background: #f1f5f9;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.window-controls span:nth-child(1) { background: #ef4444; }
.window-controls span:nth-child(2) { background: #f59e0b; }
.window-controls span:nth-child(3) { background: #10b981; }

.mockup-title {
    color: #64748b;
    font-weight: 500;
}

.mockup-content {
    display: flex;
    height: 300px;
}

.mockup-sidebar {
    width: 80px;
    background: #f8fafc;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-item {
    width: 50px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 8px;
}

.sidebar-item.active {
    background: #2563eb;
}

.mockup-main {
    flex: 1;
    padding: 20px;
}

.mockup-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

.widget {
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.widget.large {
    grid-column: 1 / -1;
}

/* OS Features */
.os-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.os-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.os-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.os-feature .feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.os-feature .feature-content h4 {
    margin-bottom: 8px;
    color: #1e293b;
}

.os-feature .feature-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Integration APIs */
.integration-apis {
    margin-top: 40px;
}

.api-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.api-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.api-item i {
    color: #2563eb;
    font-size: 1.1rem;
}

.api-item span {
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.price {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 5px;
}

.package-description {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: #10b981;
    font-size: 0.9rem;
}

.saas-pricing {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.saas-pricing p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    color: #64748b;
    font-style: italic;
}

.pricing-note i {
    color: #2563eb;
    margin-right: 8px;
}

/* Solutions Page Styles */
.solution-detail {
    padding: 80px 0;
    background: #fff;
}

.solution-detail.alternate {
    background: #f8fafc;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.solution-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon-large i {
    font-size: 3rem;
    color: white;
}

.solution-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.solution-title p {
    font-size: 1.2rem;
    color: #64748b;
}

.solution-content {
    display: grid;
    gap: 60px;
}

.solution-overview h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

.solution-overview > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e293b;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Use Cases */
.use-cases {
    margin-top: 60px;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.use-case {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.use-case h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.use-case h4 i {
    color: #2563eb;
    font-size: 1.1rem;
}

.use-case p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.use-case ul {
    list-style: none;
}

.use-case ul li {
    padding: 6px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.use-case ul li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Inspection Types */
.inspection-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.inspection-type {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.type-icon i {
    color: white;
    font-size: 1.8rem;
}

.type-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.type-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.accuracy-badge {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* ROI Calculator */
.roi-calculator {
    background: #1e293b;
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.roi-calculator h3 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calculator-input h4,
.calculator-output h4 {
    color: #cbd5e1;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
}

.input-group label {
    color: #94a3b8;
}

.input-group .value {
    color: white;
    font-weight: 600;
}

.output-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
}

.output-item .metric {
    color: #94a3b8;
}

.output-item .savings {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.output-item.total {
    border-bottom: none;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 2px solid #10b981;
}

.output-item.total .savings {
    font-size: 1.3rem;
    color: #10b981;
}

/* Robotics Applications */
.robotics-applications {
    margin-top: 40px;
}

.robotics-app {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.app-visual {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-visual i {
    font-size: 2rem;
    color: white;
}

.app-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.app-content p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.app-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-stats span {
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.app-stats i {
    color: #2563eb;
    margin-right: 5px;
}

/* Integration Workflow */
.integration-workflow {
    margin-top: 60px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.workflow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Maintenance Features */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.maintenance-feature {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.maintenance-feature i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.maintenance-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.maintenance-feature p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.impact-metric {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.metric-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Solutions CTA */
.solutions-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.solutions-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.solutions-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive Design for Solutions */
@media (max-width: 768px) {
    .solution-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .solution-title h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .use-case-grid,
    .inspection-types,
    .maintenance-grid,
    .impact-metrics {
        grid-template-columns: 1fr;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .robotics-app {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
    }

    .workflow-step:not(:last-child)::after {
        display: none;
    }

    .app-stats {
        justify-content: center;
    }
}


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-video-container {
        width: 100%;
        max-width: 400px;
        height: 300px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab-buttons {
        flex-direction: column;
        gap: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Product Page Responsive */
    .page-header h1 {
        font-size: 2.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-video-large {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        margin-bottom: 30px;
    }

    .product-video-large video {
        width: 100%;
        height: auto;
        min-height: 300px;
        object-fit: cover;
    }

    .vision-pod-large {
        width: 250px;
        height: 250px;
    }

    .camera-lens-large {
        width: 100px;
        height: 100px;
    }

    .server-mockup {
        width: 300px;
        height: 180px;
    }

    .software-mockup {
        width: 100%;
        max-width: 350px;
    }

    .feature-categories {
        grid-template-columns: 1fr;
    }

    .config-options {
        grid-template-columns: 1fr;
    }

    .os-features {
        grid-template-columns: 1fr;
    }

    .api-list {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-video-container {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .product-card,
    .solution-card {
        padding: 25px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-video-large {
        width: 100%;
        height: auto;
        min-height: 250px;
        margin-bottom: 20px;
    }

    .product-video-large video {
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: cover;
    }
}

/* Architecture Page Styles */
.architecture-overview {
    padding: 80px 0;
    background: #fff;
}

.architecture-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.architecture-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Interactive Architecture Diagram */
.interactive-diagram {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diagram-container {
    width: 100%;
    position: relative;
}

.architecture-svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: white;
    cursor: pointer;
}

.interactive-element {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-element:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.flow-line {
    stroke-dasharray: 10, 5;
    animation: flowAnimation 3s linear infinite;
}

@keyframes flowAnimation {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 15; }
}

/* Component Details Panel */
.component-details {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(320px);
    transition: transform 0.3s ease;
    z-index: 10;
}

.component-details.active {
    transform: translateX(0);
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.details-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.2rem;
}

.close-details {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-details:hover {
    background: #f1f5f9;
}

.details-content {
    padding: 20px;
}

.details-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.details-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.details-content ul li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.details-content ul li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Data Flow Section */
.data-flow-section {
    padding: 100px 0;
    background: #f8fafc;
}

.flow-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Animated Capture Visual */
.animated-capture {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
    border-radius: 16px;
    overflow: hidden;
}

.camera-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid #2563eb;
    border-radius: 8px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: scanAnimation 2s ease-in-out infinite;
}

@keyframes scanAnimation {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(180px); }
}

.captured-data {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.data-packet {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
    animation: dataFlow 1s ease-in-out infinite;
}

.data-packet:nth-child(2) { animation-delay: 0.2s; }
.data-packet:nth-child(3) { animation-delay: 0.4s; }

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Processing Animation */
.processing-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cpu-cores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.core {
    width: 50px;
    height: 50px;
    background: #64748b;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.core.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: processingPulse 1.5s ease-in-out infinite;
}

@keyframes processingPulse {
    0% { left: -100%; }
    100% { left: 100%; }
}

.data-pipeline {
    display: flex;
    gap: 20px;
}

.pipeline-stage {
    width: 60px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.pipeline-stage::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: pipelineFlow 2s ease-in-out infinite;
}

.pipeline-stage:nth-child(2)::after { animation-delay: 0.3s; }
.pipeline-stage:nth-child(3)::after { animation-delay: 0.6s; }

@keyframes pipelineFlow {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

/* AI Network Visual */
.neural-network {
    display: flex;
    gap: 40px;
    align-items: center;
}

.layer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.neuron {
    width: 20px;
    height: 20px;
    background: #2563eb;
    border-radius: 50%;
    position: relative;
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #cbd5e1;
}

.output-layer .neuron::after {
    display: none;
}

@keyframes neuronPulse {
    0%, 100% { transform: scale(1); background: #2563eb; }
    50% { transform: scale(1.2); background: #3b82f6; }
}

/* Control System Visual */
.control-system {
    position: relative;
    width: 300px;
    height: 200px;
}

.robot-arm {
    position: relative;
    width: 100%;
    height: 100%;
}

.base {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #64748b;
    border-radius: 8px;
}

.arm {
    position: absolute;
    background: #475569;
    border-radius: 4px;
}

.segment1 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(30deg);
    width: 80px;
    height: 12px;
    transform-origin: left center;
    animation: armMovement1 3s ease-in-out infinite;
}

.segment2 {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) rotate(-20deg);
    width: 60px;
    height: 10px;
    transform-origin: left center;
    animation: armMovement2 3s ease-in-out infinite;
}

.end-effector {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border-radius: 50%;
    animation: effectorMovement 3s ease-in-out infinite;
}

@keyframes armMovement1 {
    0%, 100% { transform: translateX(-50%) rotate(30deg); }
    50% { transform: translateX(-50%) rotate(60deg); }
}

@keyframes armMovement2 {
    0%, 100% { transform: translateX(-50%) rotate(-20deg); }
    50% { transform: translateX(-50%) rotate(-40deg); }
}

@keyframes effectorMovement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.control-signals {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signal {
    width: 40px;
    height: 4px;
    background: #10b981;
    border-radius: 2px;
    animation: signalPulse 1s ease-in-out infinite;
}

.signal:nth-child(2) { animation-delay: 0.2s; }
.signal:nth-child(3) { animation-delay: 0.4s; }

@keyframes signalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Technical Specs in Flow */
.technical-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.processing-capabilities,
.ai-capabilities,
.control-outputs {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.capability,
.ai-model,
.output-type {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.capability i,
.output-type i {
    color: #2563eb;
    font-size: 1.3rem;
    margin-top: 2px;
}

.capability h4,
.output-type h4 {
    margin-bottom: 5px;
    color: #1e293b;
    font-size: 1rem;
}

.capability p,
.output-type p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-model {
    flex-direction: column;
    gap: 10px;
}

.ai-model h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    margin-bottom: 10px;
}

.ai-model ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ai-model ul li {
    padding: 4px 0;
    color: #64748b;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.ai-model ul li::before {
    content: '•';
    color: #2563eb;
    position: absolute;
    left: 0;
}

.latency {
    background: #10b981;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

/* Network Architecture */
.network-architecture {
    padding: 100px 0;
    background: #1e293b;
    color: white;
}

.network-architecture .section-title {
    color: white;
}

.network-diagram {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.network-layer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.network-layer h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.devices,
.processing-nodes,
.cloud-services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.device,
.node,
.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
}

.device:hover,
.node:hover,
.service:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.device i,
.node i,
.service i {
    font-size: 2rem;
    color: #10b981;
}

.device span,
.node span,
.service span {
    font-weight: 600;
    text-align: center;
}

.node-specs {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.node-specs small {
    color: #94a3b8;
    font-size: 0.7rem;
}

.network-connections {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connection-line {
    position: relative;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 2px;
    overflow: hidden;
}

.protocol-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.signal-animation {
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: signalFlow 2s ease-in-out infinite;
}

@keyframes signalFlow {
    0% { left: -20px; }
    100% { left: 100%; }
}

.network-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 1.3rem;
}

.benefit h4 {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.benefit p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Technical Specifications */
.tech-specifications {
    padding: 100px 0;
    background: #f8fafc;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.spec-category {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-category h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #1e293b;
    font-size: 1.3rem;
}

.spec-category h3 i {
    color: #2563eb;
    font-size: 1.2rem;
}

.spec-table {
    display: grid;
    gap: 2px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name {
    font-weight: 500;
    color: #475569;
}

.spec-value {
    font-weight: 600;
    color: #1e293b;
    text-align: right;
}

/* Responsive Design for Architecture */
@media (max-width: 768px) {
    .flow-step-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .component-details {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 20px;
        display: none;
    }

    .component-details.active {
        display: block;
        transform: none;
    }

    .network-diagram {
        gap: 20px;
    }

    .devices,
    .processing-nodes,
    .cloud-services {
        flex-direction: column;
        align-items: center;
    }

    .network-benefits {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .animated-capture {
        width: 250px;
        height: 150px;
    }

    .neural-network {
        gap: 20px;
    }

    .control-system {
        width: 250px;
        height: 150px;
    }
}

/* Workflow Page Styles */
.workflow-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.workflow-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.workflow-selector {
    margin-bottom: 3rem;
}

.workflow-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.workflow-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.workflow-tab:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.workflow-tab.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.workflow-tab i {
    font-size: 2rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.workflow-tab.active i {
    color: white;
}

.workflow-tab span {
    font-weight: 600;
    font-size: 0.9rem;
}

.workflow-diagram {
    display: none;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.workflow-diagram.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.workflow-header {
    text-align: center;
    margin-bottom: 2rem;
}

.workflow-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.workflow-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.workflow-container {
    margin-bottom: 2rem;
}

.workflow-svg {
    width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fafbfc;
}

.workflow-step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: scale(1.05);
}

.workflow-step:hover rect,
.workflow-step:hover polygon {
    filter: brightness(1.1);
    stroke-width: 3;
}

.flow-arrow {
    animation: flowPulse 2s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { 
        opacity: 0.7; 
        stroke-width: 3;
    }
    50% { 
        opacity: 1; 
        stroke-width: 4;
    }
}

.status-indicator {
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-detail {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.step-detail:hover {
    background: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.step-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.metric i {
    color: #2563eb;
}

/* Workflow Performance Metrics */
.workflow-metrics {
    padding: 4rem 0;
    background: #1e293b;
    color: white;
}

.workflow-metrics .section-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.metric-icon i {
    font-size: 2rem;
    color: white;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.metric-description {
    color: #cbd5e1;
    line-height: 1.5;
}

/* System Integration */
.system-integration {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.integration-diagram {
    position: relative;
    height: 400px;
    margin: 3rem 0;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.visionworks-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.visionworks-hub i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.integration-systems {
    position: relative;
    height: 100%;
}

.integration-system {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    min-width: 80px;
    transition: all 0.3s ease;
}

.integration-system:hover {
    transform: scale(1.1);
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.integration-system i {
    font-size: 1.5rem;
    color: #2563eb;
}

.integration-system span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

/* Position integration systems in a circle */
.integration-system.mes {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.integration-system.erp {
    top: 25%;
    right: 15%;
}

.integration-system.scada {
    bottom: 25%;
    right: 15%;
}

.integration-system.wms {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.integration-system.plc {
    bottom: 25%;
    left: 15%;
}

.integration-system.robots {
    top: 25%;
    left: 15%;
}

.connection-line {
    position: absolute;
    width: 2px;
    background: linear-gradient(45deg, #2563eb, #10b981);
    top: 50%;
    left: 50%;
    transform-origin: center;
    animation: connectionPulse 3s ease-in-out infinite;
}

/* Calculate connection lines */
.mes .connection-line {
    height: 80px;
    transform: translate(-50%, -100%);
}

.erp .connection-line {
    height: 100px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.scada .connection-line {
    height: 100px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.wms .connection-line {
    height: 80px;
    transform: translate(-50%, 0%);
}

.plc .connection-line {
    height: 100px;
    transform: translate(-50%, -50%) rotate(135deg);
}

.robots .connection-line {
    height: 100px;
    transform: translate(-50%, -50%) rotate(-135deg);
}

@keyframes connectionPulse {
    0%, 100% { 
        opacity: 0.5; 
        background: linear-gradient(45deg, #2563eb, #10b981);
    }
    50% { 
        opacity: 1; 
        background: linear-gradient(45deg, #10b981, #2563eb);
    }
}

.integration-protocols {
    text-align: center;
    margin-top: 3rem;
}

.integration-protocols h3 {
    color: #1e293b;
    margin-bottom: 2rem;
}

.protocol-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.protocol-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    min-width: 100px;
    transition: all 0.3s ease;
}

.protocol-item:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.protocol-item i {
    font-size: 1.5rem;
    color: #2563eb;
}

.protocol-item span {
    font-weight: 600;
    color: #1e293b;
}

/* Responsive Design for Workflows */
@media (max-width: 768px) {
    .workflow-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-tab {
        padding: 1rem;
        min-width: unset;
    }
    
    .workflow-svg {
        height: 300px;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .integration-diagram {
        height: 300px;
    }
    
    .integration-system {
        padding: 0.5rem;
        min-width: 60px;
    }
}

/* Applications Gallery Styles */
.applications-gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.application-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.application-visual {
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

.application-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.application-card:hover .application-svg {
    transform: scale(1.05);
}

.application-content {
    padding: 1.5rem;
}

.application-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-content h3 i {
    color: #667eea;
    font-size: 1.1rem;
}

.application-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.application-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Product Showcase Styles */
.product-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.product-showcase .section-title {
    color: white;
}

.product-showcase .section-description {
    color: #cbd5e1;
}

.product-displays {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.product-display:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.product-3d {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.product-svg {
    width: 100%;
    height: 400px;
    transition: transform 0.3s ease;
}

.product-display:hover .product-svg {
    transform: rotateY(5deg) rotateX(5deg);
}

.product-details h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.product-details p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    color: #667eea;
    width: 16px;
    text-align: center;
}

/* Industry-specific color coding */
.application-card[data-industry="automotive"] .application-content h3 i {
    color: #dc2626;
}

.application-card[data-industry="electronics"] .application-content h3 i {
    color: #2563eb;
}

.application-card[data-industry="packaging"] .application-content h3 i {
    color: #f59e0b;
}

.application-card[data-industry="pharmaceutical"] .application-content h3 i {
    color: #10b981;
}

.application-card[data-industry="logistics"] .application-content h3 i {
    color: #8b5cf6;
}

.application-card[data-industry="textile"] .application-content h3 i {
    color: #ec4899;
}

/* Animation for application SVGs */
@keyframes fabricScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes packageFlow {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(400px); }
}

@keyframes qualityCheck {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .application-card {
        min-width: unset;
    }
    
    .application-visual {
        height: 150px;
    }
    
    .application-stats {
        gap: 1rem;
    }
    
    .product-displays {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-svg {
        height: 300px;
    }
    
    .product-display {
        padding: 1.5rem;
    }
}
