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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        /* Dot grid */
        radial-gradient(circle, rgba(0, 212, 255, 0.15) 1px, transparent 1px),
        /* Glow top-right */
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 70%),
        /* Glow bottom-left */
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 70%),
        /* Base gradient */
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-size: 40px 40px, 100% 100%, 100% 100%, 100% 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ai-hero-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Digital Grid Background */
.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-shift 20s linear infinite;
}

/* Quantum Particles */
.quantum-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00d4ff 0%, rgba(0, 212, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: quantum-float 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.quantum-particle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: quantum-ring 3s linear infinite;
}

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

.particle-2 {
    top: 35%;
    right: 25%;
    animation-delay: 0.8s;
}

.particle-3 {
    bottom: 40%;
    left: 15%;
    animation-delay: 1.6s;
}

.particle-4 {
    top: 70%;
    right: 40%;
    animation-delay: 2.4s;
}

.particle-5 {
    bottom: 25%;
    left: 60%;
    animation-delay: 3.2s;
}

/* Neural Pathways */
.neural-pathway {
    display: none;
}

.pathway-1 {
    top: 25%;
    left: 10%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.pathway-2 {
    top: 55%;
    left: 30%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.pathway-3 {
    bottom: 30%;
    right: 20%;
    width: 200px;
    transform: rotate(35deg);
    animation-delay: 4s;
}

/* AI Circuit Patterns */
.circuit-pattern {
    display: none;
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    background: transparent;
    animation: circuit-glow 5s ease-in-out infinite;
}

.pattern-1 {
    top: 20%;
    right: 15%;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%);
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 35%;
    left: 25%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 2.5s;
}

/* Data Waves */
.data-wave {
    display: none;
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.6) 50%, transparent 100%);
    animation: wave-flow 8s linear infinite;
    transform-origin: center;
}

.wave-1 {
    top: 40%;
    left: 0;
    transform: rotate(-10deg);
    animation-delay: 0s;
}

.wave-2 {
    bottom: 40%;
    right: 0;
    transform: rotate(10deg);
    animation-delay: 4s;
}

/* Holographic Elements */
.hologram-element {
    display: none;
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 212, 255, 0.4);
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    animation: hologram-flicker 7s ease-in-out infinite;
    border-radius: 10px;
}

.holo-1 {
    top: 60%;
    left: 40%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.holo-2 {
    top: 30%;
    left: 70%;
    transform: rotate(-30deg);
    animation-delay: 3.5s;
}

/* Animations */
@keyframes grid-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes quantum-float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) scale(1.2); 
        opacity: 1;
    }
}

@keyframes quantum-ring {
    0% { 
        transform: scale(0.5) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes pathway-pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes circuit-glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
        border-color: rgba(0, 212, 255, 0.3);
    }
    50% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
        border-color: rgba(0, 212, 255, 0.8);
    }
}

@keyframes wave-flow {
    0% { 
        transform: translateX(-100%) rotate(-10deg); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: translateX(100vw) rotate(-10deg); 
        opacity: 0; 
    }
}

@keyframes hologram-flicker {
    0%, 100% { 
        opacity: 0.4; 
        filter: brightness(1);
    }
    25% { 
        opacity: 0.8; 
        filter: brightness(1.3);
    }
    50% { 
        opacity: 0.2; 
        filter: brightness(0.8);
    }
    75% { 
        opacity: 0.9; 
        filter: brightness(1.5);
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
}

.cta-button.secondary:hover {
    background: #00d4ff;
    color: #fff;
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 500px;
}

/* ── Workflow Diagram ─────────────────────────────────── */
.workflow-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0.92;
}

.wf-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.wf-row--reverse {
    flex-direction: row-reverse;
}

/* Node */
.wf-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 96px;
    height: 82px;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    flex-shrink: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wf-node i {
    font-size: 1.4rem;
    color: #00d4ff;
}

