.review-hero {
    background: linear-gradient(135deg, #111827, #14532d);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 26px;
    border-bottom: 5px solid #d6a84f;
}

.review-hero h1 {
    margin-top: 0;
    font-size: 31px;
}

.review-hero p {
    color: #ecfdf5;
    line-height: 2.1;
}

.review-page {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 50px rgba(0,0,0,.05);
}

.review-page h1 {
    color: #0f3d2e;
    font-size: 31px;
    margin-top: 0;
}

.review-section {
    margin-top: 30px;
}

.review-section h2 {
    color: #116149;
    border-right: 5px solid #d6a84f;
    padding-right: 12px;
}

.review-section p,
.review-section li {
    line-height: 2.15;
    color: #374151;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.review-card {
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-right: 6px solid #334155;
}

.review-card h3 {
    margin-top: 0;
    color: #0f3d2e;
}

.review-card p {
    margin-bottom: 0;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 16px;
}

.status-table th,
.status-table td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: right;
    line-height: 2;
    vertical-align: top;
}

.status-table th {
    background: #f1f5f9;
    color: #0f3d2e;
}

.badge {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: bold;
}

.badge-draft {
    background: #fef2f2;
    color: #991b1b;
}

.badge-documentation {
    background: #fffbeb;
    color: #92400e;
}

.badge-reviewed {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-approved {
    background: #ecfdf5;
    color: #166534;
}

.badge-ready {
    background: #f0fdf4;
    color: #14532d;
    border: 1px solid #86efac;
}

.review-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-right: 5px solid #d97706;
    border-radius: 18px;
    padding: 18px;
    margin-top: 24px;
    line-height: 2.1;
}

.review-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.review-nav a {
    background: #14532d;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-page {
        padding: 24px;
    }

    .status-table th,
    .status-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}