/* Strategy Page Specific Styles - Circuit Board Tron Aesthetic */

/* Strategy Hero with Circuit Board Pattern */
.strategy-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 50%, #0a0a0a 100%);
}

/* Circuit Board Pattern */
.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        /* Vertical lines */
        linear-gradient(90deg, transparent 48%, rgba(81, 10, 148, 0.3) 49%, rgba(81, 10, 148, 0.3) 51%, transparent 52%),
        /* Horizontal lines */
        linear-gradient(0deg, transparent 48%, rgba(81, 10, 148, 0.3) 49%, rgba(81, 10, 148, 0.3) 51%, transparent 52%),
        /* Circuit nodes */
        radial-gradient(circle at 25% 25%, rgba(81, 10, 148, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(81, 10, 148, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 25% 75%, rgba(81, 10, 148, 0.4) 1px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(81, 10, 148, 0.4) 1px, transparent 2px);
    background-size: 
        100px 100px,
        100px 100px,
        50px 50px,
        50px 50px,
        25px 25px,
        25px 25px;
    animation: circuitFlow 15s linear infinite;
}

@keyframes circuitFlow {
    0% { 
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
        opacity: 0.6;
    }
    50% { 
        background-position: 50px 50px, -50px 50px, 25px 25px, -25px -25px, 12px 12px, -12px -12px;
        opacity: 1;
    }
    100% { 
        background-position: 100px 100px, -100px 100px, 50px 50px, -50px -50px, 25px 25px, -25px -25px;
        opacity: 0.6;
    }
}

/* Data Streams Animation */
.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(81, 10, 148, 0.1) 31%, rgba(81, 10, 148, 0.1) 32%, transparent 33%),
        linear-gradient(-45deg, transparent 30%, rgba(81, 10, 148, 0.1) 31%, rgba(81, 10, 148, 0.1) 32%, transparent 33%);
    background-size: 20px 20px;
    animation: dataFlow 8s linear infinite;
}

@keyframes dataFlow {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

/* Matrix Text Effect */
.matrix-text {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(81, 10, 148, 0.8),
        0 0 10px rgba(81, 10, 148, 0.6),
        0 0 15px rgba(81, 10, 148, 0.4);
    letter-spacing: 3px;
    animation: matrixGlow 3s ease-in-out infinite alternate;
}

@keyframes matrixGlow {
    from { 
        text-shadow: 
            0 0 5px rgba(81, 10, 148, 0.8),
            0 0 10px rgba(81, 10, 148, 0.6),
            0 0 15px rgba(81, 10, 148, 0.4);
    }
    to { 
        text-shadow: 
            0 0 10px rgba(81, 10, 148, 1),
            0 0 20px rgba(81, 10, 148, 0.8),
            0 0 30px rgba(81, 10, 148, 0.6);
    }
}

.matrix-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(81, 10, 148, 0.5);
    z-index: -1;
    animation: matrixShift 4s ease infinite;
}

