/* ============================================
   AI Implementing - Service Page Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   AI Background
   ============================================ */
.ai-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation-delay: -7s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    right: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ============================================
   Main Content
   ============================================ */
main {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-badge i {
    width: 20px;
    height: 20px;
    color: #a855f7;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
}

.title-gradient {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.5);
}

.btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.btn-secondary i {
    width: 18px;
    height: 18px;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Hero Visual - Advanced AI Visualization
   ============================================ */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.ai-visualization {
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
}

/* Background Glow */
.viz-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
    filter: blur(40px);
    animation: vizGlowPulse 4s ease-in-out infinite;
}

@keyframes vizGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* ============================================
   3D Hexagonal Layers
   ============================================ */
.layer-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg);
    transform-style: preserve-3d;
}

.hex-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
}

.hex-ring {
    position: relative;
    width: 200px;
    height: 200px;
    animation: hexRotate 20s linear infinite;
}

.layer-1 {
    transform: translate(-50%, -50%) translateZ(60px);
}

.layer-1 .hex-ring {
    width: 280px;
    height: 280px;
    animation-duration: 25s;
}

.layer-2 {
    transform: translate(-50%, -50%) translateZ(0px);
}

.layer-2 .hex-ring {
    width: 220px;
    height: 220px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.layer-3 {
    transform: translate(-50%, -50%) translateZ(-60px);
}

.layer-3 .hex-ring {
    width: 160px;
    height: 160px;
    animation-duration: 15s;
}

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

.hex-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
    animation: nodeGlow 2s ease-in-out infinite;
}

.hex-node::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    animation: nodeHalo 2s ease-in-out infinite;
}

@keyframes nodeGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes nodeHalo {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Position hex nodes in hexagon pattern */
.hex-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.hex-node:nth-child(2) { top: 25%; right: 0; }
.hex-node:nth-child(3) { bottom: 25%; right: 0; }
.hex-node:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.hex-node:nth-child(5) { bottom: 25%; left: 0; }
.hex-node:nth-child(6) { top: 25%; left: 0; }

/* ============================================
   Central AI Core
   ============================================ */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 10;
}

.core-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.sphere-inner {
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, #a855f7, #6366f1, #3b82f6, #6366f1, #a855f7);
    border-radius: 50%;
    animation: sphereSpin 4s linear infinite;
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.6),
        0 0 60px rgba(99, 102, 241, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

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

.sphere-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    animation: sphereGlow 2s ease-in-out infinite;
}

@keyframes sphereGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

/* Orbiting elements */
.core-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 100px;
    height: 100px;
    animation: orbitSpin 6s linear infinite;
}

.orbit-2 {
    width: 140px;
    height: 140px;
    animation: orbitSpin 8s linear infinite reverse;
    border-color: rgba(99, 102, 241, 0.3);
}

.orbit-3 {
    width: 180px;
    height: 180px;
    animation: orbitSpin 10s linear infinite;
    border-color: rgba(59, 130, 246, 0.2);
}

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

.orbit-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.8), 0 0 30px rgba(168, 85, 247, 0.4);
}

.orbit-2 .orbit-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.orbit-3 .orbit-dot {
    width: 4px;
    height: 4px;
    background: #3b82f6;
}

/* ============================================
   Holographic Panels
   ============================================ */
.holo-panels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.holo-panel {
    position: absolute;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    overflow: hidden;
    animation: panelFloat 6s ease-in-out infinite;
}

.panel-1 {
    top: 20px;
    right: 30px;
    width: 80px;
    height: 50px;
    animation-delay: 0s;
}

.panel-2 {
    bottom: 60px;
    right: 50px;
    width: 100px;
    height: 45px;
    animation-delay: -2s;
}

.panel-3 {
    top: 80px;
    left: 20px;
    width: 60px;
    height: 60px;
    animation-delay: -4s;
}

@keyframes panelFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotateX(5deg); opacity: 1; }
}

