/**
 * Scoping Data Extraction Section
 * Styles for the animated document → structured cards visualization
 */

/* ============================================
   Section Container
============================================ */
.scoping-extraction-section {
    padding: 90px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.scoping-extraction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(51,102,255,0.15)"/><circle cx="80" cy="40" r="0.8" fill="rgba(0,212,170,0.15)"/><circle cx="40" cy="80" r="1" fill="rgba(124,58,237,0.15)"/><circle cx="65" cy="15" r="0.6" fill="rgba(245,158,11,0.15)"/></svg>');
    background-size: 120px 120px;
    animation: extraction-particles 25s linear infinite;
    pointer-events: none;
}

@keyframes extraction-particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-120px); }
}

/* ============================================
   Section Header / Intro
============================================ */
.extraction-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.extraction-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(51, 102, 255, 0.15);
    border: 1px solid rgba(51, 102, 255, 0.3);
    border-radius: 50px;
    color: #00bfff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.extraction-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.extraction-intro p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Main Layout Container
============================================ */
.extraction-layout {
    position: relative;
    z-index: 2;
}

/* ============================================
   Left Side: Document Card
============================================ */
.extraction-document {
    background: #2a2e3d;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.document-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #2a2e3d;
    border-bottom: 1px solid #3a3f50;
}

.document-header .doc-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3366FF 0%, #00bfff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.document-header .doc-title {
    font-size: 14px;
    font-weight: 700;
    color: #e8ecf1;
    margin: 0;
    letter-spacing: 0.3px;
}

.document-header .doc-subtitle {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
}

.document-body {
    padding: 20px 22px;
    background: #f0f2f5;
}

.document-body p {
    font-size: 13px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

.document-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   Highlight Spans (in document)
============================================ */
.extract-highlight {
    position: relative;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
    cursor: default;
    transition: all 0.3s ease;
}

.extract-highlight.extract-scope {
    color: #2855cc;
    background: rgba(51, 102, 255, 0.1);
    border-bottom: 2px solid rgba(51, 102, 255, 0.4);
}

.extract-highlight.extract-services {
    color: #00a884;
    background: rgba(0, 212, 170, 0.1);
    border-bottom: 2px solid rgba(0, 212, 170, 0.4);
}

.extract-highlight.extract-goals {
    color: #6429c0;
    background: rgba(124, 58, 237, 0.1);
    border-bottom: 2px solid rgba(124, 58, 237, 0.4);
}

.extract-highlight.extract-prereqs {
    color: #b57a08;
    background: rgba(245, 158, 11, 0.1);
    border-bottom: 2px solid rgba(245, 158, 11, 0.4);
}

/* Hover glow */
.extract-highlight:hover {
    transform: translateY(-1px);
}

.extract-highlight.extract-scope:hover {
    background: rgba(51, 102, 255, 0.18);
    box-shadow: 0 2px 8px rgba(51, 102, 255, 0.2);
}

.extract-highlight.extract-services:hover {
    background: rgba(0, 212, 170, 0.18);
    box-shadow: 0 2px 8px rgba(0, 212, 170, 0.2);
}

.extract-highlight.extract-goals:hover {
    background: rgba(124, 58, 237, 0.18);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.extract-highlight.extract-prereqs:hover {
    background: rgba(245, 158, 11, 0.18);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* Active state for animation */
.extract-highlight.active {
    transform: scale(1.05);
}

.extract-highlight.extract-scope.active {
    background: rgba(51, 102, 255, 0.25);
    box-shadow: 0 0 12px rgba(51, 102, 255, 0.35);
}

.extract-highlight.extract-services.active {
    background: rgba(0, 212, 170, 0.25);
    box-shadow: 0 0 12px rgba(0, 212, 170, 0.35);
}

.extract-highlight.extract-goals.active {
    background: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.35);
}

.extract-highlight.extract-prereqs.active {
    background: rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}

/* ============================================
   Right Side: Extracted Data Cards
============================================ */
.extraction-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.extraction-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(30px);
}

.extraction-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.extraction-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

/* Card color variants */
.extraction-card.card-scope {
    border-left-color: #3366FF;
}

.extraction-card.card-services {
    border-left-color: #00d4aa;
}

.extraction-card.card-goals {
    border-left-color: #7c3aed;
}

.extraction-card.card-prereqs {
    border-left-color: #f59e0b;
}

/* Hover states per card */
.extraction-card.card-scope:hover {
    box-shadow: 0 4px 20px rgba(51, 102, 255, 0.15);
}

.extraction-card.card-services:hover {
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.15);
}