@keyframes matrixShift {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(1px, -1px); }
    50% { transform: translate(-1px, 1px); }
    75% { transform: translate(1px, 1px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

/* Strategy Introduction */
.strategy-intro {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #510a94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Strategic Journey Timeline */
.strategic-journey {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: linePulse 2s ease infinite;
}

@keyframes linePulse {
    0%, 100% { width: 100px; opacity: 0.5; }
    50% { width: 150px; opacity: 1; }
}

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

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(81, 10, 148, 0.3) 10%, 
        rgba(81, 10, 148, 0.8) 50%, 
        rgba(81, 10, 148, 0.3) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    animation: timelinePulse 3s ease infinite;
}

@keyframes timelinePulse {
    0%, 100% { box-shadow: 0 0 0 rgba(81, 10, 148, 0.5); }
    50% { box-shadow: 0 0 20px rgba(81, 10, 148, 0.8); }
}

.journey-phase {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.journey-phase:nth-child(odd) {
    flex-direction: row;
}

.journey-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-icon {
    width: 80px;
    height: 80px;
    background: rgba(17, 17, 17, 0.9);
    border: 3px solid rgba(81, 10, 148, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.phase-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.journey-phase:hover .phase-icon {
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(81, 10, 148, 0.6);
}

.journey-phase:hover .phase-icon svg {
    transform: rotate(360deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(81, 10, 148, 0.3) 0%, transparent 70%);
    animation: iconPulse 2s ease infinite;
}

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

.phase-content {
    flex: 1;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.3);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.journey-phase:nth-child(odd) .phase-content {
    margin-left: 1rem;
    border-left: 3px solid rgba(81, 10, 148, 0.5);
}

.journey-phase:nth-child(even) .phase-content {
    margin-right: 1rem;
    border-right: 3px solid rgba(81, 10, 148, 0.5);
}

.journey-phase:hover .phase-content {
    border-color: var(--accent);
    background: rgba(17, 17, 17, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(81, 10, 148, 0.2);
}

.phase-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phase-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.phase-content ul {
    list-style: none;
}

.phase-content ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.phase-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Core Services Grid */
.core-services {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.service-module {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(81, 10, 148, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-module:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(81, 10, 148, 0.3);
}

.module-header {
    padding: 1.5rem;
    background: rgba(81, 10, 148, 0.1);
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    position: relative;
}

.module-circuit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 20%, 
        transparent 40%, 
        var(--accent) 60%, 
        transparent 80%, 
        var(--accent) 100%);
    animation: circuitPulse 2s ease infinite;
}

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

.module-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.module-content {
    padding: 1.5rem;
}

.module-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-chip {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    background: rgba(81, 10, 148, 0.2);
    border: 1px solid rgba(81, 10, 148, 0.4);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.service-module:hover .feature-chip {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(81, 10, 148, 0.3);
}

.module-details h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    padding-bottom: 0.5rem;
}

.module-details ul {
    list-style: none;
}

.module-details ul li {
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.module-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Compliance Section */
.compliance-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.compliance-visual {
    position: relative;
    height: 300px;
}

.compliance-network {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(81, 10, 148, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 80% 20%, rgba(81, 10, 148, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(81, 10, 148, 0.8) 3px, transparent 4px),
        radial-gradient(circle at 20% 80%, rgba(81, 10, 148, 0.6) 2px, transparent 3px),
        radial-gradient(circle at 80% 80%, rgba(81, 10, 148, 0.6) 2px, transparent 3px);
    background-size: 100% 100%;
    position: relative;
}

.compliance-network::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(81, 10, 148, 0.4) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(81, 10, 148, 0.4) 50%, transparent 52%);
    animation: networkPulse 3s ease infinite;
}

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

.compliance-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.compliance-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.compliance-highlights {
    display: grid;
    gap: 1.5rem;
}

.highlight-item h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Strategy Outcomes */
.strategy-outcomes {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.outcome-card {
    text-align: center;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(81, 10, 148, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 10, 148, 0.3);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(81, 10, 148, 0.1);
    border: 2px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.outcome-card:hover .outcome-icon {
    border-color: var(--accent);
    background: rgba(81, 10, 148, 0.2);
    transform: scale(1.1);
}

.outcome-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.outcome-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.outcome-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.strategy-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a0d2e 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.strategy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(81, 10, 148, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(81, 10, 148, 0.05) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: ctaPattern 20s linear infinite;
}

@keyframes ctaPattern {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, -60px 60px; }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(81, 10, 148, 0.6);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compliance-visual {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .strategy-hero {
        min-height: 50vh;
    }
    
    .matrix-text {
        font-size: 2.5rem;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-phase {
        flex-direction: column !important;
        padding-left: 40px;
    }
    
    .journey-phase:nth-child(odd) .phase-content,
    .journey-phase:nth-child(even) .phase-content {
        margin: 1rem 0 0 0;
        border-left: 3px solid rgba(81, 10, 148, 0.5);
        border-right: none;
    }
    
    .phase-icon {
        position: absolute;
        left: -20px;
        margin: 0;
        width: 60px;
        height: 60px;
    }
    
    .phase-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}