/* HPP Options Page Styles */

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.option-card {
    background: #1e293b;
    border: 2px solid #334155;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.option-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.option-description {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.option-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    border: 1px solid;
}

.badge-recommended {
    background: #0f172a;
    color: #10b981;
    border-color: #10b981;
}

.badge-simple {
    background: #0f172a;
    color: #3b82f6;
    border-color: #3b82f6;
}

.badge-advanced {
    background: #0f172a;
    color: #f59e0b;
    border-color: #f59e0b;
}

.comparison-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: #1e293b;
    border: 1px solid #334155;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #334155;
}

.comparison-table th {
    background: #0f172a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f1f5f9;
    font-size: 14px;
}

.comparison-table td {
    color: #cbd5e1;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

.cross-icon {
    color: #ef4444;
    font-weight: bold;
}