.extraction-card.card-goals:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.extraction-card.card-prereqs:hover {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

/* Card Header */
.extraction-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.extraction-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.card-scope .extraction-card-icon {
    background: rgba(51, 102, 255, 0.2);
    color: #5c8aff;
}

.card-services .extraction-card-icon {
    background: rgba(0, 212, 170, 0.2);
    color: #00d4aa;
}

.card-goals .extraction-card-icon {
    background: rgba(124, 58, 237, 0.2);
    color: #a78bfa;
}

.card-prereqs .extraction-card-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.extraction-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Card Tags */
.extraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Grouped tags for Scope Resources */
.extraction-tags-grouped {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scope-type-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.scope-type-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    min-width: 95px;
    padding-top: 6px;
}

.scope-type-label i {
    font-size: 10px;
    opacity: 0.6;
}

.scope-type-group .extraction-tags {
    flex: 1;
}

.extraction-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.3s ease;
}

/* Tag color variants */
.card-scope .extraction-tag {
    background: rgba(51, 102, 255, 0.12);
    color: #93b4ff;
    border: 1px solid rgba(51, 102, 255, 0.2);
}

/* Scope resource type variants */
.card-scope .extraction-tag.scope-type-app {
    background: rgba(51, 102, 255, 0.15);
    color: #93b4ff;
    border-color: rgba(51, 102, 255, 0.3);
}

.card-scope .extraction-tag.scope-type-api {
    background: rgba(0, 191, 255, 0.12);
    color: #7dd3fc;
    border-color: rgba(0, 191, 255, 0.25);
}

.card-scope .extraction-tag.scope-type-repo {
    background: rgba(168, 85, 247, 0.12);
    color: #c4b5fd;
    border-color: rgba(168, 85, 247, 0.25);
}

.card-scope .extraction-tag.scope-type-infra {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.2);
}

.card-services .extraction-tag {
    background: rgba(0, 212, 170, 0.12);
    color: #5ee8c5;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.card-goals .extraction-tag {
    background: rgba(124, 58, 237, 0.12);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.card-prereqs .extraction-tag {
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Tag hover */
.extraction-tag:hover {
    transform: translateY(-1px);
}

.card-scope .extraction-tag:hover {
    background: rgba(51, 102, 255, 0.22);
}

.card-services .extraction-tag:hover {
    background: rgba(0, 212, 170, 0.22);
}

.card-goals .extraction-tag:hover {
    background: rgba(124, 58, 237, 0.22);
}

.card-prereqs .extraction-tag:hover {
    background: rgba(245, 158, 11, 0.22);
}

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

.extraction-connections path {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extraction-connections path.visible {
    opacity: 0.5;
}

.extraction-connections path.visible.emphasized {
    opacity: 0.9;
    stroke-width: 3;
    filter: drop-shadow(0 0 4px currentColor);
}

.extraction-connections path.visible.dimmed {
    opacity: 0.15;
}

.extraction-connections path.path-scope {
    stroke: #3366FF;
}

.extraction-connections path.path-services {
    stroke: #00d4aa;
}

.extraction-connections path.path-goals {
    stroke: #7c3aed;
}

.extraction-connections path.path-prereqs {
    stroke: #f59e0b;
}

/* ============================================
   Interactivity: Highlight ↔ Card linking
============================================ */
.extraction-card.highlighted {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px) scale(1.01);
}

.extraction-card.card-scope.highlighted {
    box-shadow: 0 0 20px rgba(51, 102, 255, 0.2);
    border-left-width: 5px;
}

.extraction-card.card-services.highlighted {
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
    border-left-width: 5px;
}

.extraction-card.card-goals.highlighted {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    border-left-width: 5px;
}

.extraction-card.card-prereqs.highlighted {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    border-left-width: 5px;
}

/* ============================================
   Responsive
============================================ */


/* ============================================
   Customer Survey Section (Light)
============================================ */
.customer-survey-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.customer-survey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(51, 102, 255, 0.15) 50%, transparent 100%);
}

