/*
QuantumStream Marketing Website
Design System: Blue/Cyan palette from product application
*/

@charset "utf-8";

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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #0b1020;
    color: #e7eefc;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced background colors - Blue/Cyan palette */
.quantum-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 15% 85%, rgba(58, 123, 213, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 85% 15%, rgba(62, 201, 214, 0.7) 0%, transparent 50%),
                radial-gradient(circle at 45% 60%, rgba(122, 183, 255, 0.5) 0%, transparent 50%),
                radial-gradient(circle at 70% 40%, rgba(26, 54, 93, 0.6) 0%, transparent 50%),
                linear-gradient(135deg, #0a0a0a 0%, #0b1020 50%, #000000 100%);
    animation: backgroundPulse 14s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        filter: brightness(0.9) saturate(1.4) hue-rotate(0deg);
    }
    33% {
        filter: brightness(1.1) saturate(1.7) hue-rotate(10deg);
    }
    66% {
        filter: brightness(1.0) saturate(1.5) hue-rotate(-5deg);
    }
}

/* Floating geometric shapes */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(122, 183, 255, 0.3);
    animation: floatShape 20s linear infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
    border-color: rgba(122, 183, 255, 0.4);
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: -5s;
    border-radius: 50%;
    border-color: rgba(62, 201, 214, 0.4);
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-delay: -10s;
    transform: rotate(45deg);
    border-color: rgba(122, 183, 255, 0.4);
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    left: 50%;
    animation-delay: -15s;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(45deg, rgba(122, 183, 255, 0.1), transparent);
}