.wf-node--trigger {
    border-color: rgba(251, 146, 60, 0.5);
}
.wf-node--trigger i { color: #fb923c; }

.wf-node--ai {
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 0 18px rgba(167, 139, 250, 0.2);
}
.wf-node--ai i { color: #a78bfa; }

.wf-node--success {
    border-color: rgba(74, 222, 128, 0.5);
}
.wf-node--success i { color: #4ade80; }

.wf-node--end {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.15);
}

/* Connection line */
.wf-line {
    position: relative;
    width: 52px;
    height: 2px;
    background: rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
    overflow: visible;
}

.wf-row--reverse .wf-line {
    background: rgba(0, 212, 255, 0.2);
}

/* Vertical connector */
.wf-vertical {
    position: relative;
    width: 2px;
    height: 36px;
    background: rgba(0, 212, 255, 0.2);
    align-self: flex-end;
    margin-right: 35px;
    overflow: visible;
}

.wf-vertical--left {
    align-self: flex-start;
    margin-right: 0;
    margin-left: 35px;
}

/* Travelling packet */
.wf-packet {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #00d4ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -3px;
    box-shadow: 0 0 6px #00d4ff;
    animation: packet-flow 2s linear infinite;
}

.wf-packet--reverse {
    animation: packet-flow-reverse 2s linear infinite;
}

.wf-packet--vertical {
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    animation: packet-flow-down 1s linear infinite;
}

.wf-row:nth-child(1) .wf-line:nth-child(2) .wf-packet { animation-delay: 0s; }
.wf-row:nth-child(1) .wf-line:nth-child(4) .wf-packet { animation-delay: 0.6s; }
.wf-row:nth-child(3) .wf-line:nth-child(2) .wf-packet { animation-delay: 0.3s; }
.wf-row:nth-child(3) .wf-line:nth-child(4) .wf-packet { animation-delay: 0.9s; }
.wf-row:nth-child(5) .wf-line:nth-child(2) .wf-packet { animation-delay: 0.15s; }
.wf-row:nth-child(5) .wf-line:nth-child(4) .wf-packet { animation-delay: 0.75s; }

@keyframes packet-flow {
    0%   { left: -3px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: calc(100% - 4px); opacity: 0; }
}

@keyframes packet-flow-reverse {
    0%   { left: calc(100% - 4px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: -3px; opacity: 0; }
}

@keyframes packet-flow-down {
    0%   { top: -3px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { top: calc(100% - 4px); opacity: 0; }
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #00d4ff 0%, #0099cc 100%);
    border-radius: 50%;
    animation: float-dots 4s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.dot-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float-dots {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

.disintegrating-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: disintegrate 8s ease-in-out infinite;
}

@keyframes disintegrate {
    0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 1; }
    25% { transform: translate(-50%, -50%) scale(1.1) rotate(90deg); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(0.9) rotate(180deg); opacity: 0.6; }
    75% { transform: translate(-50%, -50%) scale(1.05) rotate(270deg); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(360deg); opacity: 1; }
}

/* Value Areas Section */
.value-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #333;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.service-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #1a202c;
    line-height: 1.3;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desk Image Container */
.desk-image-container {
    position: relative;
    width: 350px;
    height: 280px;
    margin: 0 auto;
}

.desk-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: desk-float 6s ease-in-out infinite;
}

.desk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.desk-frame:hover .desk-image {
    transform: scale(1.05);
}

/* Image Overlay Effects */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Floating Problem Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.problem-icon {
    position: absolute;
    font-size: 1.4rem;
    background: rgba(15, 20, 45, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
    animation: icon-bounce 3s ease-in-out infinite;
}

.problem-icon i {
    color: #00d4ff;
}

.icon-pdf i    { color: #ff6b6b; }
.icon-excel i  { color: #51cf66; }
.icon-email i  { color: #00d4ff; }
.icon-chat i   { color: #a78bfa; }

.icon-pdf {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.icon-excel {
    top: 20%;
    right: 20%;
    animation-delay: 0.8s;
}

.icon-email {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.6s;
}

.icon-chat {
    bottom: 20%;
    right: 15%;
    animation-delay: 2.4s;
}

/* Stress Lines Effect */
.stress-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stress-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.8) 50%, transparent 100%);
    animation: stress-pulse 2s ease-in-out infinite;
    border-radius: 2px;
}

.line-1 {
    top: 40%;
    left: 10%;
    width: 80%;
    animation-delay: 0s;
}

.line-2 {
    top: 55%;
    left: 15%;
    width: 70%;
    animation-delay: 0.7s;
}

.line-3 {
    top: 70%;
    left: 20%;
    width: 60%;
    animation-delay: 1.4s;
}

/* Image Glow Effect */
.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes desk-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    }
}

@keyframes icon-bounce {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.1); 
        opacity: 1;
    }
}

@keyframes stress-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(0.8);
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1.2);
    }
}

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