.customer-survey-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(51, 102, 255, 0.15) 50%, transparent 100%);
}

/* Section Intro */
.survey-section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.survey-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(51, 102, 255, 0.08);
    border: 1px solid rgba(51, 102, 255, 0.18);
    border-radius: 50px;
    color: #3366FF;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.survey-section-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.survey-section-intro p {
    font-size: 17px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 3-Step Flow */
.survey-flow {
    position: relative;
}

.survey-flow .row {
    position: relative;
}

.survey-flow-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.survey-flow-step:hover {
    border-color: rgba(51, 102, 255, 0.3);
    box-shadow: 0 12px 40px rgba(51, 102, 255, 0.1);
    transform: translateY(-4px);
}

.survey-flow-step.step-highlight {
    border-color: rgba(51, 102, 255, 0.25);
    box-shadow: 0 8px 30px rgba(51, 102, 255, 0.08);
}

/* Step Number Badge */
.step-number-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #3366FF;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(51, 102, 255, 0.3);
}

/* Step Icon */
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.step-icon-send {
    background: linear-gradient(135deg, rgba(51, 102, 255, 0.1) 0%, rgba(51, 102, 255, 0.05) 100%);
    color: #3366FF;
}

.step-icon-fill {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
    color: #00b894;
}

.step-icon-data {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    color: #7c3aed;
}

.survey-flow-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.survey-flow-step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Step Connectors (arrows between cards) */
.survey-flow-connector {
    display: none;
}

@media (min-width: 992px) {
    .survey-flow-connector {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        z-index: 3;
        opacity: 0.35;
    }

    .survey-flow-connector svg {
        width: 100%;
        height: auto;
    }

    .survey-flow-connector-1 {
        left: calc(33.333% - 20px);
    }

    .survey-flow-connector-2 {
        left: calc(66.666% - 20px);
    }
}

