.dashboard-hero {
    padding: 70px 0 30px;
}

.dashboard-header {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    color: white;
    padding: 42px;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.dashboard-header h1 {
    font-size: 42px;
    margin: 0 0 10px;
}

.dashboard-header p {
    font-size: 18px;
    color: #dbeafe;
    max-width: 680px;
    margin: 0;
}

.dashboard-overview {
    padding: 10px 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
}

.stat-label {
    color: #64748b;
    font-weight: 700;
    margin-top: 6px;
}

.dashboard-section {
    padding: 35px 0;
}

.dashboard-section h2 {
    font-size: 30px;
    margin-bottom: 22px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dashboard-card {
    background: white;
    color: #1e293b;
    text-decoration: none;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.dashboard-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.dashboard-card p {
    color: #64748b;
    margin-bottom: 0;
}

.empty-state {
    background: white;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 46px;
    text-align: center;
}

.empty-state h3 {
    font-size: 26px;
    margin-top: 0;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 26px;
}

.app-page {
    padding: 70px 0;
}

.page-header {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.page-header h1 {
    margin: 0 0 8px;
    font-size: 38px;
}

.page-header p {
    margin: 0;
    color: #64748b;
    font-size: 18px;
}

.form-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.form-alert {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 13px;
    box-sizing: border-box;
    font: inherit;
}

.form-actions {
    margin-top: 28px;
}

.required {
    color: #dc2626;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: #dc2626;
    background: #fff7f7;
}

.field-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.field-heading-row label {
    margin-bottom: 0;
}

.voice-inline-button {
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 9px 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.voice-inline-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.mic-icon {
    line-height: 1;
}

.recording-status {
    color: #1d4ed8;
    font-weight: 800;
    margin-top: 10px;
}

.recording-status-hidden {
    display: none;
}

.project-list {
    display: grid;
    gap: 16px;
}

.project-row {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.project-row-link {
    color: #1e293b;
    text-decoration: none;
    transition: 0.2s ease;
}

.project-row-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.project-row h3 {
    margin: 0 0 8px;
}

.project-row p {
    margin: 0;
    color: #64748b;
}

.status-pill {
    display: inline-flex;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 24px;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.detail-sidebar {
    display: grid;
    gap: 24px;
    align-content: start;
}

.detail-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.detail-card h2 {
    margin-top: 0;
    font-size: 24px;
}

.detail-card p {
    color: #64748b;
    line-height: 1.6;
}

.detail-list {
    display: grid;
    gap: 18px;
}

.detail-list div {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
}

.detail-list div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-list span {
    display: block;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 5px;
}

.detail-list strong {
    display: block;
    color: #0f172a;
}

.next-step-list {
    display: grid;
    gap: 18px;
}

.next-step {
    display: flex;
    gap: 16px;
}

.next-step span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.next-step h3 {
    margin: 0 0 6px;
}

.next-step p {
    margin: 0;
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-category-card {
    background: white;
    color: #1e293b;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: 0.2s ease;
}

.service-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.service-category-icon {
    font-size: 34px;
    margin-bottom: 14px;
}

.service-category-card h3 {
    margin: 0 0 10px;
}

.service-category-card p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 900px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid,
    .dashboard-grid,
    .form-grid,
    .detail-layout,
    .service-category-grid {
        grid-template-columns: 1fr;
    }

    .page-header,
    .project-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .field-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cancel-form {
    margin-top: 20px;
}

.danger-button {
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.danger-button:hover {
    background: #b91c1c;
}

.danger-link {
    background: transparent;
    border: none;
    color: #dc2626;
    font: inherit;
    font-weight: 800;
    padding: 0;
    cursor: pointer;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.selected-pro-card {
    background: #f7fbf7;
    border: 1px solid rgba(47, 111, 70, 0.18);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.selected-pro-logo {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #e7f1e8;
    border: 1px solid rgba(47, 111, 70, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.selected-pro-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 6px;
    box-sizing: border-box;
    background: white;
}

.selected-pro-logo span {
    color: #2f6f46;
    font-size: 27px;
    font-weight: 900;
}

.selected-pro-card small {
    display: block;
    color: #2f6f46;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.selected-pro-card strong {
    display: block;
    color: #0f2f23;
    font-size: 18px;
    line-height: 1.2;
}

.selected-pro-card p {
    color: #6f7f76;
    margin: 5px 0 0;
    line-height: 1.45;
}

.bo-page {
    background: #f7f8fb;
    min-height: calc(100vh - 72px);
}

.bo-shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 4rem;
    color: #111827;
}

.bo-top-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.bo-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #64748b;
    font-weight: 800;
    margin: 0 0 6px;
}

.bo-top-bar h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 4px 0 6px;
    color: #0f172a;
}

.bo-meta {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}

.bo-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bo-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 18px;
}

.bo-stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    color: #0f172a;
    display: block;
}

.bo-stat-card span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.bo-stat-card strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #0f172a;
    margin-bottom: 8px;
}

.bo-stat-card small {
    display: block;
    color: #64748b;
    line-height: 1.4;
}

.bo-stat-card:hover {
    border-color: #2f6f46;
    transform: translateY(-2px);
}

.bo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
    gap: 18px;
    margin-bottom: 18px;
}

.bo-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.bo-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.bo-card-head h2 {
    font-size: 21px;
    color: #0f172a;
    margin: 0;
}

.bo-card-head a,
.bo-card-head > span {
    color: #2f6f46;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

.bo-table-wrap {
    overflow-x: auto;
}

.bo-table {
    width: 100%;
    border-collapse: collapse;
}

.bo-table th {
    text-align: left;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 12px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.bo-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    color: #0f172a;
}

.bo-table tr:last-child td {
    border-bottom: none;
}

.bo-table a {
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
}

.bo-table a:hover {
    color: #2f6f46;
}

.bo-table small,
.bo-table td small {
    display: block;
    color: #64748b;
    margin-top: 5px;
    line-height: 1.35;
}

.bo-table td span {
    display: block;
}

.bo-status {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.bo-status-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.bo-status-reviewing {
    background: #fef3c7;
    color: #92400e;
}

.bo-status-approved {
    background: #dcfce7;
    color: #166534;
}

.bo-status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.bo-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.bo-empty p {
    color: #64748b;
    margin: 0;
}

.bo-mini-stat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bo-mini-stat-list div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
}

.bo-mini-stat-list span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
}

.bo-mini-stat-list strong {
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
}

.bo-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.bo-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
}

.bo-list-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 5px;
}

.bo-list-item span,
.bo-list-item small {
    color: #64748b;
    line-height: 1.45;
}

.bo-quick-card {
    margin-top: 18px;
}

.bo-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.bo-quick-grid a {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    text-decoration: none;
    color: #0f172a;
    transition: 0.2s ease;
}

.bo-quick-grid a:hover {
    border-color: #2f6f46;
    transform: translateY(-2px);
}

.bo-quick-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
}

.bo-quick-grid span {
    display: block;
    color: #64748b;
    line-height: 1.5;
    font-size: 14px;
}

.bo-filter-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.bo-filter-card a {
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 14px;
}

.bo-filter-card a.active,
.bo-filter-card a:hover {
    background: #2f6f46;
    border-color: #2f6f46;
    color: white;
}

.bo-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bo-tag-list span {
    display: inline-flex !important;
    background: #e7f1e8;
    color: #123c2a;
    border: 1px solid rgba(47, 111, 70, 0.16);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.bo-tag-list-large span {
    font-size: 14px;
    padding: 9px 12px;
}

.bo-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.bo-review-card {
    position: sticky;
    top: 96px;
}

.bo-detail-list {
    display: grid;
    gap: 16px;
}

.bo-detail-list div {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 14px;
}

.bo-detail-list div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bo-detail-list strong {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-bottom: 5px;
}

.bo-detail-list span,
.bo-detail-list a {
    color: #0f172a;
    line-height: 1.55;
}

.bo-detail-list a {
    font-weight: 800;
    text-decoration: none;
}

.bo-detail-list a:hover {
    color: #2f6f46;
}

.bo-review-meta {
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
    padding-top: 16px;
    color: #64748b;
    font-size: 14px;
}

.bo-message {
    color: #334155;
    line-height: 1.7;
}

.bo-message p {
    margin: 0 0 12px;
}

.bo-message p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .bo-stat-grid,
    .bo-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bo-grid,
    .bo-detail-grid {
        grid-template-columns: 1fr;
    }

    .bo-review-card {
        position: static;
    }
}

@media (max-width: 700px) {
    .bo-shell {
        padding: 1rem 0.9rem 3rem;
    }

    .bo-top-bar,
    .bo-card-head,
    .bo-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bo-stat-grid,
    .bo-quick-grid,
    .bo-mini-stat-list {
        grid-template-columns: 1fr;
    }

    .bo-card {
        padding: 18px;
    }

    .bo-table th,
    .bo-table td {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.bo-profile-create-card {
    margin-bottom: 18px;
}

.bo-card-copy {
    color: #64748b;
    line-height: 1.65;
    margin: 0 0 20px;
    max-width: 820px;
}

.bo-profile-create-form {
    display: flex;
    align-items: end;
    gap: 14px;
    flex-wrap: wrap;
}

.bo-profile-create-form .form-field {
    min-width: 220px;
}

.bo-created-profile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.bo-created-profile strong {
    display: block;
    color: #0f172a;
    margin-bottom: 5px;
}

.bo-created-profile span {
    color: #64748b;
}

.bo-ai-card {
    margin-bottom: 18px;
    border-color: rgba(47, 111, 70, 0.22);
    background: linear-gradient(135deg, #ffffff, #f7fbf7);
}

.bo-ai-status {
    color: #64748b;
    font-weight: 800;
    align-self: center;
}

.bo-service-picker-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.bo-service-picker-head label {
    margin-bottom: 4px;
}

.bo-service-picker-head small {
    color: #64748b;
    font-weight: 800;
}

.bo-service-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bo-service-tools input[type="search"] {
    width: 220px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
}

.bo-service-tools button {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 999px;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.bo-service-picker {
    max-height: 220px;
    overflow-y: auto;
    background: #f8fafc;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.bo-service-choice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 9px 10px;
    min-width: 0;
    cursor: pointer;
}

.bo-service-choice input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    margin: 0;
    padding: 0;
    border-radius: 3px;
    box-shadow: none;
}

.bo-service-choice span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-service-choice:has(input:checked) {
    background: #e7f1e8;
    border-color: rgba(47, 111, 70, 0.35);
}

.bo-service-choice:has(input:checked) span {
    color: #123c2a;
}

.bo-service-choice-hidden {
    display: none;
}

@media (max-width: 1000px) {
    .bo-service-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bo-profile-create-form {
        align-items: stretch;
        flex-direction: column;
    }

    .bo-profile-create-form .form-field {
        min-width: 0;
    }

    .bo-service-picker-head {
        align-items: stretch;
        flex-direction: column;
    }

    .bo-service-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .bo-service-tools input[type="search"] {
        width: 100%;
    }

    .bo-service-picker {
        grid-template-columns: 1fr;
        max-height: 280px;
    }
}

.bo-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bo-search-form input {
    width: 260px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
}

.bo-search-form button {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    border-radius: 999px;
    padding: 9px 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 700px) {
    .bo-search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .bo-search-form input {
        width: 100%;
    }
}

.service-category-card-image {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.service-category-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.78));
    z-index: -1;
}

.service-category-card-image h3,
.service-category-card-image p {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.service-category-image-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.service-category-image-content span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.service-hero-image-card {
    overflow: hidden;
}

.service-hero-card-image {
    width: 100%;
    height: 210px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #e2e8f0;
}

.service-hero-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-image-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.service-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.14), rgba(11, 18, 32, 0.76));
    z-index: -1;
}

.service-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.24), transparent 32%);
    z-index: -1;
}

.service-image-card h3,
.service-image-card p {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.service-image-card .home-service-card-body {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-image-card .home-service-image-badge {
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}