/* Assessment Page Specific Styles - Radar/Scan Tron Aesthetic */

/* Assessment Hero with Radar System */
.assessment-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%);
}

/* Radar Container */
.radar-container {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Radar Grid */
.radar-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(81, 10, 148, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: radarPulse 4s ease infinite;
}

.radar-circle-1 {
    width: 33%;
    height: 33%;
    animation-delay: 0s;
}

.radar-circle-2 {
    width: 66%;
    height: 66%;
    animation-delay: 1s;
}

.radar-circle-3 {
    width: 100%;
    height: 100%;
    animation-delay: 2s;
}

@keyframes radarPulse {
    0%, 100% { 
        border-color: rgba(81, 10, 148, 0.4);
        box-shadow: 0 0 0 rgba(81, 10, 148, 0.3);
    }
    50% { 
        border-color: rgba(81, 10, 148, 0.8);
        box-shadow: 0 0 20px rgba(81, 10, 148, 0.6);
    }
}

.radar-line {
    position: absolute;
    background: rgba(81, 10, 148, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-line-h {
    width: 100%;
    height: 1px;
}

.radar-line-v {
    width: 1px;
    height: 100%;
}

/* Radar Sweep */
.radar-sweep {
    position: absolute;
    width: 50%;
    height: 1px;
    top: 50%;
    left: 50%;
    transform-origin: 0 50%;
    background: linear-gradient(90deg, 
        rgba(81, 10, 148, 0.8) 0%, 
        rgba(81, 10, 148, 0.6) 50%, 
        transparent 100%);
    animation: radarSweep 3s linear infinite;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Threat Indicators */
.threat-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
}

.threat-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(81, 10, 148, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(81, 10, 148, 0.6);
    animation: threatBlink 2s ease infinite;
}

.threat-dot-1 { top: 25%; left: 30%; animation-delay: 0.2s; }
.threat-dot-2 { top: 45%; right: 25%; animation-delay: 0.8s; }
.threat-dot-3 { bottom: 30%; left: 40%; animation-delay: 1.2s; }
.threat-dot-4 { top: 60%; left: 65%; animation-delay: 1.6s; }
.threat-dot-5 { bottom: 45%; right: 35%; animation-delay: 2.0s; }

@keyframes threatBlink {
    0%, 50%, 100% { opacity: 0.4; transform: scale(1); }
    25% { opacity: 1; transform: scale(1.5); }
}

/* Scan Lines */
.scan-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 98%, rgba(81, 10, 148, 0.1) 100%),
        linear-gradient(0deg, transparent 48%, rgba(81, 10, 148, 0.05) 50%, transparent 52%);
    background-size: 100% 4px, 100% 2px;
    animation: scanMove 2s linear infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 4px, 0 2px; }
}

/* Scan Text Effect */
.scan-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);
    animation: scanGlow 3s ease-in-out infinite alternate;
}

@keyframes scanGlow {
    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);
        filter: brightness(1);
    }
    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);
        filter: brightness(1.2);
    }
}

.scan-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(81, 10, 148, 0.8) 50%, 
        transparent 100%);
    animation: scanLine 2s ease infinite;
}

@keyframes scanLine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(0); opacity: 1; }
}

/* Assessment Introduction */
.assessment-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);
}

/* Assessment Types Section */
.assessment-types {
    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; }
}

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

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

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

.card-header {
    padding: 2rem;
    background: rgba(81, 10, 148, 0.1);
    border-bottom: 1px solid rgba(81, 10, 148, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.card-scanner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 30%, 
        transparent 70%, 
        var(--accent) 100%);
    animation: cardScan 3s linear infinite;
}

@keyframes cardScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(81, 10, 148, 0.2);
    border: 2px solid rgba(81, 10, 148, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.card-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    flex: 1;
}

.partnership-badge,
.direct-badge,
.analysis-badge,
.capability-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
}