/* Responsive — Customer Survey */
@media (max-width: 991px) {
    .customer-survey-section {
        padding: 70px 0;
    }

    .survey-section-intro h2 {
        font-size: 28px;
    }

    .survey-flow-step {
        margin-bottom: 30px;
    }

    .survey-flow .col-lg-4:last-child .survey-flow-step {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .customer-survey-section {
        padding: 50px 0;
    }

    .survey-section-intro h2 {
        font-size: 24px;
    }

    .survey-section-intro p {
        font-size: 15px;
    }

    .survey-flow-step {
        padding: 30px 20px 22px;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}


/* ============================================
   Section 2: Deliverables Section
============================================ */
.deliverables-section {
    padding: 100px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.deliverables-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="0.8" fill="rgba(51,102,255,0.12)"/><circle cx="70" cy="60" r="1" fill="rgba(0,212,170,0.12)"/><circle cx="50" cy="90" r="0.7" fill="rgba(124,58,237,0.10)"/></svg>');
    background-size: 140px 140px;
    animation: extraction-particles 30s linear infinite;
    pointer-events: none;
}

.deliverables-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.deliverables-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: #00d4aa;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#deliverablesPanelCol {
padding-right: 0px;
}

.deliverables-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.deliverables-intro p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.deliverables-layout {
    position: relative;
    z-index: 2;
}

/* ============================================
   Left Side: Project Summary Panel
============================================ */
.project-summary-panel {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.panel-accent {
    height: 4px;
    background: linear-gradient(90deg, #3366FF 0%, #00d4aa 50%, #7c3aed 100%);
    border-radius: 14px 14px 0 0;
}

.panel-branding {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(51, 102, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.panel-branding i {
    color: #5c8aff;
    font-size: 13px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #3366FF 0%, #00bfff 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.panel-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.panel-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin: 2px 0 0;
}

.panel-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.25);
    color: #00d4aa;
    font-size: 11px;
    font-weight: 600;
}

.panel-status i {
    font-size: 8px;
}

.panel-body {
    padding: 18px 22px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.summary-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.summary-value.highlight-teal {
    color: #00d4aa;
}

.summary-value.highlight-blue {
    color: #5c8aff;
}

.panel-services {
    padding: 14px 22px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-services-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.service-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.service-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d4aa;
}

.service-loe {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0 0 14px 14px;
}

.panel-footer .summary-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.panel-footer .summary-value {
    font-size: 16px;
    font-weight: 800;
    color: #00d4aa;
}

/* ============================================
   SVG Connection Arrows (Panel → Cards)
============================================ */
.deliverables-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.deliverables-connections path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deliverables-connections path.visible {
    opacity: 1;
}

.deliverables-connections path.flowing {
    animation: arrow-flow 2s linear infinite;
}

@keyframes arrow-flow {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

/* ============================================
   Right Side: Deliverable Cards Grid
============================================ */
.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

/* ============================================
   Deliverable Cards — Generated Output Files
============================================ */
.deliverable-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 20px 18px 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--card-accent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.deliverable-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
}

.deliverable-card:hover::before {
    opacity: 1;
}



.deliverable-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.deliverable-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.deliverable-icon.icon-proposal {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.deliverable-icon.icon-scoping {
    background: rgba(51, 102, 255, 0.15);
    color: #5c8aff;
}

.deliverable-icon.icon-kickoff {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.deliverable-icon.icon-sales {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
}

.format-badges {
    display: flex;
    gap: 4px;
}

.file-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.file-type-badge.badge-pdf {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.file-type-badge.badge-docx {
    background: rgba(51, 102, 255, 0.2);
    color: #5c8aff;
    border: 1px solid rgba(51, 102, 255, 0.3);
}

.file-type-badge.badge-pptx {
    background: rgba(249, 115, 22, 0.2);
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.deliverable-card-info {
    flex: 1;
    min-width: 0;
}

.deliverable-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
}

.deliverable-desc {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Shimmer animation */
@keyframes deliverable-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.deliverable-card.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.06) 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: deliverable-shimmer 1.5s ease-in-out;
    pointer-events: none;
    border-radius: 12px;
}

/* Card accent colors */
.deliverable-card.card-proposal { --card-accent: #ef4444; }
.deliverable-card.card-scoping { --card-accent: #3366FF; }
.deliverable-card.card-kickoff { --card-accent: #f97316; }
.deliverable-card.card-sales { --card-accent: #7c3aed; }

.deliverable-card.card-proposal:hover {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.12);
}

.deliverable-card.card-scoping:hover {
    box-shadow: 0 8px 30px rgba(51, 102, 255, 0.12);
}

.deliverable-card.card-kickoff:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.12);
}

.deliverable-card.card-sales:hover {
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
}

/* ============================================
   Responsive — Section 1
============================================ */
@media (max-width: 991px) {
    .scoping-extraction-section {
        padding: 140px 0 70px;
    }

    .extraction-intro h2 {
        font-size: 28px;
    }

    .extraction-document {
        margin-bottom: 40px;
    }

    .extraction-cards {
        height: auto;
    }

    .extraction-connections {
        display: none;
    }
}

@media (max-width: 767px) {
    .scoping-extraction-section {
        padding: 100px 0 50px;
    }

    .extraction-intro h2 {
        font-size: 24px;
    }

    .extraction-intro p {
        font-size: 15px;
    }

    .document-body {
        padding: 16px;
    }

    .document-body p {
        font-size: 12.5px;
    }

    .extraction-card {
        padding: 16px;
    }

    .extraction-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}



/* ============================================
   Responsive — Section 2 (Deliverables)
============================================ */
@media (max-width: 991px) {
    .deliverables-section {
        padding: 70px 0;
    }

    .deliverables-intro h2 {
        font-size: 28px;
    }

    .project-summary-panel {
        margin-bottom: 20px;
    }

    .deliverables-connections {
        display: none;
    }

}

@media (max-width: 767px) {
    .deliverables-section {
        padding: 50px 0;
    }

    .deliverables-intro h2 {
        font-size: 24px;
    }

    .deliverables-intro p {
        font-size: 15px;
    }

    .deliverable-card {
        padding: 16px 14px;
    }

    .panel-body {
        padding: 14px 16px;
    }

    .panel-services {
        padding: 12px 16px 14px;
    }

    .panel-footer {
        padding: 12px 16px;
    }
}

/* ============================================
   Section 3: Exports Section
============================================ */
.exports-section {
    padding: 0 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.exports-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="40" r="0.8" fill="rgba(51,102,255,0.10)"/><circle cx="75" cy="70" r="1" fill="rgba(0,212,170,0.10)"/><circle cx="55" cy="15" r="0.7" fill="rgba(124,58,237,0.08)"/></svg>');
    background-size: 160px 160px;
    animation: extraction-particles 35s linear infinite;
    pointer-events: none;
}

/* Intro */
.exports-intro {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.exports-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.exports-intro p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.exports-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 20px;
}

.exports-badge i {
    font-size: 12px;
}

/* Layout */
.exports-layout {
    position: relative;
    z-index: 1;
}

/* ============================================
   Pentahub App Mockup
============================================ */
.pentahub-app-mockup {
    background: rgba(15, 15, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: visible;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.app-titlebar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px 12px 0 0;
}

.app-window-dots {
    display: flex;
    gap: 6px;
}

.app-window-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.app-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.app-frame {
    display: flex;
    min-height: 400px;
}

/* Sidebar */
.app-sidebar {
    width: 52px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 4px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    cursor: default;
    transition: color 0.2s ease;
    position: relative;
}

.sidebar-item span {
    font-size: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sidebar-item.active {
    color: #10b981;
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #10b981;
    border-radius: 0 2px 2px 0;
}

/* Content Area */
.app-content {
    flex: 1;
    padding: 14px;
    overflow: hidden;
}

.app-project-header {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-project-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
}

.app-project-client {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 8px;
}

.app-project-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.app-rating {
    display: flex;
    gap: 2px;
    font-size: 10px;
    color: #f59e0b;
}

.app-rating .far {
    color: rgba(245, 158, 11, 0.3);
}

/* Data Sections */
.app-data-section {
    margin-bottom: 12px;
}

.app-data-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-data-label i {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
}

.app-data-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.app-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-tag small {
    font-size: 9px;
    color: rgba(0, 212, 170, 0.7);
    font-weight: 600;
}

.app-tag.tag-scope {
    background: rgba(51, 102, 255, 0.08);
    border-color: rgba(51, 102, 255, 0.15);
    color: rgba(92, 138, 255, 0.8);
}

.app-data-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.app-list-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.app-list-item i {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
}

.app-list-item.checked i {
    color: #10b981;
}

.app-data-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 10px;
}

.app-loe-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-loe-value {
    font-size: 14px;
    font-weight: 800;
    color: #00d4aa;
}

/* ============================================
   Export Engine (half-circle on mockup edge)
============================================ */
.export-engine {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.export-engine-node {
    width: 56px;
    height: 80px;
    border-radius: 0 40px 40px 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(51, 102, 255, 0.2) 100%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 18px;
    position: relative;
    box-shadow: 4px 0 20px rgba(16, 185, 129, 0.15), 8px 0 40px rgba(51, 102, 255, 0.08);
    backdrop-filter: blur(8px);
}

.export-engine-node::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    width: 62px;
    border-radius: 0 46px 46px 0;
    border: 1px dashed rgba(16, 185, 129, 0.2);
    border-left: none;
}

.export-engine-node .fa-cog {
    animation: engine-spin 8s linear infinite;
}

/* ============================================
   SVG Connection Lines (Exports)
============================================ */
.exports-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.exports-connections path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.exports-connections path.visible {
    opacity: 1;
}

.exports-connections path.flowing {
    animation: arrow-flow 2s linear infinite;
}

/* ============================================
   Export Cards Grid
============================================ */
.exports-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.export-group-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 2px;
    padding-left: 4px;
}

.export-group-label.group-technical {
    margin-top: 10px;
}

/* ============================================
   Export Cards
============================================ */
.export-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px 14px 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.export-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--card-accent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.export-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.export-card:hover::before {
    opacity: 1;
}

.export-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.icon-ex-proposal { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.icon-ex-scoping { background: rgba(51, 102, 255, 0.15); color: #5c8aff; }
.icon-ex-sales { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.icon-ex-kickoff { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.icon-ex-json { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.icon-ex-markdown { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.icon-ex-nmap { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.icon-ex-nessus { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.icon-ex-burp { background: rgba(249, 115, 22, 0.15); color: #fb923c; }

.export-card-info {
    flex: 1;
    min-width: 0;
}

.export-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
}

.export-desc {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Card accent colors */
.export-card.card-ex-proposal { --card-accent: #ef4444; }
.export-card.card-ex-scoping { --card-accent: #3366FF; }
.export-card.card-ex-sales { --card-accent: #7c3aed; }
.export-card.card-ex-kickoff { --card-accent: #f97316; }
.export-card.card-ex-json { --card-accent: #10b981; }
.export-card.card-ex-markdown { --card-accent: #6366f1; }
.export-card.card-ex-nmap { --card-accent: #f59e0b; }
.export-card.card-ex-nessus { --card-accent: #ec4899; }
.export-card.card-ex-burp { --card-accent: #f97316; }

.export-card.card-ex-proposal:hover { box-shadow: 0 6px 25px rgba(239, 68, 68, 0.1); }
.export-card.card-ex-scoping:hover { box-shadow: 0 6px 25px rgba(51, 102, 255, 0.1); }
.export-card.card-ex-sales:hover { box-shadow: 0 6px 25px rgba(124, 58, 237, 0.1); }
.export-card.card-ex-kickoff:hover { box-shadow: 0 6px 25px rgba(249, 115, 22, 0.1); }
.export-card.card-ex-json:hover { box-shadow: 0 6px 25px rgba(16, 185, 129, 0.1); }
.export-card.card-ex-markdown:hover { box-shadow: 0 6px 25px rgba(99, 102, 241, 0.1); }
.export-card.card-ex-nmap:hover { box-shadow: 0 6px 25px rgba(245, 158, 11, 0.1); }
.export-card.card-ex-nessus:hover { box-shadow: 0 6px 25px rgba(236, 72, 153, 0.1); }
.export-card.card-ex-burp:hover { box-shadow: 0 6px 25px rgba(249, 115, 22, 0.1); }

/* Technical export file type badges */
.file-type-badge.badge-json {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.file-type-badge.badge-md {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.file-type-badge.badge-hosts {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.file-type-badge.badge-nessus {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* Shimmer for export cards */
.export-card.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.06) 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: deliverable-shimmer 1.5s ease-in-out;
    pointer-events: none;
    border-radius: 10px;
}

/* ============================================
   Responsive — Section 3 (Exports)
============================================ */
@media (max-width: 991px) {
    .exports-section {
        padding: 0 0 70px;
    }

    .exports-intro h2 {
        font-size: 28px;
    }

    .pentahub-app-mockup {
        margin-bottom: 30px;
    }

    .exports-connections {
        display: none;
    }

    .export-engine {
        display: none;
    }
}

@media (max-width: 767px) {
    .exports-section {
        padding: 0 0 50px;
    }

    .exports-intro h2 {
        font-size: 24px;
    }

    .exports-intro p {
        font-size: 15px;
    }

    .export-card {
        padding: 12px 12px 12px 10px;
    }

    .app-sidebar {
        width: 40px;
    }

    .sidebar-item span {
        display: none;
    }

    .app-content {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .scope-type-label {
        min-width: auto;
    }
}
