/* ===================================
   INNOSHRI - Premium Modern Styles
   =================================== */

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

:root {
    /* Colors - Updated to match InnoShri logo */
    --primary: #0088cc;
    --primary-dark: #006699;
    --secondary: #5cb85c;
    --accent: #0088cc;
    --success: #5cb85c;
    --dark: #0a0e27;
    --darker: #050814;
    --light: #f8f9fa;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0088cc 0%, #5cb85c 100%);
    --gradient-accent: linear-gradient(135deg, #0088cc 0%, #5cb85c 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    --gradient-text: linear-gradient(135deg, #0088cc 0%, #5cb85c 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 136, 204, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 136, 204, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 136, 204, 0.2);
    --shadow-xl: 0 24px 64px rgba(0, 136, 204, 0.25);
    --glow: 0 0 20px rgba(0, 136, 204, 0.5);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--darker);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Particle Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    box-shadow: var(--glow);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 136, 204, 0.5));
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: rotate 10s linear infinite;
}

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

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link.contact-btn {
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
}

.nav-link.contact-btn::before {
    display: none;
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    background: 
        linear-gradient(rgba(10, 14, 39, 0.85), rgba(10, 14, 39, 0.9)),
        url('../images/hero-ai-banner.jpg') center center / cover no-repeat;
    background-attachment: fixed;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 136, 204, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(92, 184, 92, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(5deg); }
    66% { transform: translate(-30px, 30px) rotate(-5deg); }
}

.hero .container-fluid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn span {
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 12px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.visual-sphere {
    position: relative;
    width: 400px;
    height: 400px;
}

.sphere-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 136, 204, 0.3);
    animation-duration: 15s;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(92, 184, 92, 0.3);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(0, 136, 204, 0.3);
    animation-duration: 25s;
}

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

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 4rem;
    color: var(--white);
    box-shadow: 0 0 60px rgba(0, 136, 204, 0.6);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 60px rgba(0, 136, 204, 0.6); }
    50% { box-shadow: 0 0 100px rgba(0, 136, 204, 0.9); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
}

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

.about-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .card-glow {
    opacity: 1;
    animation: rotate-glow 8s linear infinite;
}

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

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Platform Benefits Section - Flow Diagram Style */
.platform-benefits {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.platform-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-flow {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Top Benefits */
.top-benefits,
.top-benefits-centered {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 0 auto 3rem;
    max-width: 100%;
    padding: 0;
    justify-items: center;
}

.benefit-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 136, 204, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    max-width: 450px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 16px;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.benefit-box:hover::before {
    opacity: 0.1;
}

.benefit-box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: var(--shadow-xl);
}

.benefit-box-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.benefit-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.benefit-tags-grid {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    flex: 1;
    margin-top: auto;
}

.benefit-tag {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    text-align: left;
    width: 100%;
}

.benefit-tag:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.benefit-tag i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Flow Arrows Down */
.flow-arrows-down {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.arrow-down {
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 136, 204, 0.5), rgba(92, 184, 92, 0.5));
    width: 4px;
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.arrow-down::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid rgba(92, 184, 92, 0.5);
}

