/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

.nav-logo h2 {
    color: #6699ff;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 0 5px rgba(102, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    text-shadow: 0 0 10px rgba(102, 153, 255, 0.5);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #8cc8ff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 3px rgba(140, 200, 255, 0.2);
}

.nav-link:hover {
    color: #00ccff;
    text-shadow: 0 0 8px rgba(0, 204, 255, 0.4);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Tech Grid Background */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

/* Neural Network Background */
.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.05), rgba(0, 255, 255, 0.05));
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Floating Tech Elements */
.floating-tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.tech-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: techFloat 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(0, 255, 255, 0.05);
}

.tech-element::before {
    content: attr(data-text);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: #00ffff;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.tech-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.tech-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.tech-element:nth-child(4) {
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.tech-icon {
    color: #00ffff;
    font-size: 1.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

/* Terminal Header */
.terminal-header {
    font-family: 'Courier New', monospace;
    color: #00ff00;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-prompt {
    color: #00ffff;
    font-weight: bold;
}

.terminal-text {
    color: #ffffff;
}

.cursor {
    animation: blink 1s infinite;
    color: #00ff00;
}

/* Terminal Interface */
.terminal-interface {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 300px;
    height: 180px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #00ff00;
    z-index: 4;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: terminalGlow 3s ease-in-out infinite alternate;
}

.terminal-interface .terminal-header {
    color: #00ffff;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 12px;
}

.terminal-line {
    margin: 3px 0;
    opacity: 0;
    animation: typeIn 0.5s ease-in forwards;
}

.terminal-line:nth-child(2) { animation-delay: 0.5s; }
.terminal-line:nth-child(3) { animation-delay: 1s; }
.terminal-line:nth-child(4) { animation-delay: 1.5s; }
.terminal-line:nth-child(5) { animation-delay: 2s; }
.terminal-line:nth-child(6) { animation-delay: 2.5s; }

/* Floating Tech Elements Enhancement */
.floating-tech {
    position: absolute;
    color: rgba(0, 255, 255, 0.8);
    font-size: 20px;
    animation: floatRandom 8s ease-in-out infinite;
    z-index: 3;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.glitch-text::before {
    animation: glitch-1 3s infinite;
    color: #ff0040;
    z-index: -1;
    opacity: 0.7;
}

.glitch-text::after {
    animation: glitch-2 3s infinite;
    color: #00ffff;
    z-index: -2;
    opacity: 0.7;
}

/* Hologram Text */
.hologram-text {
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hologramShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Tech Specs */
.tech-specs {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.spec-label {
    color: #888;
    font-weight: 600;
}

.spec-value {
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.spec-value.active {
    color: #00ff00;
    animation: statusBlink 2s ease-in-out infinite;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    padding: 15px 35px;
    border: 2px solid transparent;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: buttonGlow 2s ease-in-out infinite;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Real-time Stats */
.realtime-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    animation: statGlow 3s ease-in-out infinite;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 2px solid #00ffff;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.1em;
    animation: typing 4s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Animations */
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(0); opacity: 0; }
    91%, 95% { transform: translate(-1px, 0); opacity: 0.7; }
}

@keyframes glitch-2 {
    0%, 85%, 100% { transform: translate(0); opacity: 0; }
    86%, 90% { transform: translate(1px, 0); opacity: 0.7; }
}

@keyframes hologramShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(90deg); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes statGlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00ffff; }
}

@keyframes terminalGlow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); }
}

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatRandom {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(10px, -15px) rotate(90deg); opacity: 1; }
    50% { transform: translate(-5px, -25px) rotate(180deg); opacity: 0.8; }
    75% { transform: translate(-15px, -10px) rotate(270deg); opacity: 1; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: left;
    max-width: 800px;
}

.status-indicator {
    color: #00ff00;
    font-weight: bold;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
    max-width: 90%;
    word-wrap: break-word;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffb347;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    perspective: 1000px;
}