@keyframes floatShape {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Network lines */
.network-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #7ab7ff, transparent);
    height: 1px;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-line:nth-child(1) {
    top: 20%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #7ab7ff, transparent);
    animation-delay: 0s;
}

.network-line:nth-child(2) {
    top: 60%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #3ec9d6, transparent);
    animation-delay: -1s;
}

.network-line:nth-child(3) {
    top: 40%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, #5a9fd4, transparent);
    animation-delay: -2s;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Glassmorphism styles */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(122, 183, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 96%;
    max-width: 1200px;
    padding: 18px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(122, 183, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(122, 183, 255, 0.15);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

header.scrolled {
    background: rgba(122, 183, 255, 0.12);
    backdrop-filter: blur(30px);
    border-color: rgba(122, 183, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(122, 183, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #7ab7ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 10px rgba(122, 183, 255, 0.6));
}

.logo-text {
    background: linear-gradient(135deg, #7ab7ff, #3ec9d6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 12px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
    color: #7ab7ff;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.15), rgba(62, 201, 214, 0.1));
    box-shadow: 0 0 20px rgba(122, 183, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 15px rgba(122, 183, 255, 0.2);
    border: 1px solid rgba(122, 183, 255, 0.3);
    text-shadow: 0 0 10px rgba(122, 183, 255, 0.8);
    transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(122, 183, 255, 0.1);
    box-shadow: 0 0 15px rgba(122, 183, 255, 0.3);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #7ab7ff, #3ec9d6);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(11, 16, 32, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(122, 183, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-nav.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-nav a:hover, .mobile-nav a.active {
    background: rgba(122, 183, 255, 0.1);
    color: #7ab7ff;
    box-shadow: 0 0 20px rgba(122, 183, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(122, 183, 255, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    max-width: 1000px;
    padding: 80px 40px;
    margin-top: 120px;
    animation: heroAppear 2.5s ease-out;
    position: relative;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #a8d4ff;
    margin-bottom: 25px;
    opacity: 0;
    animation: slideInFromLeft 1.2s ease 0.3s forwards;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    position: relative;
    display: inline-block;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(122, 183, 255, 0.6);
}

.hero-subtitle::before, .hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7ab7ff, transparent);
    animation: linePulse 3s ease infinite;
}

.hero-subtitle::before {
    left: -60px;
}

.hero-subtitle::after {
    right: -60px;
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #a8d4ff 0%, #5ee6f8 30%, #7ab7ff 60%, #a8d4ff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: modernGradient 8s ease infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    opacity: 0;
    animation: slideInFromRight 1.2s ease 0.6s forwards, modernGradient 8s ease 0.6s infinite;
    filter: brightness(1.3) contrast(1.1);
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    max-width: 700px;
    margin: 40px auto 50px;
    opacity: 0;
    animation: fadeInScale 1.2s ease 0.9s forwards;
    text-align: center;
}

.hero-description p {
    font-size: 1.2rem;
    color: #e7eefc;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    margin: 60px auto 50px;
    max-width: 640px;
    opacity: 0;
    animation: slideUpStagger 1.2s ease 1.2s forwards;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 24px 20px;
    min-height: 140px;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.15), rgba(62, 201, 214, 0.12));
    border: 1px solid rgba(122, 183, 255, 0.35);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(122, 183, 255, 0.2), 
                inset 0 0 0 1px rgba(122, 183, 255, 0.15);
}

.hero-stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(62, 201, 214, 0.5);
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.2), rgba(62, 201, 214, 0.18));
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.3), 
                inset 0 0 0 1px rgba(122, 183, 255, 0.3);
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #a8d4ff;
    display: block;
    text-shadow: 0 2px 20px rgba(122, 183, 255, 0.6);
    margin-bottom: 8px;
    filter: brightness(1.2);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: #e7eefc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonSlideUp 1.2s ease 1.5s forwards;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #7ab7ff, #3ec9d6);
    color: #0b1020;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(122, 183, 255, 0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #7ab7ff;
    color: #7ab7ff;
    box-shadow: 0 4px 15px rgba(122, 183, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(122, 183, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(122, 183, 255, 0.08);
    box-shadow: 0 12px 30px rgba(122, 183, 255, 0.2);
}

/* Problem Section */
.problem-section {
    padding: 150px 0;
    position: relative;
}

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

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 80px;
    color: #7ab7ff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #7ab7ff, #3ec9d6);
    border-radius: 2px;
}

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

.problem-card {
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}


.problem-card h3 {
    font-size: 1.5rem;
    color: #e7eefc;
    margin-bottom: 15px;
}

.problem-card p {
    font-size: 1rem;
    color: #b6c5e3;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

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

.diagonal-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Feature Content (Parallelogram) - Now for images */
.feature-content {
    flex: 1.69;
    height: 520px;
    padding: 30px;
    transform: skew(-2deg);
    transition: all 0.4s ease;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.08), rgba(62, 201, 214, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content:hover {
    transform: skew(-2deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(122, 183, 255, 0.3);
    border-color: rgba(122, 183, 255, 0.3);
}

/* Feature Visual (Rectangle) - Now for text */
.feature-visual {
    flex: 0.7;
    padding: 35px 40px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.12), rgba(62, 201, 214, 0.08));
    transition: all 0.4s ease;
    border: 1px solid rgba(122, 183, 255, 0.2);
}

.feature-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.25);
    border-color: rgba(122, 183, 255, 0.3);
}

/* Screenshot styling for images in .feature-content */
.feature-screenshot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(122, 183, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: skew(2deg); /* Counter the parent skew */
    position: relative;
}

/* Text styling for .feature-visual */
.feature-visual .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-visual .feature-icon i {
    font-size: 32px;
}

.feature-visual h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

.feature-visual p {
    font-size: 0.95rem;
    color: #b6c5e3;
    line-height: 1.7;
}

/* Showcase Section */
.showcase {
    padding: 150px 0;
    position: relative;
}

.hexagon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hexagon {
    width: 220px;
    height: 290px;
    position: relative;
    margin: 20px;
    transition: all 0.4s ease;
}

.hexagon:hover {
    transform: scale(1.1);
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotate(30deg);
    border-radius: 25px;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.12), rgba(62, 201, 214, 0.08));
    border: 1px solid rgba(122, 183, 255, 0.2);
}

.hexagon:hover .hexagon-inner {
    transform: rotate(0deg);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.15), rgba(62, 201, 214, 0.12));
}

