/* Landing Page Tool Stack & Comparison Styles */

/* Tool Stack Comparison Section */
.tool-stack-section {
    padding: 80px 0;
    background: rgba(22, 27, 34, 0.3);
    position: relative;
    z-index: 1;
}

.stack-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.stack-problem {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.stack-calculator {
    background: var(--bg-card);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-item i {
    color: var(--accent-blue);
}

.tool-price {
    margin-left: auto;
    font-weight: 600;
    color: white;
}

.calc-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(239, 68, 68, 0.5);
    font-size: 1.1rem;
    font-weight: 700;
}

.calc-savings {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.callout-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-icon {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.x-icon {
    color: #ef4444;
    font-size: 1.25rem;
}

.highlight-cell {
    background: rgba(59, 130, 246, 0.1);
    font-weight: 700;
    color: white;
}

.total-row {
    background: rgba(59, 130, 246, 0.05);
    font-weight: 700;
    font-size: 1.1rem;
}

.total-row td {
    padding: 1.5rem;
}