/* Hologram Container */
.hologram-container {
    position: relative;
    width: 600px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Holographic Human Figures */
.holographic-figures {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.holo-figure {
    position: absolute;
    width: 120px;
    height: 200px;
    animation: holoFlicker 3s ease-in-out infinite;
}

.figure-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.figure-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.figure-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.holo-projection {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.1) 20%, rgba(0, 255, 255, 0.2) 50%, rgba(0, 255, 255, 0.1) 80%, transparent 100%);
    border-radius: 10px;
    overflow: hidden;
    animation: projectionPulse 4s ease-in-out infinite;
}

.figure-silhouette {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 140px;
    opacity: 0.8;
}

.figure-head {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ffff, #0099cc);
    border-radius: 50%;
    margin: 0 auto 5px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: headGlow 2s ease-in-out infinite alternate;
}

.figure-body {
    width: 25px;
    height: 60px;
    background: linear-gradient(180deg, #00ffff, #0066cc);
    margin: 0 auto 5px;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.figure-legs {
    width: 20px;
    height: 50px;
    background: linear-gradient(180deg, #0066cc, #003d7a);
    margin: 0 auto;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.2);
}

.headset {
    position: absolute;
    top: -3px;
    left: -2px;
    right: -2px;
    height: 8px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    border-radius: 50%;
    animation: headsetBlink 2s ease-in-out infinite;
}

.holo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.holo-ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    animation: ringRotate 6s linear infinite;
}

.holo-ring.ring-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
}

.holo-ring.ring-2 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: -2s;
}

.holo-ring.ring-3 {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    animation-delay: -4s;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    animation: scanMove 2s linear infinite;
}

.holo-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    animation: glitchMove 3s ease-in-out infinite;
}

.projection-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
}

.base-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 255, 255, 0.6), transparent);
    border-radius: 50%;
    animation: baseGlow 3s ease-in-out infinite;
}

/* Data Connections */
.data-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.data-beam {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    border-radius: 1px;
    animation: beamFlow 4s ease-in-out infinite;
}

.beam-1 {
    top: 25%;
    left: 20%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.beam-2 {
    top: 60%;
    right: 25%;
    width: 150px;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

.beam-3 {
    bottom: 30%;
    left: 30%;
    width: 180px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

/* Main Hologram Assistant */
.hologram-assistant {
    position: relative;
    z-index: 10;
    animation: holoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.hologram-head {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.hologram-face {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border: 2px solid rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    position: relative;
    backdrop-filter: blur(10px);
    animation: facePulse 3s ease-in-out infinite;
}

.eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    top: 28px;
    box-shadow: 0 0 10px #00ffff;
    animation: eyeBlink 4s infinite;
}

.left-eye {
    left: 22px;
}

.right-eye {
    right: 22px;
}

.mouth {
    position: absolute;
    width: 20px;
    height: 10px;
    border: 2px solid #00ffff;
    border-top: none;
    border-radius: 0 0 20px 20px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouthTalk 2s ease-in-out infinite;
}

/* Neural Crown */
.neural-crown {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.neural-ring {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: crownRotate 8s linear infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: -10px;
    left: -50px;
}

.ring-2 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -60px;
    animation-delay: -2s;
    animation-duration: 10s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    top: -30px;
    left: -70px;
    animation-delay: -4s;
    animation-duration: 12s;
}

/* Hologram Body */
.hologram-body {
    position: relative;
    width: 60px;
    height: 100px;
    margin: 0 auto;
}

.chest-core {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 179, 71, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(5px);
}

.core-pulse {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    animation: corePulse 2s ease-in-out infinite;
}

/* Data Streams */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.8), transparent);
    animation: streamFlow 3s ease-in-out infinite;
}

.stream-1 {
    left: 10px;
    top: 10px;
    animation-delay: 0s;
}

.stream-2 {
    right: 10px;
    top: 15px;
    animation-delay: 0.5s;
}

.stream-3 {
    left: 20px;
    top: 60px;
    animation-delay: 1s;
}

.stream-4 {
    right: 20px;
    top: 65px;
    animation-delay: 1.5s;
}

/* Holographic UI Elements */
.holo-ui-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.holo-panel {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.6);
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(15px);
    font-size: 9px;
    color: #00ffff;
    animation: panelFloat 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    min-width: 120px;
}

