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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #e8f4ff;
    background: radial-gradient(circle at 15% 15%, rgba(0, 140, 255, 0.25), transparent 40%),
                radial-gradient(circle at 85% 20%, rgba(0, 255, 200, 0.2), transparent 45%),
                radial-gradient(circle at 50% 85%, rgba(100, 50, 255, 0.25), transparent 50%),
                #020815;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 120px;
}
body {
    /* existing styles */
    padding-top: 120px; /* ADD THIS LINE */
}

/* Quick Links Bar - ADD THIS ENTIRE BLOCK */
/* Quick Links Bar - ADD THIS ENTIRE BLOCK */
.quick-links-bar {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    backdrop-filter: blur(20px);
    padding: 14px clamp(24px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: grab;
    touch-action: none;
    user-select: none;
    will-change: transform;
}

.quick-links-slot {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.quick-links-slot--left {
    justify-content: flex-start;
}

.quick-links-slot--right {
    justify-content: flex-end;
}

.quick-links-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 32px);
    flex-wrap: nowrap;
}

.quick-links-bar.dragging {
    cursor: grabbing;
    transition: none !important;
}

.quick-links-bar.scrolled {
    top: 0;
    background: transparent;
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#navbar-placeholder {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar-placeholder.hidden {
    transform: translateY(-100%);
}

.quick-links-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 255, 200, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quick-link {
    font-size: 0.9rem;
    color: rgba(232, 244, 255, 0.8);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 220, 255, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-link:hover {
    background: rgba(0, 220, 255, 0.2);
    border-color: rgba(0, 220, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }
    
    .quick-links-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .quick-links-slot {
        width: 100%;
        flex: 0 0 auto;
        justify-content: center;
    }

    .quick-links-slot--right {
        display: none;
    }

    .quick-links-center {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .quick-links-label {
        width: 100%;
        margin-bottom: 4px;
        text-align: center;
    }
    
    .quick-link {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Neural Network Canvas Background */
#neuralNetwork {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(80px, 10vh, 120px) clamp(20px, 5vw, 60px);
    padding-top: calc(clamp(80px, 10vh, 120px) + var(--glass-nav-offset) * 0.35);
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(120, 140, 255, 0.1);
    border: 1px solid rgba(180, 200, 255, 0.2);
    color: rgba(220, 230, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-bottom: clamp(24px, 3vh, 40px);
    animation: badge-glow 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate-badge 4s linear infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(120, 140, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(120, 140, 255, 0.5);
    }
}

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

@keyframes spark-rotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 16px);
    margin-bottom: clamp(24px, 3vh, 32px);
    overflow: visible;
}

.title-line {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding-bottom: 0.1em;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
    overflow: visible;
    text-shadow: 0 0 40px rgba(0, 200, 255, 0.3);
    white-space: nowrap;
}

.title-line:first-child {
    animation-delay: 0.2s;
}

.title-line:last-child {
    animation-delay: 0.4s;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #00ffc8, #00f5ff, #00d4ff);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slide-up 0.8s ease-out 0.4s forwards, gradient-flow 4s ease infinite;
    padding-bottom: 0.15em;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(0, 220, 255, 0.4));
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: rgba(180, 230, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.6s forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* AI Brain Visual */
.floating-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(300px, 32vw, 450px);
    height: clamp(300px, 32vw, 450px);
    pointer-events: none;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.8s forwards;
}

.ai-brain {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float-brain 6s ease-in-out infinite;
}

@keyframes float-brain {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 200, 0.6), rgba(0, 200, 255, 0.4), transparent);
    box-shadow: 0 0 60px rgba(0, 255, 200, 0.6),
                inset 0 0 40px rgba(0, 200, 255, 0.4);
    animation: pulse-core 3s ease-in-out infinite;
}

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

.brain-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid rgba(0, 220, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 220, 255, 0.4);
    animation: rotate-ring 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotateX(60deg);
    animation-duration: 15s;
}

.ring-2 {
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(45deg);
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(90deg);
    animation-duration: 25s;
}

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

.brain-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 200, 0.6);
    transform: translate(-50%, -50%);
    animation: pulse-wave 3s ease-out infinite;
}

.pulse-1 {
    animation-delay: 0s;
}

.pulse-2 {
    animation-delay: 1s;
}

