:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --secondary-color: #00d4aa;
    --accent-color: #7c3aed;
    --dark-bg: #0a0e1a;
    --darker-bg: #060810;
    --card-bg: #111827;
    --card-border: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #7c3aed 50%, #00d4aa 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    --gradient-card: linear-gradient(145deg, #111827 0%, #0f172a 100%);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.navbar {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    border-bottom: 1px solid var(--card-border);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-icon {
    font-size: 1.75rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
    align-self: flex-end;
    margin-bottom: 0.25rem;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary);
}

.btn-nav-cta {
    background: var(--gradient-primary);
    color: var(--text-primary) !important;
    border-radius: 8px;
    padding: 0.5rem 1.25rem !important;
    margin-left: 0.5rem;
}

.btn-nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid var(--card-border);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-split {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-video-showcase {
    position: relative;
    padding: 20px;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.3) 0%, rgba(124, 58, 237, 0.2) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.video-frame {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 102, 255, 0.2);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    padding: 4px;
    max-width: 540px;
    margin: 0 auto;
}

.video-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.5), rgba(124, 58, 237, 0.5), rgba(0, 212, 170, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    aspect-ratio: 480 / 272;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-video.loaded {
    opacity: 1;
}

.video-preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.98));
    border-radius: 16px;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 102, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.preloader-progress {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.video-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--primary-light);
    animation: badgePulse 2s ease-in-out infinite;
}

.video-badge i {
    font-size: 1rem;
    color: #ff4444;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 102, 255, 0); }
}

@media (max-width: 991.98px) {
    .hero-video-showcase {
        margin-bottom: 40px;
    }
    
    .video-badge {
        bottom: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-split {
        padding-top: 80px;
    }
    
    .video-frame {
        border-radius: 12px;
    }
    
    .showcase-video {
        border-radius: 10px;
    }
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    padding: 0.375rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.product-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.product-spec {
    background: rgba(0, 102, 255, 0.1);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-light);
}

.product-card .btn {
    width: 100%;
}

.category-section {
    padding: 3rem 0;
}

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

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-icon.ai {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 102, 255, 0.2));
    color: var(--accent-color);
}

.category-icon.gp {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 102, 255, 0.2));
    color: var(--secondary-color);
}

.category-icon.storage {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
    color: var(--primary-light);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.category-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.industries-section {
    background: var(--darker-bg);
}

.industry-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industry-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.site-footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    font-size: 1.5rem;
}

.footer-brand .brand-text {
    font-size: 1.25rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-address {
    margin-bottom: 1.25rem;
}

.footer-address strong {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-address address {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-divider {
    border-color: var(--card-border);
    margin: 2rem 0;
}

.footer-bottom {
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.page-hero {
    padding: 10rem 0 5rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.product-detail-section {
    padding: 4rem 0;
}

.product-image-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
}

.product-detail-image {
    max-width: 100%;
    height: auto;
}

.product-info {
    padding-left: 2rem;
}

.product-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.product-overview {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-applications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.app-tag {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.product-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.features-section {
    background: var(--darker-bg);
}

.feature-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
}

.feature-block-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    color: white;
}

.feature-block-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.specs-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.specs-table table {
    width: 100%;
    margin: 0;
}

.specs-table th,
.specs-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--card-border);
}

.specs-table th {
    background: rgba(0, 102, 255, 0.05);
    font-weight: 600;
    color: var(--text-primary);
    width: 200px;
}

.specs-table td {
    color: var(--text-secondary);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.lead-form-section {
    background: var(--darker-bg);
    padding: 4rem 0;
}

.lead-form-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
}

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

.lead-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lead-form-subtitle {
    color: var(--text-muted);
}

.lead-form .form-label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.lead-form .form-label .required {
    color: #ef4444;
}

.lead-form .form-control,
.lead-form .form-select {
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    background: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
    color: var(--text-primary);
}

.lead-form .form-control::placeholder {
    color: var(--text-muted);
}

.form-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.form-cta .btn {
    min-width: 200px;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-privacy a {
    color: var(--primary-light);
    text-decoration: none;
}

.lead-form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.lead-form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.lead-form-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.solution-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.solution-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-primary);
    color: white;
    flex-shrink: 0;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solution-content {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.benefit-text {
    font-size: 0.95rem;
}

.solution-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-content {
    padding: 4rem 0;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--dark-bg);
    transform: translateX(-50%);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.team-section {
    background: var(--darker-bg);
}

.entity-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
}

.entity-flag {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.entity-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.entity-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.7;
}

.contact-section {
    padding: 4rem 0;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 1rem;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.7;
}

.contact-info-text a {
    color: var(--primary-light);
    text-decoration: none;
}

.faq-section {
    background: var(--darker-bg);
    padding: 4rem 0;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(100%);
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-secondary);
    padding: 1.25rem 1.5rem;
}

.comparison-section {
    padding: 4rem 0;
}

.comparison-table {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    margin: 0;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}

.comparison-table th {
    background: rgba(0, 102, 255, 0.05);
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table .feature-name {
    font-weight: 500;
}

.comparison-table .check {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.resources-section {
    padding: 4rem 0;
}

.resource-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: inherit;
}

.resource-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-light);
    flex-shrink: 0;
}