/* Core Platform */
/* Simplified Platform Stack */
.platform-stack-simple {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.stack-layer {
    background: linear-gradient(135deg, rgba(5, 10, 25, 0.95) 0%, rgba(10, 20, 40, 0.92) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    margin: 0 auto 2rem;
    max-width: 900px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stack-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 1;
}

.stack-layer.primary::before {
    background: linear-gradient(90deg, #0088cc, #006699);
}

.stack-layer.secondary::before {
    background: linear-gradient(90deg, #5cb85c, #449944);
}

.stack-layer.tertiary::before {
    background: linear-gradient(90deg, #ff9500, #d87400);
}

.stack-layer:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* Layer Icons */
.layer-icon-large {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc, #006699);
    border-radius: 20px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 
        0 10px 30px rgba(0, 136, 204, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.layer-icon-medium {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.stack-layer.secondary .layer-icon-medium {
    background: linear-gradient(135deg, #5cb85c, #449944);
}

.stack-layer.tertiary .layer-icon-medium {
    background: linear-gradient(135deg, #ff9500, #d87400);
}

/* Layer Content */
.layer-content {
    flex: 1;
}

.layer-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.layer-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Layer Badges */
.layer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-2px);
}

.badge-pill i {
    color: #5cb85c;
}

/* Benefits Inline */
.benefits-inline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.benefit-inline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(92, 184, 92, 0.3);
}

.benefit-inline i {
    font-size: 1.5rem;
    color: #5cb85c;
}

/* Infrastructure Inline */
.infra-inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.infra-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.infra-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 153, 0, 0.5);
    transform: translateY(-2px);
}

.infra-badge i {
    color: #ff9500;
    font-size: 1.1rem;
}

/* Upward Flow Arrows */
.flow-arrow-up-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0;
    position: relative;
}

.arrow-line-up {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 136, 204, 0.8) 0%, rgba(92, 184, 92, 0.8) 100%);
    border-radius: 2px;
    position: relative;
}

.arrow-head-up {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc, #5cb85c);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.4);
    margin-top: -20px;
    animation: bounce-up 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Arrow connecting to Benefits at top */
.arrow-to-benefits {
    margin-bottom: 2rem;
}

.arrow-to-benefits .arrow-line-up {
    height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .flow-arrow-up-modern {
        margin: 1rem 0;
    }
    
    .arrow-line-up {
        height: 40px;
    }
    
    .arrow-to-benefits .arrow-line-up {
        height: 50px;
    }
    
    .arrow-head-up {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .stack-layer {
        padding: 2rem 2rem;
    }
    
    .benefits-inline {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .platform-stack-simple {
        padding: 1rem 0;
    }
    
    .stack-layer {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stack-layer:hover {
        transform: translateY(-5px) translateX(0);
    }
    
    .layer-icon-large,
    .layer-icon-medium {
        margin: 0 auto;
    }
    
    .layer-content {
        text-align: center;
    }
    
    .layer-content h3 {
        font-size: 1.5rem;
    }
    
    .layer-badges,
    .benefits-inline,
    .infra-inline {
        justify-content: center;
    }
    
    .benefits-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .benefit-inline {
        justify-content: center;
    }
}

/* Modern Platform Flow Architecture */
.platform-flow-modern {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Top Benefits Row */
.platform-benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-benefit-card {
    background: linear-gradient(135deg, rgba(5, 10, 25, 0.95) 0%, rgba(10, 20, 40, 0.92) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.platform-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-benefit-card:hover::before {
    opacity: 1;
}

.platform-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benefit-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
}

.benefit-icon-modern.blue {
    background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%);
}

.benefit-icon-modern.green {
    background: linear-gradient(135deg, #5cb85c 0%, #3d9b3d 100%);
}

.benefit-icon-modern.orange {
    background: linear-gradient(135deg, #ff9500 0%, #d87400 100%);
}

.platform-benefit-card:hover .benefit-icon-modern {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 0.2);
}

.platform-benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.platform-benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Flow Connector */
.flow-connector-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    opacity: 0.6;
}

.connector-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, rgba(0, 136, 204, 0.8), rgba(92, 184, 92, 0.8));
    border-radius: 2px;
}

.connector-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #0088cc, #5cb85c);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
    margin-top: -6px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(0, 136, 204, 0.8);
    }
}

/* AI Platform Core */
.ai-platform-core {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15) 0%, rgba(92, 184, 92, 0.12) 100%);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.ai-platform-core::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0088cc 0%, #5cb85c 50%, #0088cc 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.ai-platform-core:hover {
    border-color: rgba(0, 136, 204, 0.4);
    box-shadow: 
        0 25px 70px rgba(0, 136, 204, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.core-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 50%;
    font-size: 3rem;
    color: white;
    box-shadow: 
        0 10px 40px rgba(0, 136, 204, 0.4),
        inset 0 3px 15px rgba(255, 255, 255, 0.2);
    animation: float-icon 3s ease-in-out infinite;
}

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

.ai-platform-core h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.ai-platform-core p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.core-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.core-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.core-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
}

.core-tag i {
    color: #5cb85c;
    font-size: 1.1rem;
}

/* Platform Foundation */
.platform-foundation {
    background: linear-gradient(135deg, rgba(5, 10, 25, 0.95) 0%, rgba(10, 20, 40, 0.92) 100%);
    border: 2px solid rgba(92, 184, 92, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.platform-foundation h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.platform-foundation h4 i {
    color: #5cb85c;
    font-size: 1.3rem;
}

.foundation-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.foundation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.foundation-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(92, 184, 92, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.2);
}

.foundation-item i {
    font-size: 2.5rem;
    color: #5cb85c;
    transition: all 0.3s ease;
}

.foundation-item:hover i {
    transform: scale(1.15);
    color: #6dd46d;
}

.foundation-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .platform-benefits-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .foundation-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .ai-platform-core {
        padding: 2.5rem 2rem;
    }
    
    .ai-platform-core h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .platform-flow-modern {
        padding: 2rem 0;
    }
    
    .platform-benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .foundation-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .foundation-item {
        padding: 1.25rem 0.75rem;
    }
    
    .foundation-item i {
        font-size: 2rem;
    }
    
    .core-features {
        gap: 1rem;
    }
    
    .core-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

.core-platform {
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.core-platform::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

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

.platform-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.platform-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.platform-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.pillar-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pillar-card-center {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.pillar-icon-card {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pillar-icon-card.large {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.pillar-card:hover .pillar-icon-card {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.pillar-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.pillar-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Old styles to remove */
.platform-pillars,
.platform-bottom,
.pillar-circle,
.pillar-icon,
.center-pillar::before,
.center-pillar::after {
    display: none;
}

/* Flow Arrow Up */
.flow-arrow-up {
.center-pillar::after {
    right: -110px;
}

.pillar-circle p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* Flow Arrow Up */
.flow-arrow-up {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.arrow-up {
    height: 60px;
    background: linear-gradient(to top, rgba(0, 136, 204, 0.5), rgba(92, 184, 92, 0.5));
    width: 4px;
    position: relative;
    border-radius: 2px;
}

.arrow-up::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid rgba(0, 136, 204, 0.5);
}

/* Infrastructure Base */
.infrastructure-base {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(92, 184, 92, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.infrastructure-base h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.infra-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.infra-icon {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.infra-icon:hover {
    transform: translateY(-5px);
}

.infra-icon i {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 184, 92, 0.2);
    border: 2px solid rgba(92, 184, 92, 0.5);
    border-radius: 12px;
    font-size: 1.8rem;
    color: var(--success);
    transition: all 0.3s ease;
}

.infra-icon:hover i {
    background: rgba(92, 184, 92, 0.3);
    border-color: var(--success);
    box-shadow: 0 0 20px rgba(92, 184, 92, 0.4);
}

.infra-icon span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.feature-list i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Products Section */
.products {
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.featured {
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 0 40px rgba(0, 136, 204, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(5deg) scale(1.1);
}

.product-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.resilience {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.5);
    color: var(--primary);
}

.product-badge.sustainability {
    background: rgba(92, 184, 92, 0.2);
    border: 1px solid rgba(92, 184, 92, 0.5);
    color: var(--success);
}

.product-badge.integration {
    background: rgba(0, 136, 204, 0.2);
    border: 1px solid rgba(0, 136, 204, 0.5);
    color: var(--secondary);
}

.product-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-family: var(--font-heading);
}

.product-subtitle {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

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

.product-features li:hover {
    padding-left: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.product-features li i {
    font-size: 1.3rem;
    color: var(--success);
    min-width: 25px;
    margin-top: 0.2rem;
}

.product-features li div {
    flex: 1;
}

.product-features strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.product-features span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-product {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 136, 204, 0.3);
    color: var(--white);
}

.btn-product:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* Product Comparison */
.product-comparison {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.product-comparison h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.product-comparison > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-3px);
}

.comparison-item i {
    font-size: 1.5rem;
    color: var(--success);
}

.comparison-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* NEW VISUAL PRODUCTS SECTION */
.products {
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    position: relative;
}

.products .container {
    max-width: 1200px;
}

.products-visual-showcase {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem;
    margin: 4rem 0;
    width: 100%;
    grid-auto-flow: dense;
}

.product-visual-card {
    position: relative;
    padding: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(to bottom, rgba(0, 136, 204, 0.08), transparent);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(30px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.product-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0088cc, #5cb85c, #0088cc);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 60%);
    pointer-events: none;
}

.product-visual-card.blue-theme {
    background: 
        linear-gradient(135deg, rgba(0, 136, 204, 0.18) 0%, rgba(0, 136, 204, 0.08) 100%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent);
    border-color: rgba(0, 136, 204, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 136, 204, 0.3),
        0 0 0 1px rgba(0, 136, 204, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.product-visual-card.green-theme {
    background: 
        linear-gradient(135deg, rgba(92, 184, 92, 0.18) 0%, rgba(92, 184, 92, 0.08) 100%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent);
    border-color: rgba(92, 184, 92, 0.6);
    box-shadow: 
        0 20px 60px rgba(92, 184, 92, 0.3),
        0 0 0 1px rgba(92, 184, 92, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.product-visual-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 30px 80px rgba(0, 136, 204, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.product-visual-card.green-theme:hover {
    box-shadow: 
        0 30px 80px rgba(92, 184, 92, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}
}

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

.product-visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 136, 204, 0.3),
        0 0 0 1px rgba(0, 136, 204, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-visual-card.green-theme:hover {
    border-color: rgba(92, 184, 92, 0.5);
    box-shadow: 
        0 20px 60px rgba(92, 184, 92, 0.3),
        0 0 0 1px rgba(92, 184, 92, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-visual-card.featured-product {
    border-color: rgba(92, 184, 92, 0.5);
    box-shadow: 0 10px 40px rgba(92, 184, 92, 0.2);
}

.featured-star {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    animation: rotate-star 10s linear infinite;
    z-index: 2;
}

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

.product-visual-icon {
    position: relative;
    width: 100%;
    padding: 3rem 0 2rem;
    background: transparent;
    margin: 0 auto;
    z-index: 1;
}

.icon-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #0088cc 0%, #005f8a 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 
        0 15px 40px rgba(0, 136, 204, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.product-visual-card.green-theme .icon-circle {
    background: linear-gradient(135deg, #5cb85c 0%, #3d9b3d 100%);
    box-shadow: 
        0 15px 40px rgba(92, 184, 92, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.product-visual-card:hover .icon-circle {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 
        0 20px 50px rgba(0, 136, 204, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.product-visual-card.green-theme:hover .icon-circle {
    box-shadow: 
        0 20px 50px rgba(92, 184, 92, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.icon-pulse {
    display: none;
}

.product-header-box {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-visual-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-visual-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-features-box {
    background: rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 0;
    padding: 2.5rem 2.5rem;
    margin: 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

.features-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.product-visual-features {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 0;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.feature-icon-item i {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.15));
    border: 2px solid rgba(0, 136, 204, 0.4);
    border-radius: 18px;
    font-size: 1.8rem;
    color: #00aaff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.product-visual-card.green-theme .feature-icon-item i {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.25), rgba(92, 184, 92, 0.15));
    border-color: rgba(92, 184, 92, 0.4);
    color: #6dd46d;
    box-shadow: 0 8px 25px rgba(92, 184, 92, 0.3);
}

.feature-icon-item:hover i {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4), rgba(0, 136, 204, 0.25));
    border-color: rgba(0, 136, 204, 0.7);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.5);
}

.product-visual-card.green-theme .feature-icon-item:hover i {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.4), rgba(92, 184, 92, 0.25));
    border-color: rgba(92, 184, 92, 0.7);
    box-shadow: 0 12px 35px rgba(92, 184, 92, 0.5);
}

.feature-icon-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-visual-cta {
    position: relative;
    z-index: 1;
    padding: 0 2.5rem 2.5rem;
    margin-top: auto;
}

.visual-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #0088cc, #005f8a);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(0, 136, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.visual-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.visual-btn:hover::before {
    left: 100%;
}

.visual-btn:hover {
    background: linear-gradient(135deg, #00aaff, #0088cc);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 136, 204, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.visual-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.visual-btn:hover i {
    transform: translateX(8px);
}

.product-visual-card.green-theme .visual-btn {
    background: linear-gradient(135deg, #5cb85c, #3d9b3d);
    box-shadow: 
        0 10px 30px rgba(92, 184, 92, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.product-visual-card.green-theme .visual-btn:hover {
    background: linear-gradient(135deg, #6dd46d, #5cb85c);
    box-shadow: 
        0 15px 40px rgba(92, 184, 92, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.product-benefits-visual {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.benefit-visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.benefit-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(92, 184, 92, 0.2));
    border: 2px solid rgba(0, 136, 204, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.benefit-visual-item:hover .benefit-icon-circle {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.4), rgba(92, 184, 92, 0.4));
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.5);
}

.benefit-visual-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Solution Architecture Section */
.architecture {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.architecture::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.architecture-diagram {
    max-width: 1100px;
    margin: 0 auto 4rem;
    position: relative;
}

/* NEW VISUAL ARCHITECTURE FLOW */
.architecture-visual-flow {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.flow-section {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.flow-section:hover {
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.2);
    transform: translateY(-5px);
}

/* Benefits Visual */
.benefits-visual {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(92, 184, 92, 0.1));
    border-color: rgba(0, 136, 204, 0.4);
}

.flow-icon-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flow-icon-box {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flow-icon-box.blue {
    border-color: rgba(0, 136, 204, 0.3);
}

.flow-icon-box.green {
    border-color: rgba(92, 184, 92, 0.3);
}

.flow-icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.flow-icon-box.green:hover {
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.3);
}

.flow-icon-box i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.flow-icon-box.blue i {
    color: #0088cc;
}

.flow-icon-box.green i {
    color: #5cb85c;
}

.flow-icon-box span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

/* Industries Visual */
.industries-visual {
    background: rgba(255, 255, 255, 0.05);
}

.industries-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-pill {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.4);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.industry-pill:hover {
    background: rgba(0, 136, 204, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.industry-pill i {
    color: #0088cc;
    font-size: 1.1rem;
}

/* Platform Visual */
.platform-visual {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.05));
    border-color: rgba(0, 136, 204, 0.5);
    position: relative;
}

.platform-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 2rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.5);
}

.platform-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.platform-icon-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.platform-icon-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.platform-icon-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.platform-icon-item span {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

/* Products Flow Visual */
.products-visual {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1), rgba(0, 136, 204, 0.1));
    border-color: rgba(92, 184, 92, 0.4);
}

.products-flow-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-flow-box {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(92, 184, 92, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-flow-box:hover {
    border-color: rgba(92, 184, 92, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.3);
}

.product-flow-box i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.product-flow-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.flow-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-tags span {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.custom-dev-visual {
    padding: 1.25rem;
    background: rgba(0, 136, 204, 0.1);
    border: 1px dashed rgba(0, 136, 204, 0.4);
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.custom-dev-visual i {
    font-size: 1.5rem;
    color: var(--primary);
}

.custom-dev-visual span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Protocols Visual */
.protocols-visual {
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.protocols-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, #0088cc, #5cb85c);
    border-radius: 50px;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.protocols-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.protocol-badge {
    padding: 1rem 1.75rem;
    background: rgba(0, 136, 204, 0.2);
    border: 2px solid rgba(0, 136, 204, 0.5);
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.protocol-badge:hover {
    background: rgba(0, 136, 204, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

/* Flow Section Row (Vendors & Systems) */
.flow-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.flow-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.vendors-visual {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.vendors-visual:hover {
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
}

.vendor-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vendor-logo {
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.vendor-logo:hover {
    background: rgba(0, 136, 204, 0.2);
    transform: scale(1.05);
}

.systems-visual {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.systems-visual:hover {
    border-color: rgba(92, 184, 92, 0.5);
    box-shadow: 0 8px 30px rgba(92, 184, 92, 0.2);
}

.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.system-tags span {
    padding: 0.75rem 1.25rem;
    background: rgba(92, 184, 92, 0.15);
    border: 1px solid rgba(92, 184, 92, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.system-tags span:hover {
    background: rgba(92, 184, 92, 0.3);
    transform: translateY(-3px);
}

.system-tags i {
    color: var(--success);
}

/* IoT Visual */
.iot-visual {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1), rgba(0, 136, 204, 0.05));
    border-color: rgba(92, 184, 92, 0.4);
}

.iot-icons-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.iot-icon-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.iot-icon-item:hover {
    background: rgba(92, 184, 92, 0.2);
    transform: translateY(-5px);
}

.iot-icon-item i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 0.75rem;
}

.iot-icon-item span {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

/* Flow Connectors */
.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    position: relative;
}

.connector-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 136, 204, 0.6), rgba(92, 184, 92, 0.6));
    margin-bottom: 0.5rem;
}

.flow-connector i {
    color: rgba(0, 136, 204, 0.8);
    font-size: 1.5rem;
    animation: bounce-arrow 2s ease-in-out infinite;
}

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

.flow-connector.dual {
    flex-direction: column;
}

.connector-split {
    display: flex;
    justify-content: center;
    gap: 150px;
}

.connector-split .connector-line {
    width: 3px;
    height: 40px;
}

.connector-split .connector-line.left,
.connector-split .connector-line.right {
    background: linear-gradient(to bottom, rgba(0, 136, 204, 0.6), rgba(92, 184, 92, 0.6));
}

.connector-arrows {
    display: flex;
    gap: 150px;
}

.connector-arrows i {
    color: rgba(0, 136, 204, 0.8);
    font-size: 1.5rem;
}

/* Foundation */
.flow-foundation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.2), rgba(0, 136, 204, 0.2));
    border: 3px solid rgba(92, 184, 92, 0.6);
    border-radius: 24px;
    text-align: center;
}

.flow-foundation i {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.flow-foundation h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

/* Architecture Layers */
.arch-layer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.arch-layer:hover {
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: var(--shadow-lg);
}

.layer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Benefits & Industries Layer */
.benefits-layer {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(92, 184, 92, 0.1));
    border-color: rgba(0, 136, 204, 0.3);
}

.benefits-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-industry-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-industry-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.benefit-industry-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-industry-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.industries-served {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-served span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.industries-served i {
    color: var(--success);
}

/* Ops Layer */
.ops-layer {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0.05));
    border-color: rgba(0, 136, 204, 0.4);
}

.ops-components {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.ops-item:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-5px);
}

.ops-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.ops-item span {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

/* Products & Services Layer */
.products-services-layer {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1), rgba(0, 136, 204, 0.1));
    border-color: rgba(92, 184, 92, 0.3);
}

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

.ps-column {
    text-align: center;
}

.ps-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.ps-item {
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ps-item:hover {
    background: rgba(92, 184, 92, 0.2);
    border-color: var(--success);
    transform: scale(1.05);
}

.custom-dev-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 136, 204, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-dev-note i {
    font-size: 1.5rem;
    color: var(--primary);
}

.custom-dev-note span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Integration Layer */
.integration-layer {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(92, 184, 92, 0.1));
    border-color: rgba(0, 136, 204, 0.3);
}

.integration-protocols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

.protocol-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.protocol-logo {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
}

.protocol-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.protocol-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 0.5rem;
}

/* Split Layers */
.arch-layer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.third-party-layer {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08), rgba(0, 136, 204, 0.02));
    border-color: rgba(0, 136, 204, 0.3);
}

.third-party-systems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.vendor-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.vendor-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
}

.other-systems-layer {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.08), rgba(92, 184, 92, 0.02));
    border-color: rgba(92, 184, 92, 0.3);
}

.other-systems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.system-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.system-item:hover {
    background: rgba(92, 184, 92, 0.15);
    border-color: var(--success);
    transform: translateX(5px);
}

.system-item i {
    font-size: 1.5rem;
    color: var(--success);
}

.system-item span {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

/* Utilities Layer */
.utilities-layer {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1), rgba(0, 136, 204, 0.05));
    border-color: rgba(92, 184, 92, 0.3);
}

.utilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

.utility-item:hover {
    background: rgba(92, 184, 92, 0.15);
    border-color: var(--success);
    transform: scale(1.05);
}

.utility-item i {
    font-size: 2rem;
    color: var(--success);
    margin-bottom: 0.75rem;
}

.utility-item span {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.85rem;
}

/* Arrows */
.arch-arrow {
    text-align: center;
    margin: 1rem 0;
}

.arch-arrow i {
    font-size: 2rem;
    color: var(--primary);
    animation: bounce-arrow 2s ease-in-out infinite;
}

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

.arch-arrows-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.arrow-split-left,
.arrow-split-right {
    text-align: center;
}

.arrow-split-left i,
.arrow-split-right i {
    font-size: 2rem;
    color: var(--primary);
}

/* Base */
.arch-base {
    padding: 2rem;
    background: rgba(92, 184, 92, 0.1);
    border: 2px solid rgba(92, 184, 92, 0.3);
    border-radius: 20px;
    text-align: center;
}

.arch-base h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Architecture Features */
.architecture-features {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.architecture-features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.arch-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.arch-feature {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.arch-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 136, 204, 0.5);
    transform: translateY(-5px);
}

.arch-feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.arch-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.arch-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Solutions Section */
.solutions {
    background: var(--gradient-dark);
}

.solutions-showcase {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    width: 100%;
}

.solution-card-modern {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(5, 10, 25, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.solution-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #5cb85c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card-modern:hover::before {
    opacity: 1;
}

.solution-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 136, 204, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card-modern:hover::after {
    opacity: 1;
}

.solution-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 204, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 136, 204, 0.3),
        0 0 0 1px rgba(0, 136, 204, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.solution-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(92, 184, 92, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    z-index: 1;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.solution-icon-modern {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 
        0 8px 25px rgba(0, 136, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.solution-card-modern:hover .solution-icon-modern {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 136, 204, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.solution-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.solution-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 2rem 2.5rem;
}

.solution-content > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 136, 204, 0.12);
    border: 1px solid rgba(0, 136, 204, 0.25);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

.feature-tag i {
    color: #0088cc;
    font-size: 0.9rem;
}
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

/* Industries Section */
.industries {
    background: radial-gradient(circle at 80% 50%, rgba(92, 184, 92, 0.05) 0%, transparent 50%);
}

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

.industry-card-modern {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card-modern:hover .industry-overlay {
    opacity: 0.1;
}

.industry-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.industry-icon-modern {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.industry-card-modern:hover .industry-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.industry-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.industry-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-link:hover {
    gap: 1rem;
    color: var(--primary);
}

/* Global Section */
.global {
    background: var(--gradient-dark);
}

.global-map-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-visual {
    position: relative;
    padding: 2rem;
}

.world-map {
    width: 100%;
    height: auto;
}

.continent {
    fill: rgba(0, 102, 255, 0.1);
    stroke: rgba(0, 102, 255, 0.3);
    stroke-width: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.continent:hover {
    fill: rgba(0, 102, 255, 0.2);
    stroke: rgba(92, 184, 92, 0.6);
}

.location-marker {
    fill: var(--secondary);
    stroke: var(--primary);
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: marker-pulse 2s ease-in-out infinite;
}

@keyframes marker-pulse {
    0%, 100% { r: 8; opacity: 1; }
    50% { r: 12; opacity: 0.7; }
}

.location-marker:hover {
    fill: var(--primary);
    stroke: var(--secondary);
    r: 14;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.region-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.region-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-md);
}

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

.region-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

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

.region-content li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.region-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Stats Section */
.stats {
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.stat-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Accreditations */
.accreditations {
    background: var(--gradient-dark);
}

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

.accreditation-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.accreditation-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.accreditation-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.accreditation-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.accreditation-item p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact {
    background: radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: var(--shadow-md);
}

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

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.contact-info-card a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-info-card p {
    color: var(--white);
    margin: 0;
}

.contact-info-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form-modern {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-success-modern {
    display: none;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--success);
    border-radius: 24px;
}

.form-success-modern.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
    font-size: 2.5rem;
    color: var(--dark);
}

.form-success-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.form-success-modern p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
    max-width: 350px;
}

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

.logo-image-footer {
    height: 80px;
    width: auto;
}

.logo-footer h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list i {
    color: var(--primary);
}

.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.4);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .products-visual-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 3rem;
    }
}

@media (max-width: 1200px) {
    .hero .container-fluid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .products-visual-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }
    
    .solutions-showcase {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 90px);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        align-items: stretch;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .top-benefits,
    .top-benefits-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-tags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    
    .platform-pillars {
        flex-direction: column;
        gap: 2rem;
    }
    
    .platform-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .products-visual-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .benefits-icon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .flow-icon-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .platform-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-flow-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .protocols-row {
        gap: 1rem;
    }
    
    .flow-section-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vendor-logos {
        grid-template-columns: 1fr;
    }
    
    .iot-icons-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .center-pillar::before,
    .center-pillar::after {
        display: none;
    }
    
    .global-map-container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-card-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .top-benefits,
    .top-benefits-centered {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-tags-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .flow-arrows-down {
        display: none;
    }
    
    .platform-pillars {
        flex-direction: column;
        gap: 2rem;
    }
    
    .platform-pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .products-visual-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solutions-showcase {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .solution-card-modern {
        min-height: auto;
        padding: 2.5rem 2rem;
    }
    
    .solution-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .solution-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .solution-card-modern h3 {
        font-size: 1.5rem;
    }
    
    .benefits-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .flow-icon-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-icons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-flow-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industries-pills {
        gap: 0.75rem;
    }
    
    .industry-pill {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }
    
    .protocols-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .flow-section-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vendor-logos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .iot-icons-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .connector-split {
        gap: 50px;
    }
    
    .connector-arrows {
        gap: 50px;
    }
    
    .center-pillar::before,
    .center-pillar::after {
        display: none;
    }
    
    .infra-icons {
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .visual-sphere {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container-fluid {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .comparison-features {
        grid-template-columns: 1fr;
    }
    
    .product-card h3 {
        font-size: 1.5rem;
    }
    
    .benefits-icon-grid {
        grid-template-columns: 1fr;
    }
    
    .iot-icons-row {
        grid-template-columns: 1fr;
    }
    
    .product-visual-name {
        font-size: 1.6rem;
    }
    
    .product-visual-tagline {
        font-size: 1rem;
    }
    
    .product-visual-name {
        font-size: 1.6rem;
    }
    
    .product-visual-tagline {
        font-size: 1rem;
    }
    
    .product-header-box {
        padding: 1.25rem;
    }
    
    .product-features-box {
        padding: 1.5rem;
    }
    
    .features-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .visual-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .benefit-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}
