.oc-search-hero {
    background: linear-gradient(135deg, #ff6725 0%, #ff8f5c 50%, #ffb88c 100%);
    padding: 32px 28px 22px;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}
.oc-search-hero-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.oc-search-hero-decoration::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.oc-search-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.oc-search-hero-badge i { font-size: 11px; }
.oc-search-hero-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
}
.oc-search-hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin: 0;
}
.oc-search-hero-desc a {
    color: #ffe0cc;
    text-decoration: underline;
    font-weight: 500;
}
.oc-search-hero-desc a:hover {
    color: #fff5f0;
    text-decoration: none;
}
.oc-search-hero + .oc-search-card {
    border-radius: 0 0 20px 20px !important;
}
.oc-search-card {
    padding: 24px;
}

.oc-result-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    padding: 24px;
    margin-top: 20px;
}
.oc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.oc-status-badge.oc-exempt {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.oc-status-badge.oc-self-cert {
    background: #fff5f0;
    color: #9a3412;
    border: 1px solid #ffd4c2;
}
.oc-status-badge.oc-formal {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}
.oc-result-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.oc-result-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}
.oc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}
.oc-info-item {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #f3f4f6;
}
.oc-info-item .label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.oc-info-item .value {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}
.oc-docs-section {
    margin-top: 20px;
}
.oc-docs-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 12px;
}
.oc-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.oc-doc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}
.oc-doc-list li i {
    color: #ff6725;
    margin-top: 3px;
    flex-shrink: 0;
}

.oc-ref-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
.oc-ref-table thead th {
    background: #ff6725;
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
}
.oc-ref-table tbody td {
    padding: 11px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    vertical-align: top;
}
.oc-ref-table tbody tr:last-child td { border-bottom: none; }
.oc-ref-table tbody tr:hover { background: #fff5f0; }

.oc-faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.oc-faq-item.open { border-color: #ff6725; }
.oc-faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    background: #fafafa;
}
.oc-faq-question i {
    transition: transform 0.3s;
    color: #ff6725;
}
.oc-faq-item.open .oc-faq-question i { transform: rotate(180deg); }
.oc-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.oc-faq-item.open .oc-faq-answer {
    padding: 0 20px 16px;
    max-height: 500px;
}

@media (max-width: 767px) {
    .oc-search-hero { padding: 22px 18px 18px; border-radius: 16px 16px 0 0; }
    .oc-search-hero-title { font-size: 20px; }
    .oc-info-grid { grid-template-columns: 1fr; }
    .oc-ref-table { font-size: 12px; }
    .oc-ref-table thead th, .oc-ref-table tbody td { padding: 8px 10px; }
}