.pulse-3 {
    animation-delay: 2s;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 200, 0.8), transparent);
    animation: stream-flow 2s ease-in-out infinite;
    filter: blur(1px);
}

.stream-1 {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.stream-2 {
    top: 50%;
    right: 0;
    transform: rotate(90deg);
    animation-delay: 0.7s;
}

.stream-3 {
    bottom: 0;
    left: 30%;
    animation-delay: 1.4s;
}

@keyframes stream-flow {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
}

/* Showcase Slider Section */
.showcase-slider-section {
    min-height: 90vh;
    padding: clamp(60px, 8vh, 100px) 0 clamp(40px, 8vh, 80px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vh, 80px);
    position: relative;
}

.showcase-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.title-word {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #00d4ff 0%,
        #00ffc8 25%,
        #ffffff 50%,
        #00f5ff 75%,
        #00d4ff 100%
    );
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shine 3s ease-in-out infinite, word-float 3s ease-in-out infinite;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 220, 255, 0.5));
}

.title-word:nth-child(1) {
    animation-delay: 0s, 0s;
}

.title-word:nth-child(2) {
    animation-delay: 0.3s, 0.5s;
}

.title-word:nth-child(3) {
    animation-delay: 0.6s, 1s;
}

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

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

.slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    position: relative;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) rotateY(20deg) scale(0.9);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) rotateY(0deg) scale(1);
}

.slide.exit-left {
    transform: translateX(-100%) rotateY(-20deg) scale(0.9);
    opacity: 0;
}

.slide.exit-right {
    transform: translateX(100%) rotateY(20deg) scale(0.9);
    opacity: 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    height: 100%;
    align-items: center;
}

.slide-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slide-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.4), rgba(0, 255, 200, 0.3));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #00d4ff, #00ffc8, #00f5ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -10px;
}

.slide-description {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    color: rgba(180, 230, 255, 0.85);
    max-width: 550px;
}

.slide-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 40, 60, 0.4);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.feature-item:hover {
    background: rgba(0, 200, 255, 0.15);
    border-color: rgba(0, 220, 255, 0.5);
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(0, 220, 255, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 200, 0.6));
}

.slide-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
}

.slide-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    animation: float-visual 6s ease-in-out infinite;
}

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

/* Chatbot Visual */
.chat-interface {
    width: 100%;
    max-width: 380px;
    height: 480px;
    background: rgba(5, 25, 40, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 220, 255, 0.2);
    backdrop-filter: blur(20px);
}

.chat-header {
    padding: 16px 20px;
    background: rgba(0, 200, 255, 0.1);
    border-bottom: 1px solid rgba(0, 200, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #00ffc8;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ffc8;
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.8);
    animation: pulse-indicator 2s ease-in-out infinite;
}

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

.chat-messages {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: calc(100% - 60px);
    overflow-y: auto;
}

.message {
    display: flex;
    animation: slide-in-message 0.4s ease-out;
}

@keyframes slide-in-message {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    justify-content: flex-end;
}

.ai-message {
    justify-content: flex-start;
}

.message-bubble {
    padding: 12px 18px;
    border-radius: 18px;
    max-width: 75%;
    font-size: 0.95rem;
    line-height: 1.5;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.3), rgba(0, 255, 200, 0.2));
    border: 1px solid rgba(0, 200, 255, 0.4);
    color: #e8f4ff;
}

.ai-message .message-bubble {
    background: rgba(0, 40, 60, 0.6);
    border: 1px solid rgba(0, 200, 255, 0.2);
    color: rgba(180, 230, 255, 0.9);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 220, 255, 0.6);
    animation: typing-bounce 1.4s infinite;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

/* Automation Visual */
.workflow-diagram {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
}

.workflow-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.3), rgba(0, 255, 200, 0.2));
    border: 2px solid rgba(0, 220, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 220, 255, 0.3),
                inset 0 0 20px rgba(0, 200, 255, 0.2);
    animation: node-pulse 3s ease-in-out infinite;
}

.node-1 {
    animation-delay: 0s;
}

.node-2 {
    animation-delay: 0.5s;
}

.node-3 {
    animation-delay: 1s;
}

@keyframes node-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 220, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 220, 255, 0.5);
    }
}

.workflow-connection {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 220, 255, 0.5), rgba(0, 255, 200, 0.5));
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 220, 255, 0.5);
}

.conn-1 {
    left: 20%;
    width: 25%;
}

.conn-2 {
    right: 20%;
    width: 25%;
}