.hexagon-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    margin: 0 auto 16px;
    transform: rotate(-30deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hexagon-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.hexagon-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hexagon-icon i {
    position: relative;
    z-index: 1;
}

.hexagon-1 .hexagon-icon {
    background: linear-gradient(135deg, #7ab7ff 0%, #3ec9d6 100%);
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon-2 .hexagon-icon {
    background: linear-gradient(135deg, #a55eea 0%, #8b5cf6 100%);
    box-shadow: 0 8px 24px rgba(165, 94, 234, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon-3 .hexagon-icon {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
    box-shadow: 0 8px 24px rgba(29, 209, 161, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon-4 .hexagon-icon {
    background: linear-gradient(135deg, #ff9a5a 0%, #ff7f50 100%);
    box-shadow: 0 8px 24px rgba(255, 154, 90, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon-5 .hexagon-icon {
    background: linear-gradient(135deg, #feca57 0%, #f7b731 100%);
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hexagon-6 .hexagon-icon {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon-7 .hexagon-icon {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
    box-shadow: 0 8px 24px rgba(72, 219, 251, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.hexagon:hover .hexagon-icon {
    transform: rotate(0deg) scale(1.1);
}

.hexagon h4 {
    font-size: 1.3rem;
    color: #ffffff;
    transform: rotate(-30deg);
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(122, 183, 255, 0.3);
    transition: all 0.4s ease;
}

.hexagon:hover h4 {
    transform: rotate(0deg);
}

.hexagon p {
    font-size: 0.95rem;
    color: #b6c5e3;
    transform: rotate(-30deg);
    line-height: 1.5;
    max-width: 140px;
    word-wrap: break-word;
    hyphens: auto;
    transition: all 0.4s ease;
}

.hexagon:hover p {
    transform: rotate(0deg);
}

/* Value Section */
.value-section {
    padding: 150px 0;
    position: relative;
}

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

.value-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b6c5e3;
    margin-bottom: 60px;
    margin-top: -40px;
}

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

.value-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #7ab7ff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(122, 183, 255, 0.4);
}

.value-label {
    font-size: 1.1rem;
    color: #e7eefc;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-description {
    font-size: 0.9rem;
    color: #b6c5e3;
}

/* Industry Applications Section */
.applications-section {
    padding: 150px 0;
    position: relative;
}

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

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

.application-card {
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}

.application-card.primary-industry {
    border: 2px solid rgba(122, 183, 255, 0.4);
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.08), rgba(62, 201, 214, 0.06));
}

.application-card.primary-industry:hover {
    border-color: rgba(122, 183, 255, 0.6);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.3);
}

.industry-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #7ab7ff, #3ec9d6);
    color: #0b1020;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(122, 183, 255, 0.4);
}

.application-card h3 {
    font-size: 1.5rem;
    color: #e7eefc;
    margin-bottom: 15px;
}

.application-card p {
    font-size: 1rem;
    color: #b6c5e3;
    line-height: 1.7;
}

/* Application Icon Containers - Blue/Green/Cyan Theme */
.application-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.application-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 18px 18px 0 0;
}

.application-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.application-icon i {
    font-size: 56px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.application-icon-1 {
    background: linear-gradient(135deg, #7ab7ff 0%, #3ec9d6 100%);
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.application-icon-2 {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
    box-shadow: 0 8px 24px rgba(29, 209, 161, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.application-icon-3 {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
    box-shadow: 0 8px 24px rgba(72, 219, 251, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.application-icon-4 {
    background: linear-gradient(135deg, #54a0ff 0%, #2e86de 100%);
    box-shadow: 0 8px 24px rgba(84, 160, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.application-icon-5 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.application-icon-6 {
    background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
    box-shadow: 0 8px 24px rgba(95, 39, 205, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 150px 0;
    position: relative;
}

.mission-vision-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card, .vision-card {
    padding: 60px 40px;
    transition: all 0.4s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: kpi-icon-pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mv-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 18px 18px 0 0;
}

.mv-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.mv-icon i {
    position: relative;
    z-index: 1;
}

.mv-icon-mission {
    background: linear-gradient(135deg, #7ab7ff 0%, #3ec9d6 100%);
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.mv-icon-vision {
    background: linear-gradient(135deg, #a55eea 0%, #e056fd 100%);
    box-shadow: 0 8px 24px rgba(165, 94, 234, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.mission-card h3, .vision-card h3 {
    font-size: 2rem;
    color: #7ab7ff;
    margin-bottom: 25px;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    color: #b6c5e3;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Team Section */
.team {
    padding: 150px 0;
    position: relative;
}

.team-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.team-subtitle {
    font-size: 1.5rem;
    color: #7ab7ff;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.team-item {
    margin-bottom: 60px;
}

.team-content {
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    transition: all 0.4s ease;
}

.team-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}

.team-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(122, 183, 255, 0.2), rgba(62, 201, 214, 0.2));
    border: 3px solid rgba(122, 183, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #7ab7ff;
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.3);
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.8rem;
    color: #e7eefc;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    font-size: 1.1rem;
    color: #7ab7ff;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    font-size: 1rem;
    color: #b6c5e3;
    line-height: 1.7;
}

/* Advisors Section - Compact Row Layout */
.advisors-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.advisor-item {
    flex: 0 1 300px;
    max-width: 300px;
}

.advisor-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.advisor-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
}

.advisor-photo {
    flex-shrink: 0;
    margin-bottom: 15px;
}

.advisor-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(122, 183, 255, 0.3);
    transition: all 0.3s ease;
}

.advisor-photo img:hover {
    border-color: rgba(122, 183, 255, 0.6);
    transform: scale(1.05);
}

.advisor-photo .photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.3), rgba(62, 201, 214, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7ab7ff;
    border: 2px solid rgba(122, 183, 255, 0.3);
}

.advisor-info {
    width: 100%;
}

.advisor-name {
    font-size: 1.2rem;
    color: #e7eefc;
    font-weight: 700;
    margin-bottom: 6px;
}

.advisor-role {
    font-size: 0.9rem;
    color: #7ab7ff;
    margin-bottom: 10px;
    font-weight: 500;
}

.advisor-description {
    font-size: 0.85rem;
    color: #b6c5e3;
    line-height: 1.5;
}

.team-affiliation {
    font-size: 0.9rem;
    color: #7ab7ff;
    font-weight: 500;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    padding: 60px 40px;
    position: relative;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: #7ab7ff;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #b6c5e3;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-details {
    margin: 40px 0;
}

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

.contact-detail-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(122, 183, 255, 0.5));
}

.contact-detail-label {
    font-size: 0.9rem;
    color: #b6c5e3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-detail-value {
    font-size: 1.1rem;
    color: #e7eefc;
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(122, 183, 255, 0.2);
    background: rgba(11, 16, 32, 0.5);
    backdrop-filter: blur(20px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b6c5e3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-links a:hover {
    color: #7ab7ff;
    text-shadow: 0 0 10px rgba(122, 183, 255, 0.5);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #7ab7ff, #3ec9d6);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copyright {
    color: #b6c5e3;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-design {
    color: #b6c5e3;
    font-size: 0.85rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-row {
        flex-direction: column !important;
        gap: 40px;
    }

    .feature-content {
        flex: 1;
        width: 100%;
        height: 364px;
    }

    .feature-visual {
        width: 100%;
        padding: 30px;
    }

    .contact-container {
        padding: 0 20px;
    }

    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
        margin-top: 100px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px auto 35px;
    }

    .hero-stat {
        padding: 15px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 25px;
    }

    .hero-subtitle::before {
        left: -35px;
    }

    .hero-subtitle::after {
        right: -35px;
    }

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

    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

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

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

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

    .hexagon {
        width: 280px;
        height: 320px;
        margin: 30px auto;
    }

    .hexagon-inner {
        padding: 60px 35px;
    }

    .hexagon-icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }

    .hexagon h4 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .hexagon p {
        font-size: 1.1rem;
        max-width: 200px;
        line-height: 1.6;
    }

    .hexagon-container {
        gap: 20px;
    }

    .feature-row {
        flex-direction: column;
    }

    .feature-content {
        height: 390px;
        padding: 20px;
    }

    .feature-visual {
        padding: 25px 30px;
    }

    .feature-visual h3 {
        font-size: 1.3rem;
    }

    .feature-visual p {
        font-size: 0.9rem;
    }

    .team-content {
        flex-direction: column;
        text-align: center;
    }

    .advisors-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .advisor-item {
        flex: 0 1 100%;
        max-width: 400px;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .features,
    .showcase,
    .team,
    .contact,
    .value-section,
    .mission-vision,
    .problem-section,
    .architecture-section,
    .applications-section,
    .partners-section {
        padding: 80px 0;
    }

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

    .partner-card {
        padding: 40px 30px;
    }

    .architecture-diagram-wrapper {
        padding: 20px;
    }

    .architecture-caption {
        font-size: 1rem;
        margin-top: 20px;
    }

    .footer-links {
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}

/* Phosphor Icon Styling */
.problem-icon i,
.feature-icon i {
    font-size: 56px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hexagon-icon i {
    font-size: 48px;
    color: #ffffff;
}

.mv-icon i {
    font-size: 56px;
    color: #ffffff;
}

.contact-detail-icon i {
    font-size: 40px;
    color: #7ab7ff;
    filter: drop-shadow(0 0 10px rgba(122, 183, 255, 0.5));
}

/* Problem Section Icon Containers - Orange/Red Theme with Glossy Effect */
.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 18px 18px 0 0;
}

.problem-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.problem-icon-1 {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb142 100%);
    box-shadow: 0 8px 24px rgba(255, 185, 66, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.problem-icon-1 i {
    color: #0b1020;
    position: relative;
    z-index: 1;
}

.problem-icon-2 {
    background: linear-gradient(135deg, #ff4757 0%, #c23616 100%);
    box-shadow: 0 8px 24px rgba(255, 71, 87, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.problem-icon-2 i {
    position: relative;
    z-index: 1;
}

.problem-icon-3 {
    background: linear-gradient(135deg, #ff9a5a 0%, #ff7f50 100%);
    box-shadow: 0 8px 24px rgba(255, 154, 90, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.problem-icon-3 i {
    position: relative;
    z-index: 1;
}

.problem-icon-4 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.problem-icon-4 i {
    position: relative;
    z-index: 1;
}

.problem-icon-5 {
    background: linear-gradient(135deg, #a55eea 0%, #e056fd 100%);
    box-shadow: 0 8px 24px rgba(165, 94, 234, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.problem-icon-5 i {
    position: relative;
    z-index: 1;
}

.problem-icon-6 {
    background: linear-gradient(135deg, #ee5a6f 0%, #d63447 100%);
    box-shadow: 0 8px 24px rgba(238, 90, 111, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.problem-icon-6 i {
    position: relative;
    z-index: 1;
}

/* Feature Section Icon Containers - Varied Themes with Glossy Effect */
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: kpi-icon-pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    border-radius: 18px 18px 0 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.feature-icon i {
    position: relative;
    z-index: 1;
}

.feature-icon-1 {
    background: linear-gradient(135deg, #7ab7ff 0%, #3ec9d6 100%);
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #a55eea 0%, #e056fd 100%);
    box-shadow: 0 8px 24px rgba(165, 94, 234, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #1dd1a1 0%, #10ac84 100%);
    box-shadow: 0 8px 24px rgba(29, 209, 161, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.feature-icon-4 {
    background: linear-gradient(135deg, #54a0ff 0%, #2e86de 100%);
    box-shadow: 0 8px 24px rgba(84, 160, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.feature-icon-5 {
    background: linear-gradient(135deg, #feca57 0%, #f7b731 100%);
    box-shadow: 0 8px 24px rgba(254, 202, 87, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.feature-icon-6 {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

@keyframes kpi-icon-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

/* Architecture Section */
.architecture-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

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

.architecture-diagram-wrapper {
    margin-top: 60px;
    padding: 40px;
    background: rgba(11, 16, 32, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(122, 183, 255, 0.25);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.architecture-diagram-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(122, 183, 255, 0.25), inset 0 0 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(122, 183, 255, 0.35);
}

.architecture-diagram {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.architecture-caption {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: #b6c5e3;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Logos */
.team-logos {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.team-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(0.3) brightness(1.1);
}

.team-logo:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1.2);
    transform: scale(1.1);
}

.team-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(122, 183, 255, 0.3);
    box-shadow: 0 8px 24px rgba(122, 183, 255, 0.3);
}

/* Partners Section */
.partners-section {
    padding: 150px 0;
    position: relative;
}

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.partner-card {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(122, 183, 255, 0.2);
    border-color: rgba(122, 183, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.partner-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(11, 16, 32, 0.8);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #7ab7ff, #3ec9d6);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(122, 183, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3ec9d6, #7ab7ff);
    box-shadow: 0 0 15px rgba(122, 183, 255, 0.7);
}

/* ============================================
   System Architecture Diagram Styles
   ============================================ */

/* Container */
#system-architecture-container {
  width: 100%;
  min-height: 750px;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
}

/* SVG Canvas */
.system-architecture-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Node Interactions */
.system-arch-node {
  cursor: pointer;
  transition: all 0.2s ease;
}

.system-arch-node:hover .node-shape {
  filter: brightness(1.2);
}

.system-arch-node:focus {
  outline: 2px solid #4FD1C5;
  outline-offset: 4px;
}

/* Links (Edges) */
.system-arch-link {
  transition: stroke-opacity 0.2s ease, stroke-width 0.2s ease;
}

/* Animated Particles */
.flow-particle {
  pointer-events: none;
}

/* Tooltip Styles */
.system-arch-tooltip {
  position: absolute;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 10000;
  max-width: 260px;
  font-size: 11px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
}

/* Modal Overlay */
.system-arch-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Modal Content */
.system-arch-modal > div {
  background: #1a1f2e;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.3s ease;
}

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

/* Scrollbar Styling for Modal */
.system-arch-modal > div::-webkit-scrollbar {
  width: 8px;
}

.system-arch-modal > div::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.system-arch-modal > div::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.system-arch-modal > div::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #system-architecture-container {
    min-height: 600px;
  }
  
  .system-arch-tooltip {
    font-size: 10px;
    max-width: 220px;
  }
  
  .system-arch-modal > div {
    width: 95%;
    max-height: 90vh;
  }
}

@media (max-width: 480px) {
  #system-architecture-container {
    min-height: 500px;
  }
}

