/* ============================================
   TELEPRESENZ PRODUCTS PAGE - STYLESHEET
   AI-Powered Industrial Intelligence Solutions
   ============================================ */

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'DM Sans', sans-serif;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #3C3C3C;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0B1F36;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0B1F36;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    color: #6C4CCF;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    color: #0B1F36;
    line-height: 1.3;
}

h5 {
    font-size: 20px;
    font-weight: 500;
    color: #0B1F36;
    line-height: 1.4;
}

h6 {
    font-size: 16px;
    font-weight: 500;
    color: #0B1F36;
    line-height: 1.4;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #3C3C3C;
    line-height: 1.6;
}

small, .small-text {
    font-size: 14px;
    font-weight: 400;
    color: #3C3C3C;
}

/* Typography Utilities */
.hero-title {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.2;
    color: #1f2937;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #6366f1;
    text-align: center;
}

.capability-title {
    font-size: 24px;
    font-weight: 400;
    color: #1f2937;
}

.content p {
    font-size: 18px;
    font-weight: 300;
    color: #4338ca;
    line-height: 1.6;
    margin-bottom: 1em;
}

.content p sup {
    font-size: 12px;
    vertical-align: super;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.font-bold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

.section {
    padding: 6rem 0;
}

/* ============================================
   SECTION BADGES
   ============================================ */

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
    max-width: 800px;
}

