.account-service-details-page {
    width: 100%;
    min-height: 100%;
    padding: 48px 32px 56px;
    position: relative;
    background: #020b1d;
    overflow: hidden;
}

.account-service-details-page__glow {
    width: 600px;
    height: 600px;
    position: absolute;
    top: -83px;
    right: -100px;
    border-radius: 999px;
    background: rgba(91, 70, 185, 0.26);
    filter: blur(90px);
    pointer-events: none;
}

.account-service-details-page__content {
    width: 100%;
    max-width: 1296px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
    position: relative;
    z-index: 1;
}

.account-service-details-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-service-details-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-service-details-breadcrumbs__link,
.account-service-details-breadcrumbs__current {
    font-size: 14px;
    line-height: 14px;
    white-space: nowrap;
}

.account-service-details-breadcrumbs__link {
    color: rgba(236, 236, 236, 0.65);
    font-weight: var(--regular);
}

.account-service-details-breadcrumbs__link:is(:hover, :focus-visible) {
    color: rgba(236, 236, 236, 0.85);
}

.account-service-details-breadcrumbs__separator {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-service-details-breadcrumbs__separator-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transform: rotate(-90deg);
}

.account-service-details-breadcrumbs__current {
    color: var(--neutral-02);
    font-weight: var(--medium);
}

.account-service-details-summary {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.account-service-details-summary__copy {
    width: 402px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-service-details-summary__title {
    color: var(--light-blue-01);
    font-size: 40px;
    font-weight: var(--semiBold);
    line-height: 40px;
    letter-spacing: -0.4px;
}

.account-service-details-summary__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-service-details-summary__id {
    color: #8b90a0;
    font-family: "Montserrat Alternates", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: 0.6px;
}

.account-service-details-status {
    min-height: 26px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: var(--semiBold);
    line-height: 16px;
    white-space: nowrap;
}

.account-service-details-status__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    flex-shrink: 0;
}

.account-service-details-status--request-received {
    background: rgba(126, 140, 163, 0.1);
    border-color: rgba(126, 140, 163, 0.2);
    color: #7e8ca3;
}

.account-service-details-status--request-received .account-service-details-status__dot {
    background: #7e8ca3;
}

.account-service-details-status--under-review {
    background: rgba(139, 124, 246, 0.1);
    border-color: rgba(139, 124, 246, 0.2);
    color: #8b7cf6;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.account-service-details-status--under-review .account-service-details-status__dot {
    background: #8b7cf6;
}

.account-service-details-status--more-information-needed {
    background: rgba(217, 164, 65, 0.1);
    border-color: rgba(217, 164, 65, 0.2);
    color: #d9a441;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.account-service-details-status--more-information-needed .account-service-details-status__dot {
    background: #d9a441;
}

.account-service-details-status--proposal-sent {
    background: rgba(197, 110, 34, 0.1);
    border-color: rgba(197, 110, 34, 0.2);
    color: #c56e22;
}

.account-service-details-status--proposal-sent .account-service-details-status__dot {
    background: #c56e22;
}

.account-service-details-status--awaiting-payment {
    background: rgba(224, 138, 46, 0.1);
    border-color: rgba(224, 138, 46, 0.2);
    color: #e08a2e;
}

.account-service-details-status--awaiting-payment .account-service-details-status__dot {
    background: #e08a2e;
}

.account-service-details-status--in-progress {
    background: rgba(75, 142, 255, 0.2);
    border-color: rgba(173, 198, 255, 0.2);
    color: #adc6ff;
}

.account-service-details-status--in-progress .account-service-details-status__dot {
    background: #adc6ff;
}

.account-service-details-status--completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.account-service-details-status--completed .account-service-details-status__dot {
    background: #22c55e;
}

.account-service-details-status--cancelled {
    background: rgba(217, 92, 102, 0.1);
    border-color: rgba(217, 92, 102, 0.2);
    color: #d95c66;
}

.account-service-details-status--cancelled .account-service-details-status__dot {
    background: #d95c66;
}

.account-service-details-secondary-button,
.account-service-details-primary-button {
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.account-service-details-secondary-button:is(:hover, :focus-visible),
.account-service-details-primary-button:is(:hover, :focus-visible),
.account-service-details-document-row__download:is(:hover, :focus-visible) {
    transform: translateY(-1px);
}

.account-service-details-secondary-button {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.account-service-details-secondary-button:is(:hover, :focus-visible) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.16);
}

.account-service-details-secondary-button--review {
    min-width: 203.99px;
    min-height: 48px;
    gap: 7.99px;
    padding: 11px 21px;
    color: #e1e2eb;
    font-size: 16px;
    font-weight: var(--medium);
    line-height: 16px;
}

.account-service-details-secondary-button--invoice {
    min-width: 197.99px;
    min-height: 37px;
    gap: 7.99px;
    padding: 11px 21px;
    color: #e1e2eb;
    font-size: 14px;
    font-weight: var(--medium);
    line-height: 14px;
}

.account-service-details-secondary-button__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.account-service-details-primary-button {
    min-width: 177px;
    min-height: 37px;
    padding: 11.5px 32px;
    border: 0;
    background: var(--light-blue-02);
    color: #020b1d;
    font-family: "Inter", "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
}

.account-service-details-primary-button:is(:hover, :focus-visible) {
    background: #e7edf7;
}

.account-service-details-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 853.333px 410.667px;
    gap: 32px;
    align-items: start;
}