.problem-text h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #fff;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
}

.problem-list li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.problem-emphasis {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
}

.solution-highlight {
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.solution-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.solution-highlight p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a202c;
}

.process-steps {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: #fff;
}

.clients-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a202c;
}

/* Clients Carousel */
.clients-carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    animation: carousel-slide 20s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0 1rem;
    min-width: 180px;
}

.client-logo:hover {
    transform: scale(1.05);
    background: #f7fafc;
}

.client-logo img {
    max-width: 140px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}


/* Carousel Animation */
@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ai-neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

/* Neural Network Nodes */
.neural-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #00d4ff 0%, rgba(0, 212, 255, 0.3) 100%);
    border-radius: 50%;
    animation: neural-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.neural-node::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: neural-ring 4s ease-in-out infinite;
}

.neural-node:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.neural-node:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 0.8s;
}

.neural-node:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1.6s;
}

.neural-node:nth-child(4) {
    bottom: 30%;
    right: 25%;
    animation-delay: 2.4s;
}

.neural-node:nth-child(5) {
    bottom: 20%;
    left: 50%;
    animation-delay: 3.2s;
}

/* Neural Connections */
.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
    animation: neural-flow 4s linear infinite;
    transform-origin: left center;
}

.neural-connection:nth-child(6) {
    top: 20%;
    left: 12%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.neural-connection:nth-child(7) {
    top: 45%;
    left: 25%;
    width: 150px;
    transform: rotate(-20deg);
    animation-delay: 1s;
}

.neural-connection:nth-child(8) {
    bottom: 35%;
    right: 30%;
    width: 180px;
    transform: rotate(25deg);
    animation-delay: 2s;
}

/* Floating Geometric Shapes */
.ai-geometry {
    position: absolute;
    border: 2px solid rgba(0, 212, 255, 0.2);
    animation: geometric-float 6s ease-in-out infinite;
}

.ai-geometry.hexagon {
    width: 40px;
    height: 40px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(0, 212, 255, 0.1);
    top: 30%;
    right: 10%;
    animation-delay: 0s;
}

.ai-geometry.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(0, 212, 255, 0.15);
    border: none;
    background: transparent;
    top: 70%;
    left: 15%;
    animation-delay: 2s;
}

.ai-geometry.diamond {
    width: 30px;
    height: 30px;
    background: rgba(0, 212, 255, 0.1);
    transform: rotate(45deg);
    bottom: 45%;
    right: 40%;
    animation-delay: 4s;
}

/* Data Stream Effect */
.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 212, 255, 0.6) 50%, transparent 100%);
    animation: data-flow 3s linear infinite;
}

.data-stream:nth-child(13) {
    top: 0;
    left: 80%;
    animation-delay: 0s;
}

.data-stream:nth-child(14) {
    top: 0;
    left: 30%;
    animation-delay: 1s;
}

@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }
    50% { 
        transform: scale(1.3); 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    }
}