.panel-1 {
    top: 50px;
    left: -80px;
    width: 70px;
    animation-delay: 0s;
}

.panel-2 {
    top: 100px;
    right: -80px;
    width: 70px;
    animation-delay: 2s;
}

.panel-3 {
    bottom: 80px;
    left: -60px;
    width: 60px;
    animation-delay: 4s;
}

.panel-header {
    font-weight: bold;
    margin-bottom: 4px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 4px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ffd700);
    width: 0%;
    animation: progressFill 3s ease-in-out infinite;
}

.data-points {
    display: flex;
    justify-content: space-around;
    margin-top: 4px;
}

.data-points span {
    color: #00ffff;
    animation: dataPointBlink 1s ease-in-out infinite;
}

.data-points span:nth-child(2) {
    animation-delay: 0.3s;
}

.data-points span:nth-child(3) {
    animation-delay: 0.6s;
}

.voice-wave {
    display: flex;
    justify-content: space-around;
    align-items: end;
    height: 20px;
    margin-top: 4px;
}

.wave-bar {
    width: 3px;
    background: #00ffff;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 12px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(3) {
    height: 16px;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(4) {
    height: 10px;
    animation-delay: 0.6s;
}

.learning-nodes {
    position: relative;
    height: 20px;
    margin-top: 4px;
}

.node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.node:nth-child(1) {
    top: 2px;
    left: 10px;
}

.node:nth-child(2) {
    top: 8px;
    left: 25px;
    animation-delay: 0.5s;
}

.node:nth-child(3) {
    top: 2px;
    right: 10px;
    animation-delay: 1s;
}

.connection {
    position: absolute;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    top: 6px;
    left: 15px;
    animation: connectionFlow 3s ease-in-out infinite;
}

/* Floating Particles */
.holo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    box-shadow: 0 0 4px #00ffff;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 60%;
    left: 5%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
}

/* Base Platform */
.holo-base {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
}

.base-ring {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: baseRotate 6s linear infinite;
}

.ring-outer {
    width: 200px;
    height: 200px;
    top: -90px;
    left: 0;
}

.ring-middle {
    width: 150px;
    height: 150px;
    top: -65px;
    left: 25px;
    animation-delay: -2s;
}

.ring-inner {
    width: 100px;
    height: 100px;
    top: -40px;
    left: 50px;
    animation-delay: -4s;
}

.base-core {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 50%;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: coreGlow 3s ease-in-out infinite;
}

/* Animations */
@keyframes holoFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateY(5deg);
    }
    50% {
        transform: translateY(-5px) rotateY(0deg);
    }
    75% {
        transform: translateY(-15px) rotateY(-5deg);
    }
}

@keyframes facePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
    }
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    95% {
        opacity: 0.3;
        transform: scaleY(0.1);
    }
}

@keyframes mouthTalk {
    0%, 100% {
        transform: translateX(-50%) scaleY(1);
    }
    50% {
        transform: translateX(-50%) scaleY(0.7);
    }
}

@keyframes crownRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes corePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes streamFlow {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes panelFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    50% {
        width: 80%;
    }
    100% {
        width: 100%;
    }
}

@keyframes dataPointBlink {
    0%, 50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

@keyframes waveAnimation {
    0%, 100% {
        transform: scaleY(0.5);
    }
    50% {
        transform: scaleY(1);
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes connectionFlow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

@keyframes baseRotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes coreGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.3);
    }
}

/* Holographic Figure Animations */
@keyframes holoFlicker {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0px) scale(1);
    }
    25% {
        opacity: 0.6;
        transform: translateY(-5px) scale(1.02);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-2px) scale(0.98);
    }
    75% {
        opacity: 0.7;
        transform: translateY(-8px) scale(1.01);
    }
}

