/* SIEM Page Specific Styles */

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: white;
}

.intro-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-section > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.intro-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.intro-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.intro-card ul {
    list-style: none;
    padding: 0;
}

.intro-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.intro-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.mistakes-box {
    background: linear-gradient(135deg, #FFF3CD 0%, #FFE8A1 100%);
    border: 2px solid #FFC107;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.mistakes-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #856404;
    margin-bottom: 1rem;
}

.mistakes-box ul {
    list-style: none;
    padding: 0;
}

.mistakes-box li {
    padding: 0.5rem 0;
    color: #856404;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.mistakes-box li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb-container {
    background: var(--light);
    padding: 1rem 0;
    margin-top: 72px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 3rem;
    color: white;
}

.hero-content-siem {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-siem h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: var(--light);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.calculator-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.calculator-inputs h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Enhanced Input Group with Sliders */
.input-group-enhanced {
    margin-bottom: 2.5rem;
    position: relative;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.input-header label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.input-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.2s;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.input-help {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

.label-text {
    flex: 1;
}

.label-help {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: help;
    position: relative;
}

.label-help:hover + .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.input-suggestions button {
    padding: 0.4rem 1rem;
    background: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.input-suggestions button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calc-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.calc-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.calc-button-enhanced {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

.calc-button-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.enhanced-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
    cursor: pointer;
    margin-top: 0.5rem;
}

.enhanced-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.calculator-results {
    background: var(--light);
    border-radius: 16px;
    padding: 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-results-enhanced {
    background: var(--light);
    border-radius: 16px;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-placeholder {
    text-align: center;
    color: var(--text-light);
}

.results-placeholder svg {
    margin-bottom: 1.5rem;
}

.results-content {
    width: 100%;
}

.result-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.result-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.result-item {
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.result-unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Vendor Cards */
.vendors-section {
    padding: 5rem 0;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
}

.vendor-card-detailed {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vendor-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.vendor-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vendor-logo {
    flex-shrink: 0;
}

.logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.vendor-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #FFC107;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.vendor-pricing {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-primary {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.price-unit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-secondary {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vendor-features {
    margin-bottom: 1.5rem;
}

.vendor-features h4,
.vendor-specs h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.vendor-features ul {
    list-style: none;
    padding: 0;
}

.vendor-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.spec-grid {
    display: grid;
    gap: 1rem;
}

.spec {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 8px;
}

.spec-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.spec-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.vendor-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.doc-link {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-align: center;
}

.doc-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Compact Vendor Cards */
.vendor-compact {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.vendor-compact:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.vendor-compact h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.vendor-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.vendor-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vendor-compact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.vendor-compact a:hover {
    text-decoration: underline;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Vendor Comparison Section */
.vendor-comparison-section {
    padding: 5rem 0;
    background: white;
}

.vendor-comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.vendor-comparison-section .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.table-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-download-pdf {
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: var(--light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.vendor-comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

.vendor-comparison-table thead {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
}

.vendor-comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.vendor-comparison-table th:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sort-icon {
    margin-left: 0.5rem;
    opacity: 0.5;
    font-size: 0.9rem;
}

.vendor-comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.vendor-comparison-table tbody tr {
    transition: background 0.2s;
}

.vendor-comparison-table tbody tr:hover {
    background: var(--light);
}

.vendor-comparison-table strong {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.05rem;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
}

.comparison-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background: var(--light);
}

.comparison-table strong {
    color: var(--text-primary);
    font-weight: 700;
}

.complexity-high {
    color: #F44336;
    font-weight: 600;
}

.complexity-medium {
    color: #FFC107;
    font-weight: 600;
}

.complexity-low {
    color: #4CAF50;
    font-weight: 600;
}

/* Price Spectrum */
.price-spectrum {
    position: relative;
    height: 200px;
    margin: 2rem 0;
    padding: 50px 0;
}

.spectrum-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #4CAF50 0%, #FFC107 50%, #F44336 100%);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.spectrum-item {
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

/* Marker (dot on the bar) */
.spectrum-marker {
    width: 14px;
    height: 14px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Connector line */
.spectrum-connector {
    position: absolute;
    left: 50%;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    z-index: 1;
}

/* Label box */
.spectrum-label-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Above positioning */
.spectrum-item.above .spectrum-connector {
    bottom: 0;
    height: 30px;
}

.spectrum-item.above .spectrum-label-box {
    bottom: 35px;
}

/* Below positioning */
.spectrum-item.below .spectrum-connector {
    top: 0;
    height: 30px;
}

.spectrum-item.below .spectrum-label-box {
    top: 35px;
}

.spectrum-item:hover .spectrum-label-box {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.spectrum-item:hover .spectrum-marker {
    transform: translate(-50%, -50%) scale(1.3);
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.5);
}

.spectrum-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.spectrum-price {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.spectrum-range {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Category Winners */
.category-winners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.winner-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.winner-icon {
    font-size: 2rem;
}

.winner-category {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.winner-name {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 800;
}

/* Vendor Results Section (Cards below calculator) */
.vendor-results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EAF6 100%);
}

.vendor-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vendor-result-card-large {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    position: relative;
    border: 2px solid var(--border-color);
}

.vendor-result-card-large.best {
    border-color: #4CAF50;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
}

.vendor-result-card-large.competitive {
    border-color: #FFC107;
}

.vendor-result-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.vendor-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.vendor-card-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vendor-card-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.vendor-card-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Vendor Scores */
.vendor-scores {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.score-row:last-child {
    margin-bottom: 0;
}

.score-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 80px;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease-out;
}

.score-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 40px;
    text-align: right;
}

.vendor-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
}

.pricing-item.primary {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border: 2px solid var(--primary);
}

.pricing-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-value-large {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
}

.btn-download-results {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-download-results:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tco-explanation {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.tco-explanation h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tco-explanation p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tco-explanation ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.tco-explanation li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tco-explanation li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.avg-tco {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    text-align: center;
}

.avg-tco span {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-top: 0.5rem;
}

/* Pricing Notes Section */
.pricing-notes {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EAF6 100%);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.pricing-notes h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-notes p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.pricing-notes strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-container {
        grid-template-columns: 1fr;
    }

    .vendor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0 2rem;
    }

    .hero-content-siem h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .calculator-container {
        padding: 2rem 1.5rem;
    }

    .result-grid {
        grid-template-columns: 1fr;
    }

    .vendor-links {
        flex-direction: column;
    }

    .spec-grid .spec {
        flex-direction: column;
        gap: 0.5rem;
    }
}