/* Strategy Consultation Page Styles */
:root {
    --primary: #6d28d9;
    --primary-dark: #5b21b6;
    --secondary: #FF0080;
    --secondary-dark: #CF006B;
    --accent: #00CFFD;
    --dark: #121212;
    --light: #FFFFFF;
    --gray: #F4F7FC;
    --text: #333333;
    --text-light: #777777;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(43, 29, 93, 0.8));
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 5;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(109, 40, 217, 0.15);
    color: var(--light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light);
}

.split-text {
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.split-text:nth-child(2) {
    animation-delay: 0.2s;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.4s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s 0.6s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: translateX(-100%) rotate(10deg);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%) rotate(10deg);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white !important;
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* 3D Elements */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.strategy-3d-scene {
    position: relative;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.strategy-cube {
    width: 180px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(45deg) rotateZ(45deg);
    transform-style: preserve-3d;
    animation: rotateScene 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(109, 40, 217, 0.2);
    border: 2px solid rgba(109, 40, 217, 0.8);
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.face-front { transform: translateZ(90px); }
.face-back { transform: translateZ(-90px) rotateY(180deg); }
.face-right { transform: translateX(90px) rotateY(90deg); }
.face-left { transform: translateX(-90px) rotateY(-90deg); }
.face-top { transform: translateY(-90px) rotateX(90deg); }
.face-bottom { transform: translateY(90px) rotateX(-90deg); }

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--light);
}

.floating-card span {
    font-weight: 600;
    color: var(--light);
    text-align: center;
}

.card-planning {
    top: 5%;
    left: 10%;
    animation: float 6s infinite alternate ease-in-out;
}

.card-analysis {
    top: 15%;
    right: 10%;
    animation: float 7s infinite alternate-reverse ease-in-out;
}

.card-growth {
    bottom: 15%;
    left: 15%;
    animation: float 5s infinite alternate ease-in-out;
}

.card-innovation {
    bottom: 10%;
    right: 15%;
    animation: float 8s infinite alternate-reverse ease-in-out;
}

.card-transformation {
    top: 40%;
    left: 5%;
    animation: float 9s infinite alternate ease-in-out;
}

.card-execution {
    top: 45%;
    right: 5%;
    animation: float 7s infinite alternate-reverse ease-in-out;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
    background: var(--light);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.divider-icon {
    margin: 0 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid & Flip Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

.service-flip-card {
    height: 350px;
    perspective: 1000px;
}

.service-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-flip-card:hover .service-flip-card-inner {
    transform: rotateY(180deg);
}

.service-flip-card-front,
.service-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.service-flip-card-front {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-flip-card-back {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.3);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-flip-card-back .service-title {
    color: white;
    margin-bottom: 20px;
}

.service-features {
    margin-top: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.service-feature i {
    color: rgba(255, 255, 255, 0.9);
}

.service-cta {
    margin-top: auto;
    text-align: center;
}

/* Process Section Styles */
.process-section {
    padding: 120px 0;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.process-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
}

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

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    top: 30px;
    z-index: 10;
    box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(109, 40, 217, 0.2);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -15px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -15px;
}

.timeline-step {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
}

.timeline-step-number {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.3);
}

.timeline-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 10px;
    color: var(--text);
}

.timeline-step-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.timeline-step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.timeline-step-detail {
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.timeline-step-detail i {
    font-size: 0.8rem;
}

/* Case Studies Section */
.case-studies-section {
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

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

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.tab-button {
    padding: 12px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.case-study-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-study-info {
    position: relative;
}

.case-study-category {
    display: inline-block;
    background: rgba(109, 40, 217, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-study-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
}

.case-study-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.case-study-results {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.result-item {
    text-align: center;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    line-height: 1.2;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.case-study-quote {
    background: rgba(109, 40, 217, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
    position: relative;
}

.quote-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.quote-text::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: rgba(109, 40, 217, 0.2);
    font-family: Georgia, serif;
}

.quote-author {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Animation Keyframes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

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

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

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

@keyframes rotateScene {
    0% { transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(360deg) rotateZ(360deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .strategy-3d-scene {
        height: 400px;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: 100%;
        left: 0;
        padding-right: 0;
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 16px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Neural Strategy Processing System */
.neural-methodology-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #000814 0%, #001d3d 50%, #003566 100%);
    color: white;
    overflow: hidden;
    min-height: 100vh;
}

/* Technical Grid Background */
.tech-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00ffff, transparent);
    animation: streamFlow 3s linear infinite;
}

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

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

.stream-3 {
    left: 80%;
    animation-delay: 2s;
}

@keyframes streamFlow {
    0% { top: -100px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Floating Technical Elements */
.tech-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.circuit-node {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    animation: nodePulse 2s ease-in-out infinite;
}

.circuit-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: coreGlow 1.5s ease-in-out infinite alternate;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 255, 255, 0.3); }
    50% { transform: scale(1.2); box-shadow: 0 0 20px rgba(0, 255, 255, 0.6); }
}

@keyframes coreGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 30%; right: 20%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 25%; animation-delay: 1s; }
.node-4 { bottom: 20%; right: 15%; animation-delay: 1.5s; }

.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff0080;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 { top: 25%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; right: 30%; animation-delay: 2s; }
.particle-3 { bottom: 35%; left: 70%; animation-delay: 4s; }

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-300px) rotate(360deg); opacity: 0; }
}

/* Neural System Header */
.neural-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.system-badge {
    position: relative;
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        background: rgba(0, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
        background: rgba(0, 255, 255, 0.2);
    }
}

.badge-icon {
    margin-right: 10px;
    animation: brainPulse 2s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.badge-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ffff, #ff0080, #00ffff);
    border-radius: 35px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

.neural-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    animation: titleSlide 1s ease-out forwards;
    transform: translateX(-100px);
    opacity: 0;
}

.title-line-2 {
    display: block;
    animation: titleSlide 1s ease-out 0.3s forwards;
    transform: translateX(100px);
    opacity: 0;
}

@keyframes titleSlide {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.neural-gradient {
    background: linear-gradient(45deg, #00ffff, #ff0080, #00ffff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.neural-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: subtitleFade 1s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes subtitleFade {
    to { opacity: 1; }
}

/* System Status Dashboard */
.system-dashboard {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    animation: dashboardSlide 1s ease-out 0.9s forwards;
    transform: translateY(30px);
    opacity: 0;
}

@keyframes dashboardSlide {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.status-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-icon.active {
    background: #00ff00;
}

.status-icon.active::before {
    background: rgba(0, 255, 0, 0.3);
}

.status-icon.processing {
    background: #ffff00;
}

.status-icon.processing::before {
    background: rgba(255, 255, 0, 0.3);
}

.status-icon.ready {
    background: #00ffff;
}

.status-icon.ready::before {
    background: rgba(0, 255, 255, 0.3);
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Neural Network */
.neural-network {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Central Processing Core */
.processing-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.core-ring {
    position: absolute;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 80px;
    height: 80px;
    animation: coreRotate 10s linear infinite;
}

.ring-2 {
    width: 120px;
    height: 120px;
    animation: coreRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 160px;
    height: 160px;
    animation: coreRotate 20s linear infinite;
}

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

.core-center {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    animation: centerPulse 3s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.8);
    }
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 4s ease-in-out infinite;
}

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

/* Processing Nodes */
.process-nodes {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 100px;
}

.neural-node {
    position: relative;
    animation: nodeReveal 1s ease-out forwards;
    animation-delay: calc(var(--node-index, 0) * 0.2s);
    transform: scale(0.8) rotateY(20deg);
    opacity: 0;
}

.neural-node[data-node="1"] { --node-index: 1; }
.neural-node[data-node="2"] { --node-index: 2; }
.neural-node[data-node="3"] { --node-index: 3; }
.neural-node[data-node="4"] { --node-index: 4; }
.neural-node[data-node="5"] { --node-index: 5; }

@keyframes nodeReveal {
    to {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

.node-container {
    background: rgba(0, 20, 40, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 400px;
}

.node-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
}

.node-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.node-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.node-id {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.8rem;
}

.node-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.node-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.8rem;
    color: #00ffff;
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.node-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.node-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 25px;
}

.node-metrics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.metric-value {
    display: block;
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    animation: countUp 2s ease-out forwards;
    animation-delay: calc(var(--node-index, 0) * 0.3s);
}

@keyframes countUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.processing-bar {
    height: 6px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff0080, #00ffff);
    border-radius: 3px;
    width: 0%;
    animation: barFill 3s ease-in-out infinite;
    animation-delay: calc(var(--node-index, 0) * 0.4s);
}

@keyframes barFill {
    0%, 20% { width: 0%; }
    50% { width: 100%; }
    80%, 100% { width: 0%; }
}

/* Connection Lines */
.node-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: connectionFlow 4s linear infinite;
}

@keyframes connectionFlow {
    0% { width: 0%; opacity: 0; }
    10% { width: 0%; opacity: 1; }
    50% { width: 100%; opacity: 1; }
    90% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

/* Neural CTA */
.neural-cta {
    position: relative;
    text-align: center;
    margin-top: 100px;
    padding: 60px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(15px);
}

.cta-hologram {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
}

.hologram-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: hologramRotate 8s linear infinite;
}

.layer-1 { animation-delay: 0s; }
.layer-2 { animation-delay: 2s; }
.layer-3 { animation-delay: 4s; }

@keyframes hologramRotate {
    0% { 
        transform: rotateX(0deg) rotateY(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: rotateX(180deg) rotateY(180deg);
        opacity: 0.8;
    }
    100% { 
        transform: rotateX(360deg) rotateY(360deg);
        opacity: 0.3;
    }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    50% { text-shadow: 0 0 40px rgba(0, 255, 255, 0.6); }
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    animation: statCount 3s ease-out forwards;
}

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

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

.neural-button {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #00ffff, #ff0080, #00ffff);
    background-size: 200% auto;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: buttonPulse 4s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.6);
    }
}

.neural-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.button-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: circuitFlow 3s linear infinite;
}

@keyframes circuitFlow {
    0% { border-color: rgba(255, 255, 255, 0.2); }
    25% { border-color: rgba(0, 255, 255, 0.5); }
    50% { border-color: rgba(255, 0, 128, 0.5); }
    75% { border-color: rgba(0, 255, 255, 0.5); }
    100% { border-color: rgba(255, 255, 255, 0.2); }
}

.button-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00ffff, #ff0080, #00ffff);
    border-radius: 55px;
    z-index: -1;
    opacity: 0;
    animation: glowWave 4s ease-in-out infinite;
}

@keyframes glowWave {
    0%, 100% { opacity: 0; transform: scale(0.9); }
    50% { opacity: 0.3; transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .neural-title { font-size: 3rem; }
    .process-nodes { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .cta-stats { gap: 40px; }
}

@media (max-width: 768px) {
    .neural-title { font-size: 2.5rem; }
    .system-dashboard { 
        flex-direction: column; 
        gap: 20px;
        align-items: center;
    }
    .process-nodes { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .cta-stats { 
        flex-direction: column; 
        gap: 30px;
    }
    .neural-cta { padding: 40px 20px; }
}

/* Counter Animation Script */
@media (min-width: 1px) {
    .neural-methodology-section {
        --counter-duration: 2s;
    }
}