.data-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 200, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.8);
    animation: particle-flow 3s ease-in-out infinite;
    top: 50%;
}

.particle-1 {
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    left: 45%;
    animation-delay: 1s;
}

.particle-3 {
    left: 70%;
    animation-delay: 2s;
}

@keyframes particle-flow {
    0%, 100% {
        transform: translateX(0) translateY(-50%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateX(100px) translateY(-50%);
    }
}

/* Phone Service Visual */
.phone-service-interface {
    width: 100%;
    max-width: 400px;
    height: 550px;
    background: rgba(5, 25, 40, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 255, 0.3);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 220, 255, 0.2);
    backdrop-filter: blur(20px);
}

.call-screen {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.call-status {
    color: #00ffc8;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ffc8;
    animation: pulse-indicator 2s ease-in-out infinite;
}

.call-duration {
    font-family: 'Courier New', monospace;
    color: rgba(180, 230, 255, 0.8);
    font-size: 0.9rem;
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 200, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.2);
    animation: slide-in-message 0.4s ease-out;
}

.caller-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.6), rgba(0, 255, 200, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: #020815;
    box-shadow: 0 4px 16px rgba(0, 220, 255, 0.4);
    flex-shrink: 0;
}

.caller-details {
    flex: 1;
}

.caller-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #e8f4ff;
    margin-bottom: 4px;
}

.caller-number {
    font-size: 0.9rem;
    color: rgba(180, 230, 255, 0.7);
    font-family: 'Courier New', monospace;
}

.crm-data {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.crm-tag {
    padding: 6px 12px;
    background: rgba(0, 200, 255, 0.15);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    color: #00d4ff;
    animation: fade-in 0.5s ease-out;
}

.ai-transcript {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 40, 60, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 255, 0.15);
    overflow-y: auto;
}

.transcript-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: slide-in-message 0.4s ease-out;
}

.transcript-line .speaker {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(180, 230, 255, 0.7);
}

.transcript-line.ai .speaker {
    color: #00ffc8;
}

.transcript-line .text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(220, 240, 255, 0.9);
}

.action-taken {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.2), rgba(0, 200, 255, 0.15));
    border: 1px solid rgba(0, 255, 200, 0.4);
    border-radius: 12px;
    animation: action-confirm 0.6s ease-out;
}

@keyframes action-confirm {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffc8;
    flex-shrink: 0;
    animation: check-bounce 0.6s ease-out;
}

@keyframes check-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.action-text {
    font-weight: 600;
    color: #00ffc8;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.float-element.el-1 {
    width: 120px;
    height: 120px;
    background: rgba(0, 220, 255, 0.5);
    top: 10%;
    right: 10%;
    animation: float-orb 8s ease-in-out infinite;
}

.float-element.el-2 {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 200, 0.5);
    bottom: 15%;
    left: 5%;
    animation: float-orb 6s ease-in-out infinite -2s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(20px, -20px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(5, 25, 40, 0.8);
    border: 1px solid rgba(0, 200, 255, 0.4);
    color: rgba(180, 230, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 200, 255, 0.3);
    border-color: rgba(0, 220, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 220, 255, 0.5);
}

.arrow-prev {
    left: clamp(20px, 3vw, 40px);
}

.arrow-next {
    right: clamp(20px, 3vw, 40px);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.3);
    border: 1px solid rgba(0, 200, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(0, 220, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.7), rgba(0, 255, 200, 0.6));
    border-color: rgba(0, 220, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 220, 255, 0.5);
}

/* Capabilities Section */
.capabilities-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(16px, 2vh, 24px);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00d4ff, #00ffc8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(180, 230, 255, 0.8);
    max-width: 600px;
    margin: 0 auto clamp(40px, 6vh, 60px);
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 32px);
    max-width: 1400px;
    margin: 0 auto;
}

.capability-card {
    background: rgba(5, 25, 40, 0.5);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 36px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 0;
}

.capability-card:nth-child(1) { animation-delay: 0.1s; }
.capability-card:nth-child(2) { animation-delay: 0.2s; }
.capability-card:nth-child(3) { animation-delay: 0.3s; }
.capability-card:nth-child(4) { animation-delay: 0.4s; }
.capability-card:nth-child(5) { animation-delay: 0.5s; }
.capability-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.capability-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 220, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 220, 255, 0.3);
    background: rgba(5, 25, 40, 0.7);
}