@keyframes neural-ring {
    0% { 
        transform: scale(0.8); 
        opacity: 1; 
    }
    100% { 
        transform: scale(2); 
        opacity: 0; 
    }
}

@keyframes neural-flow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes geometric-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.4; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8; 
    }
}

@keyframes data-flow {
    0% { 
        transform: translateY(-100px); 
        opacity: 0; 
    }
    50% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(100vh); 
        opacity: 0; 
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-section > .container > .cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.benefits-list {
    text-align: left;
    background: rgba(0, 212, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.benefits-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e2e8f0;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.cta-highlight {
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.final-question {
    font-size: 1.5rem;
    margin-top: 3rem;
    color: #00d4ff;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-contact a {
    color: #00d4ff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.address {
    margin-top: 1rem;
    color: #ccc;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.footer-compliance {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.compliance-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.compliance-badge > i {
    color: #00d4ff;
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.compliance-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.compliance-text span {
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 2px solid rgba(0, 212, 255, 0.4);
    padding: 1.25rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.cookie-consent--visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cookie-consent-content p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-consent-content p strong {
    color: #fff;
}

.cookie-policy-link {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: #fff;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cookie-btn--accept {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #fff;
}

.cookie-btn--accept:hover {
    box-shadow: 0 4px 14px rgba(0, 212, 255, 0.45);
    transform: translateY(-1px);
}

.cookie-btn--necessary {
    background: transparent;
    color: #ccc;
    border: 1px solid #444;
}

.cookie-btn--necessary:hover {
    border-color: #00d4ff;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 212, 255, 0.1);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .hero-visual {
        height: auto;
        padding: 0 1rem 1rem;
    }
    
    .ai-hero-effects {
        opacity: 0.2;
    }
    
    .digital-grid {
        background-size: 50px 50px;
    }
    
    .neural-pathway {
        width: 150px !important;
    }
    
    .circuit-pattern {
        width: 50px;
        height: 50px;
    }
    
    .data-wave {
        width: 120px;
    }
    
    .hologram-element {
        width: 40px;
        height: 40px;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .desk-image-container {
        width: 300px;
        height: 240px;
        margin: 2rem auto;
    }
    
    .problem-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .compliance-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .clients-carousel-container {
        padding: 1rem 0;
    }
    
    .client-logo {
        min-width: 150px;
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .client-logo img {
        max-width: 120px;
        height: 50px;
    }
    
    /* Hero padding on mobile */
    .hero-content {
        padding: 0 1.5rem;
    }

    /* CTA section mobile */
    .cta-content {
        padding: 0 1rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .benefits-list {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-carousel-container {
        padding: 0.5rem 0;
    }
    
    .desk-image-container {
        width: 250px;
        height: 200px;
    }
    
    .problem-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stress-line {
        height: 2px;
    }
    
    .client-logo {
        min-width: 120px;
        padding: 0.5rem;
        margin: 0 0.25rem;
    }
    
    .client-logo img {
        max-width: 100px;
        height: 40px;
    }
    
}

/* Additional Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card:nth-child(odd) {
    animation: pulse 6s ease-in-out infinite;
}

.service-card:nth-child(even) {
    animation: pulse 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Projects Section */
.projects-section .section-header h2 {
    color: #fff;
}

.projects-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.project-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.project-industry {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.75rem;
}

.project-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.project-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.project-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 212, 255, 0.7);
}

.project-block p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.project-tag {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
}

.project-result {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 500;
    color: #00d4ff;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.45;
}

.project-result i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .digital-grid,
    .quantum-particle,
    .neural-pathway,
    .circuit-pattern,
    .data-wave,
    .hologram-element,
    .floating-dot,
    .disintegrating-sphere,
    .neural-node,
    .neural-connection,
    .data-stream,
    .stress-line {
        display: none;
    }

    .hero {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        flex: unset;
        max-width: 800px;
        text-align: center;
        align-items: center;
    }
}