.account-service-details-primary-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.account-service-details-side-column {
    width: 410.667px;
    display: flex;
    justify-content: flex-start;
}

.account-service-details-card {
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.account-service-details-card--overview {
    display: flex;
    flex-direction: column;
    gap: 23.89px;
}

.account-service-details-card--payment {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-service-details-card--documents {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-service-details-card__glow {
    width: 256px;
    height: 256px;
    position: absolute;
    top: -106px;
    right: -64.67px;
    border-radius: 999px;
    background: rgba(173, 198, 255, 0.05);
    filter: blur(32px);
    pointer-events: none;
}

.account-service-details-card__heading,
.account-service-details-card__header-row {
    width: 100%;
    display: flex;
    align-items: center;
}

.account-service-details-card__heading {
    gap: 8px;
}

.account-service-details-card__header-row {
    justify-content: space-between;
}

.account-service-details-card__title {
    color: #e1e2eb;
    font-size: 28px;
    font-weight: var(--semiBold);
    line-height: 28px;
    letter-spacing: -0.28px;
}

.account-service-details-card--payment .account-service-details-card__title,
.account-service-details-card--documents .account-service-details-card__title {
    line-height: 36.4px;
}

.account-service-details-card__heading-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.account-service-details-card__heading-icon--payment {
    width: 22px;
    height: 16px;
}

.account-service-details-card__heading-icon--documents {
    width: 21.5px;
    height: 16px;
}

.account-service-details-overview-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 41.59px 41.59px auto;
    gap: 24px 32px;
}

.account-service-details-overview-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.account-service-details-overview-item__label {
    color: #8b90a0;
    font-size: 12px;
    font-weight: var(--semiBold);
    line-height: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.account-service-details-overview-item__value {
    color: #e1e2eb;
    font-size: 16px;
    font-weight: var(--medium);
    line-height: 25.6px;
}

.account-service-details-overview-item__value--regular {
    font-weight: var(--regular);
}

.account-service-details-objective {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.account-service-details-objective__panel {
    width: 100%;
    padding: 15.75px 17px 17px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(234, 234, 234, 0.05);
}

.account-service-details-objective__text {
    color: #c1c6d7;
    font-size: 14px;
    font-weight: var(--regular);
    line-height: 22.75px;
}

.account-service-details-payment-status {
    min-height: 22px;
    padding: 5px 13px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: var(--semiBold);
    line-height: 12px;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    white-space: nowrap;
}

.account-service-details-payment-status--pending {
    background: rgba(147, 0, 10, 0.2);
    border-color: rgba(147, 0, 10, 0.3);
    color: #ffb4ab;
}

.account-service-details-payment-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-service-details-payment-row {
    width: 100%;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.account-service-details-payment-row__label {
    color: #c1c6d7;
    font-size: 14px;
    font-weight: var(--regular);
    line-height: 21px;
}

.account-service-details-payment-row__value {
    color: #e1e2eb;
    font-size: 16px;
    font-weight: var(--regular);
    line-height: 25.6px;
    text-align: right;
}

.account-service-details-payment-total {
    width: 100%;
    padding-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.account-service-details-payment-total__label {
    color: #adc6ff;
    font-size: 20px;
    font-weight: var(--semiBold);
    line-height: 28px;
}

.account-service-details-payment-total__value {
    color: #adc6ff;
    font-size: 28px;
    font-weight: var(--semiBold);
    line-height: 36.4px;
    letter-spacing: -0.28px;
}

.account-service-details-payment-actions {
    width: 100%;
    min-height: 58px;
    padding-top: 8px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
}

.account-service-details-documents-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-service-details-document-row {
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.account-service-details-document-row__main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-service-details-document-row__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(177, 171, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-service-details-document-row__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.account-service-details-document-row__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.account-service-details-document-row__name {
    color: #e1e2eb;
    font-size: 14px;
    font-weight: var(--medium);
    line-height: 21px;
}

.account-service-details-document-row__meta {
    color: #8b90a0;
    font-size: 12px;
    font-weight: var(--medium);
    line-height: 12px;
    letter-spacing: 0.6px;
}

.account-service-details-document-row__download {
    width: 32px;
    height: 32px;
    padding: 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.account-service-details-document-row__download:is(:hover, :focus-visible) {
    background: rgba(255, 255, 255, 0.05);
}

.account-service-details-document-row__download-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.account-service-details-documents-note {
    width: 100%;
    padding: 17px;
    border-radius: 8px;
    border: 1px dashed rgba(65, 71, 85, 0.5);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-service-details-documents-note__icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.account-service-details-documents-note__text {
    color: #8b90a0;
    font-size: 14px;
    font-weight: var(--regular);
    line-height: 21px;
}

.account-service-details-progress-card {
    width: 380px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: #0f1626;
    box-shadow: 0 16px 16px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-service-details-progress-card__title {
    color: #e1e2eb;
    font-size: 28px;
    font-weight: var(--semiBold);
    line-height: 28px;
    letter-spacing: -0.28px;
}

.account-service-details-progress-list {
    width: 100%;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
}

.account-service-details-progress-step {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
}

.account-service-details-progress-step--active {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}

.account-service-details-progress-step__indicator-column {
    width: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.account-service-details-progress-step__indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.account-service-details-progress-step--done .account-service-details-progress-step__indicator {
    border: 1px solid #10b981;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.08);
}

.account-service-details-progress-step__indicator-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.account-service-details-progress-step--active .account-service-details-progress-step__indicator-icon {
    width: 40px;
    height: 40px;
    max-width: none;
}

.account-service-details-progress-step--done .account-service-details-progress-step__indicator-icon {
    width: 10px;
    height: 10px;
}

.account-service-details-progress-step__connector {
    width: 0;
    height: 48px;
    position: relative;
    flex-shrink: 0;
}

.account-service-details-progress-step--active .account-service-details-progress-step__connector {
    height: 64px;
}

.account-service-details-progress-step__connector-icon {
    width: 48px;
    height: 4px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
}

.account-service-details-progress-step--active .account-service-details-progress-step__connector-icon {
    width: 64px;
}

.account-service-details-progress-step__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-service-details-progress-step__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.account-service-details-progress-step__title {
    font-size: 14px;
    line-height: normal;
    white-space: nowrap;
}

.account-service-details-progress-step--done .account-service-details-progress-step__title {
    color: #f0f0f0;
    font-weight: var(--semiBold);
}

.account-service-details-progress-step--active .account-service-details-progress-step__title {
    color: #f0f0f0;
    font-weight: 700;
}

.account-service-details-progress-step--pending .account-service-details-progress-step__title {
    color: #4b5563;
    font-weight: var(--semiBold);
}

.account-service-details-progress-step__date {
    color: #8e98a8;
    font-size: 11px;
    font-weight: var(--medium);
    line-height: normal;
    white-space: nowrap;
}

.account-service-details-progress-step__pill {
    min-height: 21px;
    padding: 4px 8px;
    border-radius: 99px;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    font-size: 11px;
    font-weight: var(--semiBold);
    line-height: normal;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.account-service-details-progress-step__description {
    width: 100%;
    font-size: 13px;
    font-weight: var(--medium);
    line-height: 18px;
}

.account-service-details-progress-step--done .account-service-details-progress-step__description {
    color: #4b5563;
}

.account-service-details-progress-step--active .account-service-details-progress-step__description {
    color: #8e98a8;
}

.account-service-details-progress-step--pending .account-service-details-progress-step__description {
    color: #4b5563;
}

@media (max-width: 1439px) {
    .account-service-details-page {
        padding-right: 24px;
        padding-left: 24px;
    }

    .account-service-details-page__content {
        overflow-x: auto;
    }

    .account-service-details-header,
    .account-service-details-layout {
        min-width: 1296px;
    }
}

@media (max-width: 768px) {
    .account-service-details-page {
        padding-right: 16px;
        padding-left: 16px;
    }
}