.capability-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.2), rgba(0, 255, 200, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00d4ff;
}

.capability-card h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 12px;
    font-weight: 600;
    color: #00ffc8;
}

.capability-card p {
    line-height: 1.6;
    color: rgba(180, 230, 255, 0.8);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* Process Timeline - 3D Depth Curve Design */
.process-section {
    padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
    overflow: hidden;
    perspective: 2500px;
    -webkit-perspective: 2500px;
    perspective-origin: 50% 50%;
    -webkit-perspective-origin: 50% 50%;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: relative;
    max-width: 1400px;
    margin: 0 auto clamp(40px, 6vh, 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.carousel-hint {
    font-size: 0.9rem;
    color: rgba(184, 124, 255, 0.8);
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(20, 15, 35, 0.6);
    border: 1px solid rgba(155, 89, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse-hint 2s ease-in-out infinite;
    white-space: nowrap;
}

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

.carousel-hint.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.carousel-arrow {
    display: none;
}

.process-section::before {
    display: none;
}

.process-section .section-title {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: clamp(20px, 3vh, 32px);
}

.process-section .section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(220, 215, 255, 0.7);
    max-width: 700px;
    margin: 0 auto clamp(80px, 10vh, 120px);
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.timeline-container {
    --items: 6;
    --angle-step: calc(360deg / var(--items));
    --radius: clamp(250px, 25vw, 350px);
    width: 100%;
    height: clamp(500px, 70vh, 700px);
    margin: 0 auto;
    position: relative;
    padding: clamp(24px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    overflow: visible;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#globe-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.timeline-item {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.timeline-content {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.timeline-track {
    display: none;
}

.timeline-item {
    --item-angle: 0deg;
    --pop: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(240px, 26vw, 300px);
    min-height: clamp(320px, 34vw, 380px);
    padding: clamp(32px, 4vw, 48px) clamp(20px, 2.4vw, 32px);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
    transform: 
        translate(-50%, -50%)
        rotateY(var(--item-angle))
        translateZ(calc(var(--radius) + var(--pop)));
    opacity: 1;
    z-index: 1;
}

.timeline-item:focus-visible {
    outline: 2px solid rgba(184, 124, 255, 0.75);
    outline-offset: 10px;
}

.timeline-item:nth-child(1) {
    --item-angle: 0deg;
}

.timeline-item:nth-child(2) {
    --item-angle: calc(var(--angle-step) * 1);
}

.timeline-item:nth-child(3) {
    --item-angle: calc(var(--angle-step) * 2);
}

.timeline-item:nth-child(4) {
    --item-angle: calc(var(--angle-step) * 3);
}

.timeline-item:nth-child(5) {
    --item-angle: calc(var(--angle-step) * 4);
}

.timeline-item:nth-child(6) {
    --item-angle: calc(var(--angle-step) * 5);
}

.timeline-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 35, 0.95);
    border: 1px solid rgba(155, 89, 255, 0.4);
    border-radius: 32px;
    backdrop-filter: blur(24px);
    transition: all 0.5s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.timeline-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 35, 0.95);
    border: 1px solid rgba(155, 89, 255, 0.2);
    border-radius: 32px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: -1;
}

.timeline-marker {
    display: none;
}

.marker-pulse {
    display: none;
}

.timeline-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(155, 89, 255, 0.4);
    background: none;
    z-index: 10;
}

.timeline-item[data-step="1"] .timeline-content::before { content: '1'; }
.timeline-item[data-step="2"] .timeline-content::before { content: '2'; }
.timeline-item[data-step="3"] .timeline-content::before { content: '3'; }
.timeline-item[data-step="4"] .timeline-content::before { content: '4'; }
.timeline-item[data-step="5"] .timeline-content::before { content: '5'; }
.timeline-item[data-step="6"] .timeline-content::before { content: '6'; }

.timeline-content h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #b87cff, #59c3ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    position: relative;
    line-height: 1.3;
}

.timeline-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b87cff, transparent);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.timeline-content p {
    line-height: 1.7;
    color: rgba(220, 215, 255, 0.85);
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    transition: all 0.4s ease;
}

.process-section {
    isolation: isolate;
}

.process-section::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
            rgba(155, 89, 255, 0.2), 
            transparent 40%);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}