@keyframes projectionPulse {
    0%, 100% {
        background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.1) 20%, rgba(0, 255, 255, 0.2) 50%, rgba(0, 255, 255, 0.1) 80%, transparent 100%);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }
    50% {
        background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 255, 0.2) 20%, rgba(0, 255, 255, 0.4) 50%, rgba(0, 255, 255, 0.2) 80%, transparent 100%);
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    }
}

@keyframes headGlow {
    0% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    }
}

@keyframes headsetBlink {
    0%, 80%, 100% {
        opacity: 0.6;
    }
    90% {
        opacity: 1;
        box-shadow: 0 0 8px #ffd700;
    }
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes scanMove {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes glitchMove {
    0%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        transform: translateX(-2px);
        opacity: 0.2;
    }
    20% {
        transform: translateX(2px);
        opacity: 0.1;
    }
    30% {
        transform: translateX(0);
        opacity: 0;
    }
}

@keyframes baseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

@keyframes beamFlow {
    0%, 100% {
        opacity: 0;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    }
    50% {
        opacity: 1;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 1), transparent);
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    }
}

/* Challenges Section */
.challenges {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Video Box */
.hero-video-box {
    display: none;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    animation: videoBoxSlideIn 0.5s ease-out;
}

.hero-video-box.active {
    display: block;
}

@keyframes videoBoxSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-box-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    border: 2px solid rgba(0, 217, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.6);
    animation: videoBoxGlow 2s ease-in-out infinite;
}

@keyframes videoBoxGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 217, 255, 0.4),
            0 10px 40px rgba(0, 0, 0, 0.6);
        border-color: rgba(0, 217, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 217, 255, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.6);
        border-color: rgba(0, 217, 255, 0.8);
    }
}

.video-box-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-video-box {
        max-width: 100%;
    }
}

/* Challenges Section */
.challenges {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.challenges .container {
    position: relative;
    z-index: 2;
}

.challenges .section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.colon-separator {
    color: #00ffff;
    font-weight: bold;
}

.subtitle-text {
    color: #ffffff;
    font-weight: 400;
}

.challenges .section-subtitle {
    color: #a0a0a0;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.challenge-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1.25rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.challenge-card:hover::before {
    opacity: 1;
}

.challenge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #6366f1, #00ffff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.challenge-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.challenge-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
}

.challenge-description {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: 0.85rem;
}

.challenge-description strong {
    color: #00ffff;
    font-weight: 600;
}

.impact-card {
    grid-column: 1 / -1;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    text-align: center;
}

