/* ================================
   TECHNICAL PAGE SPECIFIC STYLES
   ================================ */

/* CSS Variables */
:root {
    --xw-blue: #003366;
    --xw-accent: #FF6B00;
    --xw-dark: #001a33;
    --xw-light: #f8f9fa;
}

/* Technical Navigation */
.technical-nav-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #dee2e6;
}

.technical-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tech-nav-item i {
    margin-right: 0.5rem;
    color: #FF6B00;
}

.tech-nav-item:hover {
    background: #FF6B00;
    color: white;
    border-color: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.tech-nav-item:hover i {
    color: white;
}

/* Technical Sections */
.technical-section {
    padding: 4rem 0;
}

.technical-section.bg-light {
    background: #f8f9fa;
}

.technical-document {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.document-header {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 2rem;
    position: relative;
}

.document-header h2 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.document-meta {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
}

.document-meta span {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.document-content {
    padding: 3rem;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.summary-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B00;
}

.summary-card h4 {
    color: #003366;
    margin-bottom: 1rem;
    font-weight: 600;
}

.summary-card p {
    font-weight: 500;
    margin-bottom: 1rem;
}

.summary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.summary-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Technical Highlights */
.technical-highlights {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.highlight-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B00;
    display: block;
}

.highlight-label {
    font-weight: 600;
    margin: 0.5rem 0;
}

.highlight-detail {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Architecture Diagram */
.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.arch-component {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
}

.arch-component i {
    font-size: 2rem;
    color: #FF6B00;
    margin-bottom: 0.5rem;
}

.arch-component h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #003366;
}

.arch-component p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.arch-arrow {
    font-size: 1.5rem;
    color: #FF6B00;
    font-weight: bold;
}

/* Technology Stack */
.stack-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stack-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #FF6B00;
}

.stack-category h4 {
    color: #003366;
    margin-bottom: 1.5rem;
}

.stack-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.stack-category li:last-child {
    border-bottom: none;
}

/* Code Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B00;
    display: block;
}

.metric-label {
    font-weight: 600;
    color: #003366;
    margin: 0.5rem 0;
}

.metric-detail {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Performance Cards */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.perf-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.perf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
}

.perf-card.primary::before { background: #007bff; }
.perf-card.success::before { background: #28a745; }
.perf-card.info::before { background: #17a2b8; }
.perf-card.warning::before { background: #ffc107; }

.perf-icon {
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.perf-icon i {
    font-size: 1.5rem;
    color: #FF6B00;
}

.perf-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    display: block;
}

.perf-label {
    font-weight: 600;
    color: #495057;
    margin: 0.5rem 0;
}

.perf-detail {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Processing Times */
.processing-times {
    margin-top: 1rem;
}

.time-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.size {
    min-width: 120px;
    font-weight: 500;
}

.time-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B00, #FF8533);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.time {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    color: #FF6B00;
}

/* API Endpoints */
.api-times {
    margin-top: 1rem;
}

.api-endpoint {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.endpoint {
    font-family: 'Courier New', monospace;
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* SLA Tiers */
.sla-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sla-tier {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.sla-tier.professional {
    border-color: #FF6B00;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
    transform: scale(1.05);
}

.sla-tier h4 {
    color: #003366;
    margin-bottom: 1.5rem;
}

.sla-tier.professional h4 {
    color: #FF6B00;
}

.sla-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sla-tier li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

/* Security Layers */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-layer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.layer-icon {
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.layer-icon i {
    font-size: 2rem;
    color: #FF6B00;
}

.security-layer h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.security-layer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.security-layer li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.security-layer li::before {
    content: "🔒";
    position: absolute;
    left: 0;
}

/* Vulnerability Status */
.vuln-status {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.vuln-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 150px;
}

.vuln-item.success {
    border-left: 4px solid #28a745;
}

.vuln-item.warning {
    border-left: 4px solid #ffc107;
}

.vuln-item.info {
    border-left: 4px solid #17a2b8;
}

.vuln-level {
    font-weight: 600;
    color: #495057;
    display: block;
}

.vuln-count {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    display: block;
    margin: 0.5rem 0;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.compliance-icon {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.compliance-icon i {
    font-size: 2rem;
    color: #FF6B00;
}

.compliance-item h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status.ready {
    background: #e8f4fd;
    color: #0c5aa6;
}

.status.compliant {
    background: #d4edda;
    color: #155724;
}

/* Testing Coverage */
.testing-metrics {
    margin-top: 2rem;
}

.test-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.test-category h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.coverage-bar {
    position: relative;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.coverage-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #34ce57);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.coverage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: white;
    font-size: 0.875rem;
}

/* Deployment Tiers */
.deployment-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tier-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
}

.tier-card.standard {
    border-color: #FF6B00;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.2);
}

.tier-card h4 {
    background: #003366;
    color: white;
    padding: 1.5rem;
    margin: 0;
}

.tier-card.standard h4 {
    background: #FF6B00;
}

.tier-specs {
    padding: 2rem;
}

.tier-specs ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.tier-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.tier-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6B00;
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Pipeline Flow */
.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.pipeline-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-icon {
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: #FF6B00;
}

.pipeline-arrow {
    font-size: 1.5rem;
    color: #FF6B00;
    font-weight: bold;
}

/* Monitoring Grid */
.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.monitoring-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B00;
}

.monitoring-card h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.monitoring-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.monitoring-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.monitoring-card li::before {
    content: "📊";
    position: absolute;
    left: 0;
}

/* Recovery Metrics */
.recovery-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.recovery-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    min-width: 180px;
}

.recovery-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B00;
    display: block;
}

.recovery-label {
    font-weight: 600;
    color: #003366;
    margin-top: 0.5rem;
}

/* Integration Steps */
.integration-steps {
    margin-top: 2rem;
}

.step-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #FF6B00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-card h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.code-sample {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #FF6B00;
}

.code-sample code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: #003366;
}

/* Risk Assessment */
.risk-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.risk-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.risk-category h4 {
    padding: 1.5rem;
    margin: 0;
    color: white;
}

.risk-category.high h4 {
    background: #dc3545;
}

.risk-category.medium h4 {
    background: #ffc107;
    color: #212529;
}

.risk-items {
    padding: 1.5rem;
}

.risk-item {
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.risk-item:last-child {
    margin-bottom: 0;
}

.risk-item h5 {
    color: #003366;
    margin-bottom: 0.5rem;
}

.risk-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.probability {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.probability.low {
    background: #d4edda;
    color: #155724;
}

.probability.medium {
    background: #fff3cd;
    color: #856404;
}

.mitigation {
    padding: 0.25rem 0.75rem;
    background: #e8f4fd;
    color: #0c5aa6;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Mitigation Strategies */
.mitigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mitigation-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #28a745;
}

.mitigation-item h4 {
    color: #003366;
    margin-bottom: 1rem;
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.download-icon {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.download-icon i {
    font-size: 2rem;
    color: #FF6B00;
}

.download-card h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background: #FF6B00;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-btn:hover {
    background: #e55a00;
    color: white;
    transform: translateY(-1px);
}

/* Technical Contact */
.technical-contact {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
}

.technical-contact h2 {
    margin-bottom: 1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-option {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.contact-option i {
    font-size: 2rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.contact-option h4 {
    margin-bottom: 0.5rem;
}

.contact-cta {
    margin-top: 2rem;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.standard-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.standard-item h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.bg-success {
    background-color: #d4edda !important;
    color: #155724;
}

/* Table Styles */
.table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.table th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #003366;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .technical-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-nav-item {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .document-content {
        padding: 2rem;
    }
    
    .document-meta {
        position: static;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .architecture-flow {
        flex-direction: column;
    }
    
    .arch-arrow {
        transform: rotate(90deg);
    }
    
    .pipeline-flow {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .summary-grid,
    .highlights-grid,
    .stack-categories,
    .metrics-grid,
    .performance-grid,
    .security-grid,
    .compliance-grid,
    .deployment-tiers,
    .monitoring-grid,
    .downloads-grid,
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .sla-tiers {
        grid-template-columns: 1fr;
    }
    
    .sla-tier.professional {
        transform: none;
    }
    
    .tier-card.standard {
        transform: none;
    }
    
    .vuln-status,
    .recovery-metrics {
        flex-direction: column;
        align-items: center;
    }
    
    .risk-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .technical-section {
        padding: 2rem 0;
    }
    
    .document-header {
        padding: 1.5rem;
    }
    
    .document-content {
        padding: 1.5rem;
    }
    
    .technical-highlights {
        padding: 2rem;
    }
    
    .summary-card,
    .stack-category,
    .monitoring-card,
    .test-category,
    .mitigation-item,
    .standard-item {
        padding: 1.5rem;
    }
    
    .perf-card,
    .compliance-item,
    .download-card {
        padding: 1.5rem;
    }
    
    .technical-contact {
        padding: 2rem;
    }
    
    .step-card {
        padding: 1.5rem;
        padding-left: 3rem;
    }
    
    .step-number {
        left: 1rem;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .technical-nav-section,
    .download-card,
    .technical-contact {
        display: none;
    }
    
    .technical-section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .document-header {
        background: #003366 !important;
        -webkit-print-color-adjust: exact;
    }
    
    .perf-card,
    .compliance-item,
    .security-layer {
        break-inside: avoid;
    }
}