.partnership-badge {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
    color: #ffa500;
}

.direct-badge {
    background: rgba(0, 255, 127, 0.1);
    border-color: rgba(0, 255, 127, 0.5);
    color: #00ff7f;
}

.analysis-badge {
    background: rgba(135, 206, 235, 0.1);
    border-color: rgba(135, 206, 235, 0.5);
    color: #87ceeb;
}

.capability-badge {
    background: rgba(147, 112, 219, 0.1);
    border-color: rgba(147, 112, 219, 0.5);
    color: #9370db;
}

.card-content {
    padding: 2rem;
}

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

.service-breakdown,
.delivery-approach {
    margin-bottom: 2rem;
}

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

.service-items {
    display: grid;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.assessment-card:hover .service-item {
    color: var(--text-primary);
}

.item-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

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

/* Assessment Process */
.assessment-process {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.process-flow {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    left: 60px;
    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%);
    z-index: 1;
}

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

.step-indicator {
    width: 120px;
    height: 120px;
    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;
    transition: all 0.3s ease;
}

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

.step-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: stepPulse 3s ease infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    z-index: 1;
}

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

.process-step:hover .step-content {
    border-color: var(--accent);
    background: rgba(17, 17, 17, 0.8);
    transform: translateX(10px);
}

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

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

.step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.deliverable {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    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;
}

.process-step:hover .deliverable {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(81, 10, 148, 0.3);
}

/* Assessment Value */
.assessment-value {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

.value-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assessment-layers {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.layer:hover {
    border-color: rgba(81, 10, 148, 0.6);
    transform: translateY(-5px);
}

.layer-icon {
    width: 40px;
    height: 40px;
    color: #510a94;
}

.layer span {
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

.convergence-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    color: #510a94;
    animation: pulseArrow 2s ease-in-out infinite;
}

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

.unified-result {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(81, 10, 148, 0.2) 0%, rgba(81, 10, 148, 0.1) 100%);
    border: 2px solid rgba(81, 10, 148, 0.4);
    border-radius: 12px;
}

.result-icon {
    width: 50px;
    height: 50px;
    color: #510a94;
}

.unified-result span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.layer {
    position: absolute;
    border: 2px solid rgba(81, 10, 148, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: layerPulse 4s ease infinite;
}

.layer-1 {
    width: 80%;
    height: 80%;
    animation-delay: 0s;
}

.layer-2 {
    width: 60%;
    height: 60%;
    animation-delay: 1s;
}

.layer-3 {
    width: 40%;
    height: 40%;
    animation-delay: 2s;
}

.layer-4 {
    width: 20%;
    height: 20%;
    animation-delay: 3s;
}

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

.layer-label {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.convergence-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(81, 10, 148, 0.8);
    animation: convergencePulse 2s ease infinite;
}

@keyframes convergencePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.5); }
}

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

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

.value-points {
    display: grid;
    gap: 1.5rem;
}

.value-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

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

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

.point-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

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

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

.outcome-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(81, 10, 148, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.outcome-visual {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-icon {
    width: 60px;
    height: 60px;
    color: #510a94;
    padding: 15px;
    background: rgba(81, 10, 148, 0.1);
    border: 2px solid rgba(81, 10, 148, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.outcome-item:hover .outcome-icon {
    border-color: #510a94;
    background: rgba(81, 10, 148, 0.2);
    transform: scale(1.05);
}

.outcome-metric {
    position: absolute;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

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

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

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

.assessment-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(81, 10, 148, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(81, 10, 148, 0.1) 1px, transparent 2px);
    background-size: 50px 50px;
    animation: ctaPattern 20s linear infinite;
}

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

.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) {
    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .assessment-hero {
        min-height: 50vh;
    }
    
    .scan-text {
        font-size: 2.5rem;
    }
    
    .radar-container {
        width: 300px;
        height: 300px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .step-indicator {
        width: 80px;
        height: 80px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .outcome-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}