@media (max-width: 1280px) {
    .timeline-container {
        --radius: clamp(280px, 32vw, 400px);
        height: clamp(480px, 62vh, 620px);
    }

    .timeline-item {
        width: clamp(220px, 28vw, 260px);
    }
    
    .carousel-hint {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

@media (max-width: 1024px) {
    .process-section {
        overflow: hidden;
        perspective: none;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-hint {
        display: none;
    }

    .timeline-container {
        --radius: 0px;
        height: auto;
        padding: clamp(32px, 6vw, 48px) 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: clamp(32px, 6vw, 48px);
        transform-style: flat;
        transform: none !important;
    }

    .timeline-track {
        display: none;
    }

    .timeline-item {
        position: relative;
        top: auto;
        left: auto;
        transform: none !important;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        filter: none !important;
    }
}

@media (max-width: 640px) {
    .timeline-container {
        padding: clamp(24px, 8vw, 40px) 0;
        gap: clamp(24px, 8vw, 36px);
    }

    .timeline-item {
        max-width: 100%;
        padding: clamp(28px, 8vw, 36px) clamp(18px, 6vw, 28px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-container,
    .timeline-item {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(24px, 4vw, 32px);
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(5, 25, 40, 0.5);
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 36px);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 220, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 220, 255, 0.3);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.use-case-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 220, 255, 0.5));
}

.use-case-header h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: #00ffc8;
}

.use-case-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.use-case-list li {
    padding-left: 24px;
    position: relative;
    color: rgba(180, 230, 255, 0.85);
    line-height: 1.6;
}

.use-case-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
    padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: clamp(32px, 5vw, 48px);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(5, 25, 40, 0.6);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 48px);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(0, 220, 255, 0.8),
        rgba(0, 255, 200, 0.8),
        rgba(0, 220, 255, 0.8)
    );
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-flow 4s linear infinite;
    opacity: 0.6;
}

@keyframes border-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.4), transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    transition: all 0.4s ease;
    filter: blur(50px);
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 220, 255, 0.4),
                0 0 80px rgba(0, 255, 200, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
    animation-duration: 2s;
}

.testimonial-card:hover .card-glow {
    transform: scale(1.5);
    opacity: 0.8;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.7), rgba(0, 255, 200, 0.6));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    line-height: 1.8;
    color: rgba(180, 230, 255, 0.9);
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    margin-bottom: 32px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.8), rgba(0, 255, 200, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 220, 255, 0.5);
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #00ffc8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::after {
    opacity: 1;
    animation: pulse-ring 2s ease-out infinite;
}

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

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 600;
    color: #00ffc8;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(180, 230, 255, 0.7);
}

/* CTA Section */
.cta-section {
    padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 60px);
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(5, 25, 40, 0.6);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 24px;
    padding: clamp(48px, 8vw, 80px);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(0, 220, 255, 0.2);
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00d4ff, #00ffc8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(180, 230, 255, 0.85);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, rgba(0, 220, 255, 0.7), rgba(0, 255, 200, 0.6));
    color: #020815;
    border: 1px solid rgba(0, 220, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 220, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 220, 255, 0.5);
}

.cta-secondary {
    background: transparent;
    color: rgba(180, 230, 255, 0.9);
    border: 1px solid rgba(0, 200, 255, 0.4);
}

.cta-secondary:hover {
    background: rgba(0, 200, 255, 0.15);
    border-color: rgba(0, 220, 255, 0.6);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-visual {
        opacity: 0.5;
        width: 250px;
        height: 250px;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-left {
        text-align: center;
        align-items: center;
    }
    
    .slide-description {
        max-width: 100%;
    }
    
    .slide-visual {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .floating-visual {
        display: none;
    }
    
    .showcase-slider-section {
        min-height: auto;
    }
    
    .slider-container {
        height: auto;
        min-height: 700px;
    }
    
    .slide {
        transform: translateY(50px) scale(0.95);
    }
    
    .slide.active {
        transform: translateY(0) scale(1);
    }
    
    .slide.exit-left,
    .slide.exit-right {
        transform: translateY(-50px) scale(0.95);
    }
    
    .slider-arrow {
        width: 48px;
        height: 48px;
    }
    
    .arrow-prev {
        left: 10px;
    }
    
    .arrow-next {
        right: 10px;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: clamp(2rem, 6vw, 3rem);
        gap: 8px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-number {
        font-size: 2.5rem;
    }
    
    .chat-interface {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}