.resource-info {
    flex-grow: 1;
}

.resource-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.resource-type {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.resource-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.social-proof {
    background: rgba(0, 102, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.social-proof-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .navbar-collapse {
        background: var(--dark-bg);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius);
        border: 1px solid var(--card-border);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .solution-card-header {
        flex-direction: column;
    }
}

/* Language Switcher */
.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.lang-switcher-btn:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(124, 58, 237, 0.2) 100%);
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-1px);
}

.lang-globe {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.lang-flag-img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-name-short {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.lang-chevron {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.lang-switcher-btn[aria-expanded="true"] .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-top: 0.5rem !important;
}

.lang-dropdown-header {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 0.5rem;
}

.lang-option {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--text-primary);
    transform: translateX(4px);
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(124, 58, 237, 0.15) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.lang-native {
    flex: 1;
    font-weight: 500;
}

.lang-check {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Hero Carousel */
.hero-with-carousel {
    position: relative;
}

.hero-carousel-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 30%, transparent 70%, var(--dark-bg) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-carousel-bg .carousel {
    height: 100%;
}

.hero-carousel-bg .carousel-inner {
    height: 100%;
}

.hero-carousel-bg .carousel-item {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-carousel-image {
    max-height: 400px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.carousel-caption-custom {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(10, 14, 26, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--card-border);
}

.carousel-product-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-product-type {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-carousel-bg .carousel-control-prev,
.hero-carousel-bg .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.hero-carousel-bg .carousel-control-prev {
    left: 10%;
}

.hero-carousel-bg .carousel-control-next {
    right: 10%;
}

.hero-carousel-bg .carousel-control-prev:hover,
.hero-carousel-bg .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 102, 255, 0.4);
}

.hero-carousel-bg .carousel-indicators {
    bottom: 5%;
}

.hero-carousel-bg .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-border);
    border: none;
}

.hero-carousel-bg .carousel-indicators button.active {
    background: var(--primary-color);
}

/* Edge Focus Section */
.edge-focus-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(0, 102, 255, 0.05) 50%, var(--dark-bg) 100%);
}

.edge-point-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.edge-point-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.edge-point-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    color: white;
}

.edge-point-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.edge-point-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Comparison Table */
.comparison-section {
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.comparison-table thead {
    background: rgba(0, 102, 255, 0.1);
}

.comparison-table th {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--card-border);
}

.comparison-table th.cloud-col {
    background: rgba(255, 159, 67, 0.1);
    color: #ff9f43;
}

.comparison-table th.edge-col {
    background: rgba(0, 212, 170, 0.1);
    color: var(--secondary-color);
}

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 102, 255, 0.03);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table .cloud-value {
    color: var(--text-muted);
}

.comparison-table .cloud-value i {
    color: #ff9f43;
    margin-right: 0.5rem;
}

.comparison-table .edge-value {
    color: var(--text-secondary);
}

.comparison-table .edge-value i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Sectors Grid */
.sectors-section {
    background: var(--darker-bg);
}

.sector-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    height: 100%;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.sector-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.sector-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    color: white;
}

.sector-content {
    flex-grow: 1;
    min-width: 0;
}

.sector-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.sector-advantage {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.social-proof {
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Use Case Cards */
.use-case-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-size: 1.75rem;
    color: white;
}

.use-case-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.use-case-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Configuration Cards */
.config-card {
    background: var(--gradient-card);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.config-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.config-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.config-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.config-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-light);
}

.config-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.config-specs li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.config-specs li:last-child {
    border-bottom: none;
}

.config-specs li strong {
    color: var(--text-primary);
}

/* Category icon for workstations */
.category-icon.workstation {
    background: linear-gradient(135deg, rgba(255, 159, 67, 0.2), rgba(124, 58, 237, 0.2));
    color: #ff9f43;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-carousel-bg {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1 1 30%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .sector-card {
        padding: 1rem;
    }
    
    .sector-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .comparison-table th.cloud-col,
    .comparison-table th.edge-col,
    .comparison-table .cloud-value,
    .comparison-table .edge-value {
        min-width: 140px;
    }
}