/* ============================================
   COOKIE CONSENT STYLES
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 31, 54, 0.98);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-icon {
    font-size: 32px;
    color: #fbbf24;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.cookie-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 16px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cookie-btn-primary {
    background: #10b981;
    color: white;
}

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

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline {
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.cookie-btn-decline:hover {
    background: #ef4444;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0B1F36;
    margin: 0;
    font-size: 24px;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: #3C3C3C;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cookie-modal-close:hover {
    color: #0B1F36;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-description {
    color: #3C3C3C;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 16px;
}

.cookie-category {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-category-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #0B1F36;
    font-size: 18px;
}

.cookie-category-info p {
    color: #3C3C3C;
    font-size: 14px;
    margin: 0;
}

.cookie-toggle {
    position: relative;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-label {
    display: block;
    width: 50px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-label:hover {
    background: #cbd5e1;
}

.toggle-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
    background: #10b981;
}

.cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-inner {
    transform: translateX(22px);
}

.cookie-toggle input[type="checkbox"]:disabled + .toggle-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-policy-link {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.cookie-policy-link p {
    margin: 0;
    font-size: 14px;
    color: #3C3C3C;
}

.cookie-link {
    color: #8b5cf6;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e2e8f0;
}

.cookie-settings-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
}

.cookie-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #8b5cf6;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.cookie-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.products-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    margin-top: 80px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

#neuralCanvas {
    width: 100%;
    height: 100%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    animation: meshShift 15s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

/* Main Hero Content */
.main-hero-content {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: #0B1F36;
    font-weight: 600;
    font-size: 16px;
    margin: 0 auto 2rem auto;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.badge-icon {
    font-size: 20px;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.hero-title {
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.title-line {
    opacity: 0;
    animation: titleSlideIn 1s ease-out forwards;
}

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

.title-highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 25%, #10b981 50%, #f59e0b 75%, #ef4444 100%);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite, titleSlideIn 1s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes titleSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 20px;
    color: #3C3C3C;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Selection Header */
.product-selection-header {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

.product-selection-header h2 {
    margin: 0 0 1rem 0;
}

.product-selection-header p {
    font-size: 18px;
    color: #3C3C3C;
    margin: 0;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.6s forwards;
}

.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    min-height: 400px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.15);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
}

.animated-bg {
    width: 100%;
    height: 100%;
    opacity: 0.05;
    transition: opacity 0.3s ease;
}

.product-card:hover .animated-bg {
    opacity: 0.1;
}

.smartops-bg {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    animation: pulse 4s ease-in-out infinite;
}

.smarteye-bg {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: pulse 4s ease-in-out infinite 1s;
}

.smartitm-bg {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: pulse 4s ease-in-out infinite 2s;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-icon-large {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    border: 2px solid;
}

.smartops-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-color: rgba(139, 92, 246, 0.3);
}

.smarteye-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: rgba(16, 185, 129, 0.3);
}

.smartitm-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: rgba(245, 158, 11, 0.3);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .icon-glow {
    opacity: 1;
}

.product-title h3 {
    margin: 0 0 0.5rem 0;
}

.product-tagline {
    color: #3C3C3C;
    font-size: 14px;
    font-weight: 500;
}

.product-preview {
    flex: 1;
    margin-bottom: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

/* ============================================
   SMARTOPS CHECKLIST ANIMATION
   ============================================ */

.smartops-checklist {
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.smartops-checklist.completed {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #10b981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

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

.checklist-title {
    font-size: 16px;
    font-weight: 600;
    color: #0B1F36;
}

.checklist-progress {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    width: 0%;
    transition: width 1s ease;
    border-radius: 3px;
}

.progress-bar + span {
    font-size: 12px;
    font-weight: 600;
    color: #3C3C3C;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.checklist-item.active {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    transform: scale(1.02);
}

.checklist-item.completed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.checklist-item.completed .checklist-icon {
    background: #10b981;
    color: white;
}

.checklist-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #64748b;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checklist-item.active .checklist-icon {
    display: none;
}

.checklist-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #0B1F36;
}

.processing-indicator {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: none;
}

.checklist-item.active .processing-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ============================================
   SMARTITM PHOTO CAPTURE ANIMATION
   ============================================ */

.photo-capture-animation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.capture-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.5s ease;
}

.phone-device {
    width: 40px;
    height: 60px;
    background: #0B1F36;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    position: relative;
}

.camera-flash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.photo-capture-animation.capturing .camera-flash {
    opacity: 1;
    animation: flash 0.5s ease;
}

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

.phone-label {
    font-size: 12px;
    font-weight: 600;
    color: #3C3C3C;
}

.processing-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.photo-capture-animation.processing .processing-flow,
.photo-capture-animation.generating .processing-flow {
    opacity: 1;
}

.ai-brain {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6C4CCF, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.processing-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #6C4CCF;
    border-radius: 50%;
    opacity: 0;
}

.photo-capture-animation.processing .processing-waves {
    animation: brainPulse 1.5s ease-in-out infinite;
}

@keyframes brainPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.arrow-flow {
    font-size: 20px;
    color: #6C4CCF;
    font-weight: bold;
}

.doc-creation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.photo-capture-animation.generating .doc-creation,
.photo-capture-animation.completed .doc-creation {
    opacity: 1;
}

.document-icon {
    width: 40px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3C3C3C;
    position: relative;
}

.doc-lines {
    position: absolute;
    width: 60%;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.doc-lines::before,
.doc-lines::after {
    content: '';
    height: 2px;
    background: #3C3C3C;
    border-radius: 1px;
}

.photo-capture-animation.generating .doc-lines,
.photo-capture-animation.completed .doc-lines {
    opacity: 1;
}

.doc-label {
    font-size: 12px;
    font-weight: 600;
    color: #3C3C3C;
}

.process-status {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.status-text {
    font-size: 12px;
    color: #3C3C3C;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* ============================================
   SMARTEYE PREVIEW STYLES
   ============================================ */

.preview-vision .vision-feed {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}

.detection-zones {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
}

.detection-box {
    position: absolute;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 2px solid;
}

.person-detected {
    top: 10px;
    left: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.helmet-detected {
    top: 10px;
    right: 10px;
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
}

.safety-violation {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #10b981, transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { left: 0; }
    100% { left: 100%; }
}

/* ============================================
   CARD STATS
   ============================================ */

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #0B1F36;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 12px;
    color: #3C3C3C;
    font-weight: 500;
}

.card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    color: #8b5cf6;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card:hover .card-cta {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateX(5px);
}

/* ============================================
   GLOBAL CTA
   ============================================ */

.global-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
}

.cta-content {
    text-align: left;
    flex: 1;
}

.cta-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 32px;
}

.cta-content p {
    color: #3C3C3C;
    font-size: 18px;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary-large, .btn-secondary-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-large {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-secondary-large {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.btn-secondary-large:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   PRODUCT OVERVIEW SECTION
   ============================================ */

.product-overview {
    background: white;
    padding: 6rem 0;
}

.overview-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    min-height: 60vh;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #2d3748;
}

.overview-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.overview-features {
    list-style: none;
    margin-bottom: 40px;
}

.overview-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.overview-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

/* Product Ecosystem */
.product-ecosystem {
    position: relative;
    width: 500px;
    height: 500px;
}

.ecosystem-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.center-logo {
    text-align: center;
    color: white;
}

.center-logo i {
    font-size: 3rem;
    margin-bottom: 8px;
    display: block;
}

.center-logo span {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.ecosystem-orbit {
    position: absolute;
    border: 2px dashed rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.orbit-2 {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 35s;
}

.orbit-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: counter-rotate 20s linear infinite;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.orbit-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.orbit-item i {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.orbit-item span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}

.smartops {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    color: #3b82f6;
}

.smarteye {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    color: #8b5cf6;
}

.smartitm {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    color: #f59e0b;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    margin-top: 40px;
}

.features-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.feature-details {
    text-align: left;
}

.feature-details p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.6;
}

.feature-details b,
.feature-details strong {
    color: #2d3748;
}

/* ============================================
   PRODUCT DETAIL SECTIONS
   ============================================ */

.product-detail {
    padding: 6rem 0;
    background: white;
}

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

.product-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-detail-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 1.5rem;
    color: white;
}

.smartops-badge {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.smarteye-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.smartitm-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.product-detail-title {
    margin-bottom: 1rem;
}

.product-detail-subtitle {
    font-size: 20px;
    color: #3C3C3C;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.product-detail-grid.reverse {
    direction: rtl;
}

.product-detail-grid.reverse > * {
    direction: ltr;
}

.product-description h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0B1F36;
}

.product-description p {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0B1F36;
}

.benefit-text p {
    color: #3C3C3C;
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
}

/* ============================================
   DASHBOARD PREVIEWS
   ============================================ */

.smartops-dashboard, .smarteye-dashboard, .smartitm-dashboard {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.dashboard-title {
    font-size: 20px;
    font-weight: 700;
    color: #0B1F36;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 800;
    color: #0B1F36;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 14px;
    color: #3C3C3C;
    margin-bottom: 0.5rem;
}

.metric-trend {
    font-size: 12px;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.metric-trend.up {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.metric-trend.down {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.metric-trend.neutral {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.dashboard-chart {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 150px;
}

.bar {
    background: linear-gradient(to top, #8b5cf6, #a855f7);
    width: 20px;
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
}

/* ============================================
   SMARTEYE SAFETY MONITORING
   ============================================ */

.safety-monitoring {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.monitoring-header {
    font-size: 16px;
    font-weight: 600;
    color: #0B1F36;
    margin-bottom: 1rem;
}

.safety-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.safety-item.compliant {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.safety-item.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.safety-item.critical {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.safety-icon {
    font-size: 24px;
}

.safety-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.safety-name {
    font-weight: 600;
    color: #0B1F36;
    font-size: 16px;
}

.safety-percentage {
    font-size: 20px;
    font-weight: 700;
}

.safety-item.compliant .safety-percentage {
    color: #10b981;
}

.safety-item.warning .safety-percentage {
    color: #f59e0b;
}

.safety-item.critical .safety-percentage {
    color: #ef4444;
}

/* ============================================
   SMARTITM TRAINING STYLES
   ============================================ */

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

.course-title {
    font-size: 20px;
    font-weight: 700;
    color: #0B1F36;
}

.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#f59e0b 78%, #e2e8f0 78%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    z-index: 1;
    color: #0B1F36;
    font-weight: 600;
    font-size: 16px;
}

.learning-modules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.module {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.module.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.module.current {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.module.pending {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.module-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.module-info {
    flex: 1;
}

.module-name {
    font-weight: 600;
    font-size: 16px;
}

.module-score, .module-progress, .module-eta {
    font-size: 12px;
    opacity: 0.8;
}

.knowledge-capture {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.capture-title {
    font-size: 16px;
    font-weight: 600;
    color: #0B1F36;
    margin-bottom: 1rem;
}

.expert-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expert-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.expert-name {
    font-weight: 600;
    color: #0B1F36;
    font-size: 16px;
}

.expert-experience {
    font-size: 14px;
    color: #3C3C3C;
}

/* ============================================
   PRODUCT COMPARISON SECTION
   ============================================ */

.product-comparison {
    background: #f8fafc;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
}

.comparison-feature {
    padding: 2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.comparison-product {
    padding: 2rem 1rem;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-icon-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.product-icon {
    font-size: 24px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #0B1F36;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.comparison-row:hover {
    background: #f8fafc;
}

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

.feature-name {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: #0B1F36;
    font-size: 1rem;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.feature-value {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 500;
    color: #4a5568;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.feature-value.included {
    color: #10b981;
    font-size: 20px;
}

.feature-value.partial {
    color: #f59e0b;
    font-size: 20px;
}

.feature-value.not-included {
    color: #ef4444;
    font-size: 20px;
}

/* ============================================
   INTEGRATION SECTION
   ============================================ */

.integration-section {
    background: white;
    padding: 6rem 0;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-title {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.integration-description {
    font-size: 18px;
    color: #3C3C3C;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.integration-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.integration-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.integration-benefit .benefit-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.integration-benefit h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0B1F36;
}

.integration-benefit p {
    color: #3C3C3C;
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
}

/* Integration Diagram */
.integration-diagram {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.2);
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
    z-index: 10;
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.hub-content {
    text-align: center;
    color: white;
}

.hub-content i {
    font-size: 40px;
    margin-bottom: 0.5rem;
    display: block;
}

.hub-content span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.integration-node {
    position: absolute;
    width: 90px;
    height: 90px;
    background: white;
    border: 3px solid #8b5cf6;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.integration-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.3), transparent);
    transform-origin: top center;
    z-index: -1;
}

.integration-node:hover {
    transform: scale(1.15);
    background: #8b5cf6;
    color: white;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.integration-node i {
    font-size: 22px;
    margin-bottom: 0.4rem;
}

/* Position nodes in a proper circle */
.integration-node.erp {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.integration-node.erp::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.integration-node.mes {
    top: 25%;
    right: 10px;
    transform: translateY(-50%);
}

.integration-node.mes::before {
    transform: translate(-50%, -50%) rotate(60deg);
}

.integration-node.scada {
    bottom: 25%;
    right: 10px;
    transform: translateY(50%);
}

.integration-node.scada::before {
    transform: translate(-50%, -50%) rotate(120deg);
}

.integration-node.iot {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.integration-node.iot::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.integration-node.cloud {
    bottom: 25%;
    left: 10px;
    transform: translateY(50%);
}

.integration-node.cloud::before {
    transform: translate(-50%, -50%) rotate(240deg);
}

.integration-node.mobile {
    top: 25%;
    left: 10px;
    transform: translateY(-50%);
}

.integration-node.mobile::before {
    transform: translate(-50%, -50%) rotate(300deg);
}

/* Connection lines animation */
.integration-diagram::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotateConnection 20s linear infinite;
}

@keyframes rotateConnection {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.cta-title {
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #8b5cf6;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #8b5cf6;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    /* ÷background: linear-gradient(135deg, #0B1F36 0%, #1a2332 100%); */
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
    
    .global-cta {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }

    .overview-top,
    .product-detail-grid,
    .integration-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .product-card {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .overview-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-ecosystem {
        width: 400px;
        height: 400px;
    }
    
    .orbit-1 { width: 220px; height: 220px; }
    .orbit-2 { width: 300px; height: 300px; }
    .orbit-3 { width: 380px; height: 380px; }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .overview-text h2, .features-title h2 {
        font-size: 2rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header {
        background: none;
    }

    .comparison-product {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-left: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .feature-name {
        background: #2d3748;
        color: white;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .feature-value {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 15px;
    }

    .comparison-feature {
        display: none;
    }

    .comparison-table {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .product-card {
        min-height: 300px;
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }

    .integration-diagram,
    .product-ecosystem {
        transform: scale(0.8);
    }

    .product-ecosystem {
        width: 300px;
        height: 300px;
    }
    
    .ecosystem-center {
        width: 120px;
        height: 120px;
    }
    
    .orbit-item {
        width: 70px;
        height: 70px;
    }
    
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 220px; height: 220px; }
    .orbit-3 { width: 280px; height: 280px; }

    .feature-card {
        padding: 30px 20px;
    }

    .product-icon {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.content ul {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px !important;
    font-weight: 300;
    color: #4338ca;
    line-height: 1.6;
    list-style: none;
    padding-left: 0;
}

.content ul li {
    position: relative;
    margin-bottom: 0.7em;
    padding-left: 30px;
}

.content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 0;
}