.panel-content {
    padding: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.panel-bar {
    height: 4px;
    background: linear-gradient(90deg, #a855f7, transparent);
    border-radius: 2px;
    animation: barLoad 2s ease-in-out infinite;
}

.panel-bar:nth-child(1) { width: 80%; animation-delay: 0s; }
.panel-bar:nth-child(2) { width: 60%; animation-delay: 0.3s; }
.panel-bar:nth-child(3) { width: 90%; animation-delay: 0.6s; }

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

.panel-graph {
    width: 100%;
    height: 100%;
}

.graph-line {
    fill: none;
    stroke: #a855f7;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: graphDraw 3s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.8));
}

@keyframes graphDraw {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.panel-circle {
    width: 30px;
    height: 30px;
    border: 2px solid #a855f7;
    border-radius: 50%;
    margin: 0 auto 4px;
    animation: circleRotate 4s linear infinite;
    border-top-color: transparent;
}

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

.panel-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    color: #a855f7;
    letter-spacing: 0.1em;
}

/* Scanline effect */
.panel-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* ============================================
   Data Streams
   ============================================ */
.data-streams {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.stream {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 10 20;
    animation: streamFlow 3s linear infinite;
}

.stream-1 {
    stroke: url(#streamGrad1);
    animation-duration: 4s;
}

.stream-2 {
    stroke: url(#streamGrad2);
    animation-duration: 5s;
    animation-delay: -1s;
}

.stream-3 {
    stroke: url(#streamGrad1);
    animation-duration: 4.5s;
    animation-delay: -2s;
}

.stream-4 {
    stroke: url(#streamGrad2);
    animation-duration: 5.5s;
    animation-delay: -3s;
}

@keyframes streamFlow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -60; }
}

/* ============================================
   Floating Particles
   ============================================ */
.float-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.f-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
    animation: floatUp 8s ease-in-out infinite;
}

.f-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.f-particle:nth-child(2) { left: 25%; animation-delay: -1s; width: 3px; height: 3px; }
.f-particle:nth-child(3) { left: 40%; animation-delay: -2s; }
.f-particle:nth-child(4) { left: 55%; animation-delay: -3s; width: 5px; height: 5px; }
.f-particle:nth-child(5) { left: 70%; animation-delay: -4s; }
.f-particle:nth-child(6) { left: 85%; animation-delay: -5s; width: 3px; height: 3px; }
.f-particle:nth-child(7) { left: 95%; animation-delay: -6s; }
.f-particle:nth-child(8) { left: 5%; animation-delay: -7s; width: 5px; height: 5px; }

@keyframes floatUp {
    0% { 
        bottom: -10px; 
        opacity: 0; 
        transform: translateX(0) scale(0);
    }
    10% { 
        opacity: 1; 
        transform: scale(1);
    }
    90% { 
        opacity: 1; 
    }
    100% { 
        bottom: 110%; 
        opacity: 0; 
        transform: translateX(20px) scale(0.5);
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.stat-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #a855f7;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Section Header (Shared)
   ============================================ */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a855f7;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.card-icon i {
    width: 28px;
    height: 28px;
    color: #a855f7;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-features {
    list-style: none;
}

.card-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #a855f7;
    border-radius: 50%;
}

/* ============================================
   Process Timeline Section
   ============================================ */
.process-section {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #a855f7, #6366f1, #3b82f6);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
    display: flex;
    gap: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -3rem;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.timeline-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-left: 1rem;
}

.timeline-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.timeline-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ============================================
   Industries Section
   ============================================ */
.industries-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
}

.industry-card i {
    width: 40px;
    height: 40px;
    color: #a855f7;
}

.industry-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Technologies Section
   ============================================ */
.tech-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.tech-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #a855f7;
}

.tech-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 6rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.2);
}

.faq-item.active {
    border-color: rgba(168, 85, 247, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #a855f7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 6rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    position: relative;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 32px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-inc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    color: #a855f7;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 4px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 2rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .title-line {
        font-size: 2.5rem;
    }

    .title-gradient {
        font-size: 3rem;
    }

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

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

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-number {
        left: -2rem;
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}