.impact-card:hover {
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.impact-card .challenge-icon {
    background: linear-gradient(45deg, #ff0040, #ff6b6b);
    margin: 0 auto 1rem;
}

.impact-card .challenge-title {
    font-size: 1.5rem;
    color: #ff6b6b;
}

.impact-card .challenge-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

.solution .section-header h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution .section-subtitle {
    color: #d0d0d0;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.solution .section-subtitle strong {
    color: #00ffff;
    font-weight: 600;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.solution-pillar {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.solution-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-pillar:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.solution-pillar:hover::before {
    opacity: 1;
}

.highlight-pillar {
    border-color: rgba(255, 0, 255, 0.4);
    background: rgba(255, 0, 255, 0.05);
}

.highlight-pillar:hover {
    border-color: rgba(255, 0, 255, 0.7);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.25);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #6366f1, #00ffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.highlight-pillar .pillar-icon {
    background: linear-gradient(45deg, #ff0080, #ff6b6b);
}

.pillar-icon i {
    font-size: 1.4rem;
    color: #ffffff;
}

.pillar-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    color: #c0c0c0;
    line-height: 1.5;
    padding: 0.3rem 0;
    border-left: 3px solid rgba(0, 255, 255, 0.3);
    padding-left: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.feature-item:hover {
    border-left-color: rgba(0, 255, 255, 0.8);
    color: #ffffff;
    transform: translateX(5px);
}

.feature-item strong {
    color: #00ffff;
    font-weight: 600;
}

.solution-impact {
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.impact-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.impact-title i {
    color: #00ffff;
    font-size: 1.2rem;
}

.impact-description {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Customer Journey Section */
.customer-journey {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.customer-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.customer-journey .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.customer-journey .section-header h2 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-align: center;
    background: linear-gradient(45deg, #ff6ec7, #00ffff, #7bff6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customer-journey .section-subtitle {
    color: #c0c0c0;
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* Journey Flow Container */
.journey-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 2rem auto;
    max-width: 1300px;
    position: relative;
}

/* Journey Box - Arrow Shape */
.journey-box {
    position: relative;
    background: #34495e;
    color: white;
    padding: 2.5rem 2rem 2.5rem 3rem;
    flex: 1;
    min-width: 220px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-left: -30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-box:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
    padding-left: 2rem;
}

.journey-box:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
}

.journey-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    z-index: 10;
}

/* Color Variations */
.journey-box.orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.journey-box.orange:hover {
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.journey-box.teal {
    background: linear-gradient(135deg, #5dade2, #3498db);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.journey-box.teal:hover {
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.journey-box.red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.journey-box.red:hover {
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.journey-box.navy {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border: 1px solid rgba(52, 73, 94, 0.3);
}

.journey-box.navy:hover {
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.4);
}

.journey-box:first-child {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    border: 1px solid rgba(52, 73, 94, 0.3);
}

.journey-box:first-child:hover {
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.4);
}

/* Box Icon */
.box-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.box-icon i {
    color: white;
}

/* Box Header */
.box-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.box-header h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Box Content */
.box-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.box-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.box-content strong {
    color: white;
    font-weight: 700;
}

/* Benefits Section */
.benefits {
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits .section-header h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #ffffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card.blue {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.benefit-card.orange {
    border-color: rgba(251, 146, 60, 0.3);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.orange:hover {
    border-color: rgba(251, 146, 60, 0.6);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
}

.benefit-card.teal {
    border-color: rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.teal:hover {
    border-color: rgba(20, 184, 166, 0.6);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.2);
}

.benefit-card.red {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.red:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.benefit-card.navy {
    border-color: rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.navy:hover {
    border-color: rgba(30, 58, 138, 0.6);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
}

.benefit-card.purple {
    border-color: rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(0, 0, 0, 0.6));
}

.benefit-card.purple:hover {
    border-color: rgba(147, 51, 234, 0.6);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.benefit-card.blue .benefit-icon {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.benefit-card.orange .benefit-icon {
    background: linear-gradient(45deg, #fb923c, #ea580c);
}

.benefit-card.teal .benefit-icon {
    background: linear-gradient(45deg, #14b8a6, #0d9488);
}

.benefit-card.red .benefit-icon {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.benefit-card.navy .benefit-icon {
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
}

.benefit-card.purple .benefit-icon {
    background: linear-gradient(45deg, #9333ea, #7c3aed);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.benefit-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-card p {
    color: #d1d5db;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.benefit-card p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Use Cases Section */
.use-cases {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.use-cases .container {
    position: relative;
    z-index: 2;
}

.use-cases .section-header h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.use-case-header {
    padding: 1rem 1.25rem 0.75rem;
    position: relative;
}

.use-case-card.airports .use-case-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.use-case-card.hotels .use-case-header {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.use-case-card.corporate .use-case-header {
    background: linear-gradient(135deg, #059669, #10b981);
}

.use-case-card.education .use-case-header {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.use-case-card.government .use-case-header {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.use-case-card.banking .use-case-header {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
}

.use-case-card.healthcare .use-case-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.use-case-card.retail .use-case-header {
    background: linear-gradient(135deg, #7c2d12, #a16207);
}

.use-case-card h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.use-case-content {
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
}

.use-case-content p {
    color: #d1d5db;
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

.use-case-content p strong {
    color: #ffffff;
    font-weight: 600;
}

/* Differentiator Section */
.differentiator {
    padding: 40px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.differentiator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 75%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.differentiator .container {
    position: relative;
    z-index: 2;
}

.differentiator .section-header h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    background: linear-gradient(45deg, #00ffff, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.table-header {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.header-cell {
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.features-header {
    background: linear-gradient(135deg, #374151, #4b5563);
    color: #ffffff;
}

.competitor-header {
    color: #d1d5db;
}

.dalilio-header {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    font-weight: 700;
}

.table-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.feature-cell {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.competitor-cell {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: #9ca3af;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.dalilio-cell {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    background: rgba(220, 38, 38, 0.1);
    line-height: 1.4;
}

.dalilio-cell strong {
    font-weight: 600;
}

/* Row color coding */
.experience-row .feature-cell {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(220, 38, 38, 0.2));
}

.language-row .feature-cell {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.3), rgba(234, 88, 12, 0.2));
}

.personalization-row .feature-cell {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(13, 148, 136, 0.2));
}

.availability-row .feature-cell {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.3), rgba(59, 130, 246, 0.2));
}

.interaction-row .feature-cell {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(30, 64, 175, 0.2));
}

.integration-row .feature-cell {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.3), rgba(75, 85, 99, 0.2));
}

.escalation-row .feature-cell {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(217, 119, 6, 0.2));
}

.differentiator-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.differentiator-summary p {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.differentiator-summary strong {
    color: #00ffff;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features .section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.features .section-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modules Section */
.modules {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Feature Icon Color Themes */
.feature-icon.slate {
    background: linear-gradient(135deg, #475569, #64748b);
}

.feature-card.navy .feature-icon {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.feature-card.amber .feature-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-card.red .feature-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.feature-card.teal .feature-icon {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.feature-card.dark-blue .feature-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

.feature-card p strong {
    color: #00d9ff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.module-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.module-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.module-icon i {
    font-size: 2rem;
    color: white;
}

.module-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.module-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Value Proposition Section */
.value-proposition {
    padding: 100px 0;
    background: #f8fafc;
}

.stakeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.stakeholder-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stakeholder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stakeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stakeholder-icon i {
    font-size: 2rem;
    color: white;
}

.stakeholder-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.stakeholder-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #6366f1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #1e293b;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #6366f1;
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}



/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact .section-header h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact .section-header p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Next Steps Section */
.next-steps {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.next-steps-header {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps-label {
    background: linear-gradient(135deg, #4ade80, #3b82f6);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.steps-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.steps-flow::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: transparent;
    z-index: 0;
}

.steps-flow::after {
    content: '';
    position: absolute;
    top: 75px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 33%, #ef4444 66%, #f59e0b 100%);
    border-radius: 10px;
    z-index: 0;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='black' stroke-width='10' fill='none'/%3E%3C/svg%3E") center/cover;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' stroke='black' stroke-width='10' fill='none'/%3E%3C/svg%3E") center/cover;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    background: transparent;
    border: none;
}

.step-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border: 3px solid;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.step-circle.discovery {
    background: linear-gradient(135deg, #1e40af, #3730a3);
    border-color: #3b82f6;
}

.step-circle.demo {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    border-color: #06b6d4;
}

.step-circle.pilot {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-color: #ef4444;
}

.step-circle.enterprise {
    background: linear-gradient(135deg, #d97706, #b45309);
    border-color: #f59e0b;
}

.step-content {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
}

.step-content h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    background: transparent;
}

.step-label {
    background: transparent;
    border: none;
}

.step-label h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    background: transparent;
}

.next-steps-footer {
    text-align: center;
}

.next-steps-footer p {
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Message */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    display: block;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 28px;
    height: 28px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #6366f1;
    margin: 0;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }



    .contact .section-header h2 {
        font-size: 1.8rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .steps-flow {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .steps-flow::before,
    .steps-flow::after {
        display: none;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .step-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        padding: 0.8rem;
    }

    .step-content h4 {
        font-size: 0.65rem;
        line-height: 1.1;
    }

    .step-label {
        flex: 1;
    }

    .next-steps-footer p {
        white-space: normal;
        font-size: 0.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .stakeholder-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .challenges .section-header h2 {
        flex-direction: column;
        text-align: center;
        gap: 0.2rem;
    }

    .challenge-card {
        padding: 1.5rem;
    }

    .challenge-title {
        font-size: 1.2rem;
    }

    .impact-card {
        grid-column: 1;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-pillar {
        padding: 2rem;
    }

    .pillar-title {
        font-size: 1.3rem;
    }

    .solution-impact {
        padding: 2rem;
    }

    .impact-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }



    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .tab-nav {
        flex-direction: column;
        align-items: center;
    }

    .module-card,
    .stakeholder-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .challenges {
        padding: 60px 0;
    }

    .challenges .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .subtitle-text {
        font-size: 0.9em;
    }

    .challenge-card {
        padding: 1.2rem;
    }

    .challenge-icon {
        width: 50px;
        height: 50px;
    }

    .challenge-icon i {
        font-size: 1.2rem;
    }

    .challenge-title {
        font-size: 1.1rem;
    }

    .challenge-description {
        font-size: 0.9rem;
    }

    .impact-card .challenge-title {
        font-size: 1.3rem;
    }

    .impact-card .challenge-description {
        font-size: 1rem;
    }

    .solution {
        padding: 60px 0;
    }

    .solution .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .solution-pillar {
        padding: 1.5rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
    }

    .pillar-icon i {
        font-size: 1.5rem;
    }

    .pillar-title {
        font-size: 1.2rem;
    }

    .solution-impact {
        padding: 1.5rem;
    }

    .impact-title {
        font-size: 1.4rem;
    }

    .impact-description {
        font-size: 1.1rem;
    }

    /* Customer journey mobile responsiveness */
    .customer-journey {
        padding: 40px 0;
    }
    
    .customer-journey .container {
        padding: 0 1rem;
    }
    
    .customer-journey .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .customer-journey .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .journey-flow {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .journey-box {
        clip-path: none;
        margin-left: 0;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .journey-box:first-child,
    .journey-box:last-child {
        clip-path: none;
        padding: 2rem 1.5rem;
    }
    
    .box-icon {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        opacity: 0.7;
    }
    
    .box-header h3 {
        font-size: 1.1rem;
    }
    
    .box-content p {
        font-size: 0.9rem;
    }
    
    /* Features section mobile responsiveness */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Solution section mobile responsiveness */
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-pillar {
        padding: 1rem;
    }
    
    .pillar-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .pillar-icon i {
        font-size: 1.2rem;
    }
    
    .pillar-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        padding-left: 0.6rem;
    }
    
    .solution-impact {
        padding: 1rem;
    }
    
    .impact-title {
        font-size: 1.2rem;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .impact-description {
        font-size: 0.9rem;
    }
    
    /* Challenges section mobile responsiveness */
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .challenge-card {
        padding: 1rem;
    }
    
    .challenge-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.75rem;
    }
    
    .challenge-icon i {
        font-size: 1rem;
    }
    
    .challenge-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .challenge-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .impact-card .challenge-icon {
        margin: 0 auto 0.75rem;
    }
    
    /* Benefits section mobile responsiveness */
    .benefits {
        padding: 20px 0;
        min-height: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .benefits .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Use Cases section mobile responsiveness */
    .use-cases {
        padding: 20px 0;
        min-height: auto;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .use-case-header {
        padding: 0.75rem 1rem 0.5rem;
    }
    
    .use-case-card h3 {
        font-size: 0.9rem;
    }
    
    .use-case-content {
        padding: 0.75rem 1rem 1rem;
    }
    
    .use-case-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .use-cases .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Differentiator section mobile responsiveness */
    .differentiator {
        padding: 20px 0;
        min-height: auto;
    }
    
    .comparison-table {
        overflow-x: auto;
        border-radius: 8px;
    }
    
    .table-header {
        grid-template-columns: 120px 1fr 1fr 1fr;
        min-width: 600px;
    }
    
    .table-row {
        grid-template-columns: 120px 1fr 1fr 1fr;
        min-width: 600px;
    }
    
    .header-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .feature-cell {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .competitor-cell {
        padding: 0.5rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .dalilio-cell {
        padding: 0.5rem;
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .differentiator-summary {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .differentiator-summary p {
        font-size: 0.9rem;
    }
    
    .differentiator .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}