html, body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-dialog .mud-dialog {
    overflow: hidden;
    color: var(--df-color-text, #101936);
    background:
        radial-gradient(circle at 88% 0%, rgba(123, 63, 242, .14), transparent 15rem),
        radial-gradient(circle at 8% 18%, rgba(47, 107, 255, .10), transparent 16rem),
        #fff;
    border: 1px solid var(--df-color-border, #E3E7F5);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(42, 54, 116, .22);
}

.contact-dialog .mud-dialog-title {
    padding: 28px 30px 0;
}

.contact-dialog .mud-dialog-content {
    padding: 18px 30px 8px;
}

.contact-dialog .mud-dialog-actions {
    gap: 12px;
    padding: 18px 30px 30px;
}

.contact-dialog-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.contact-dialog-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #fff;
    background: var(--df-gradient-primary, linear-gradient(135deg, #2F6BFF 0%, #7B3FF2 100%));
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(95, 75, 255, .24);
}

.contact-dialog-hero p {
    width: fit-content;
    margin: 0 0 8px;
    padding: 7px 12px;
    color: var(--df-color-primary, #5F4BFF);
    background: #F1EEFF;
    border: 1px solid rgba(95, 75, 255, .14);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.contact-dialog-hero h2 {
    margin: 0;
    color: var(--df-color-text, #101936);
    font-size: 1.65rem;
    line-height: 1.15;
}

.contact-dialog-lead {
    margin: 0 0 20px;
    color: var(--df-color-muted, #65708F);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-dialog-fields {
    display: grid;
    gap: 16px;
    min-width: min(100%, 460px);
    padding: 18px;
    background: rgba(247, 249, 255, .72);
    border: 1px solid var(--df-color-border, #E3E7F5);
    border-radius: 18px;
}

.contact-dialog-input .mud-input {
    color: var(--df-color-text, #101936);
    background: #fff;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(42, 54, 116, .04);
}

.contact-dialog-input .mud-input-outlined-border {
    border-color: rgba(95, 75, 255, .24);
}

.contact-dialog-input .mud-input:hover .mud-input-outlined-border,
.contact-dialog-input .mud-input:focus-within .mud-input-outlined-border {
    border-color: rgba(95, 75, 255, .58);
}

.contact-dialog-input .mud-input-adornment-start,
.contact-dialog-input .mud-icon-root {
    color: var(--df-color-primary, #5F4BFF);
}

.contact-dialog-cancel.mud-button-root,
.contact-dialog-submit.mud-button-root {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 14px;
    text-transform: none;
    font-weight: 800;
}

.contact-dialog-cancel.mud-button-root {
    color: var(--df-color-primary, #5F4BFF);
    border: 1px solid rgba(95, 75, 255, .22);
}

.contact-dialog-submit.mud-button-root {
    color: #fff;
    background: var(--df-gradient-primary, linear-gradient(135deg, #2F6BFF 0%, #7B3FF2 100%));
    box-shadow: var(--df-shadow-button, 0 14px 28px rgba(95, 75, 255, .28));
}

.contact-dialog-submit.mud-button-root:hover {
    background: var(--df-gradient-primary, linear-gradient(135deg, #2F6BFF 0%, #7B3FF2 100%));
    box-shadow: 0 16px 32px rgba(95, 75, 255, .32);
}

.content-page {
    --df-color-primary: #5F4BFF;
    --df-color-primary-2: #2F6BFF;
    --df-color-text: #101936;
    --df-color-muted: #65708F;
    --df-color-border: #E3E7F5;
    --df-gradient-primary: linear-gradient(135deg, #2F6BFF 0%, #7B3FF2 100%);
    --df-radius-card: 28px;
    --df-shadow-card: 0 18px 50px rgba(42, 54, 116, .10);
    position: relative;
    display: grid;
    justify-items: center;
    padding-block: 72px 24px;
    isolation: isolate;
}

.content-page::before {
    content: "";
    position: absolute;
    inset: 14px -80px auto auto;
    z-index: -1;
    width: min(52vw, 680px);
    height: min(52vw, 520px);
    background: repeating-radial-gradient(ellipse at center, rgba(95, 75, 255, .10) 0 1px, transparent 2px 18px);
    opacity: .45;
    transform: rotate(-10deg);
    pointer-events: none;
}

.content-page__card {
    width: min(100%, 920px);
    margin-inline: auto;
    padding: clamp(28px, 5vw, 56px);
    background: #fff;
    border: 1px solid var(--df-color-border);
    border-radius: var(--df-radius-card);
    box-shadow: var(--df-shadow-card);
}

.content-page .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 0 0 24px;
    padding: 9px 16px;
    color: var(--df-color-primary);
    background: #F1EEFF;
    border: 1px solid rgba(95, 75, 255, .14);
    border-radius: 999px;
    font-weight: 800;
}

.content-page h1 {
    margin: 0;
    color: var(--df-color-text);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
}

.content-page h2 {
    margin: 34px 0 0;
    color: var(--df-color-text);
    font-size: 1.35rem;
}

.content-page p {
    margin: 18px 0 0;
    color: var(--df-color-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.content-page .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    color: #fff;
    background: var(--df-gradient-primary);
    border: 1px solid transparent;
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(95, 75, 255, .28);
    font: inherit;
    font-weight: 700;
    text-decoration: none;
}

.content-page__action {
    margin-top: 32px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-list a,
.contact-list button {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    width: 100%;
    padding: 18px;
    color: var(--df-color-text);
    background: rgba(247, 249, 255, .72);
    border: 1px solid var(--df-color-border);
    border-radius: 16px;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-list a:hover,
.contact-list button:hover {
    border-color: rgba(95, 75, 255, .30);
    box-shadow: 0 12px 28px rgba(95, 75, 255, .08);
    transform: translateY(-1px);
}

.contact-list .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--df-color-primary);
    background: #F1EEFF;
    border-radius: 16px;
}

.contact-list span:last-child {
    display: grid;
    gap: 4px;
}

.contact-list small {
    color: var(--df-color-muted);
}

.cookie-consent {
    position: fixed;
    right: clamp(16px, 3vw, 32px);
    bottom: clamp(16px, 3vw, 32px);
    z-index: 1200;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(calc(100vw - 32px), 760px);
    padding: 18px;
    color: var(--df-color-text, #101936);
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--df-color-border, #E3E7F5);
    border-radius: 18px;
    box-shadow: 0 18px 52px rgba(42, 54, 116, .18);
    backdrop-filter: blur(18px);
}

.cookie-consent__content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.cookie-consent__icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--df-color-primary, #5F4BFF);
    background: #F1EEFF;
    border-radius: 14px;
}

.cookie-consent p {
    margin: 0;
    color: var(--df-color-muted, #65708F);
    font-size: .95rem;
    line-height: 1.55;
}

.cookie-consent a {
    color: var(--df-color-primary, #5F4BFF);
    font-weight: 800;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

.cookie-consent__button.mud-button-root {
    min-height: 44px;
    padding-inline: 22px;
    color: #fff;
    background: var(--df-gradient-primary, linear-gradient(135deg, #2F6BFF 0%, #7B3FF2 100%));
    border-radius: 12px;
    text-transform: none;
    font-weight: 800;
    box-shadow: var(--df-shadow-button, 0 14px 28px rgba(95, 75, 255, .28));
}

@media (max-width: 760px) {
    .content-page {
        padding-block: 44px 18px;
    }

    .content-page__card {
        border-radius: 20px;
    }

    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
        grid-template-columns: 1fr;
        width: auto;
        padding: 16px;
    }

    .cookie-consent__button.mud-button-root {
        width: 100%;
    }
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.pipeline-landing {
    --pipeline-primary: #5047E8;
    --pipeline-primary-2: #2F6BFF;
    --pipeline-text: #121A31;
    --pipeline-muted: #66708A;
    --pipeline-border: #E1E5F0;
    --pipeline-soft: #F3F1FF;
    --pipeline-card: #FFFFFF;
    --pipeline-bg: #F8FAFF;
    --pipeline-gradient: linear-gradient(135deg, #2F6BFF 0%, #6B43F2 100%);
    min-height: 100vh;
    overflow-x: clip;
    color: var(--pipeline-text);
    background:
        radial-gradient(circle at 84% 12%, rgba(80, 71, 232, .11), transparent 28rem),
        linear-gradient(180deg, #fff 0%, var(--pipeline-bg) 44%, #fff 100%);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pipeline-landing *,
.pipeline-landing *::before,
.pipeline-landing *::after {
    box-sizing: border-box;
}

.pipeline-landing a {
    color: inherit;
    text-decoration: none;
}

.pipeline-shell,
.pipeline-header {
    width: min(100% - 64px, 1440px);
    margin-inline: auto;
}

.pipeline-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding-block: 18px;
    background: rgba(248, 250, 255, .86);
    border-bottom: 1px solid rgba(225, 229, 240, .72);
    backdrop-filter: blur(18px);
}

.pipeline-brand,
.pipeline-nav,
.pipeline-button,
.pipeline-pill,
.pipeline-section-title,
.pipeline-status-chip,
.pipeline-download-row,
.pipeline-total em {
    display: inline-flex;
    align-items: center;
}

.pipeline-brand__logo {
    max-height: 60px;
}

.pipeline-nav {
    gap: clamp(22px, 3.4vw, 46px);
    font-size: 1.08rem;
    font-weight: 600;
}

.pipeline-nav a:hover {
    color: var(--pipeline-primary);
}

.pipeline-button {
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pipeline-button:hover {
    transform: translateY(-1px);
}

.pipeline-button:disabled {
    cursor: default;
    opacity: .66;
    transform: none;
}

.pipeline-button--primary {
    color: #fff;
    background: var(--pipeline-gradient);
    box-shadow: 0 14px 28px rgba(80, 71, 232, .28);
}

.pipeline-button--ghost {
    color: var(--pipeline-primary);
    background: rgba(255, 255, 255, .78);
    border-color: rgba(80, 71, 232, .36);
}

.pipeline-header__cta {
    min-width: 236px;
}

.pipeline-state {
    display: grid;
    gap: 18px;
    align-content: center;
    min-height: 360px;
}

.pipeline-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, .86fr) minmax(520px, 1fr);
    gap: clamp(38px, 6vw, 86px);
    align-items: center;
    min-height: calc(100vh - 92px);
    padding-block: 48px 36px;
}

.pipeline-hero::after {
    content: "";
    position: absolute;
    right: -92px;
    bottom: 0;
    z-index: 0;
    width: min(62vw, 920px);
    height: 220px;
    background: linear-gradient(135deg, rgba(80, 71, 232, .08), rgba(47, 107, 255, .18));
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.pipeline-hero__copy,
.pipeline-hero__visual {
    position: relative;
    z-index: 1;
}

.pipeline-pill {
    gap: 10px;
    width: fit-content;
    margin: 0 0 28px;
    padding: 12px 18px;
    color: var(--pipeline-primary);
    background: var(--pipeline-soft);
    border-radius: 999px;
    font-weight: 800;
}

.pipeline-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--pipeline-text);
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.pipeline-hero__lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--pipeline-muted);
    font-size: 1.35rem;
    line-height: 1.65;
}

.pipeline-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 44px;
}

.pipeline-hero__visual {
    min-height: 520px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
}

.pipeline-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.pipeline-card,
.pipeline-result-card,
.pipeline-benefits,
.pipeline-footer {
    background: var(--pipeline-card);
    border: 1px solid var(--pipeline-border);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(42, 54, 116, .09);
}

.pipeline-result-card {
    width: min(100%, 610px);
    margin-left: auto;
    padding: 24px;
}

.pipeline-result-card__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.pipeline-result-card h2,
.pipeline-card h2,
.pipeline-footer h2 {
    margin: 0;
    color: var(--pipeline-text);
    font-size: 1.25rem;
    line-height: 1.25;
}

.pipeline-result-card__header p,
.pipeline-card p,
.pipeline-footer p,
.pipeline-calculator > p,
.pipeline-price-list,
.pipeline-description {
    color: var(--pipeline-muted);
    line-height: 1.62;
}

.pipeline-result-card__header p {
    margin: 6px 0 0;
    color: var(--pipeline-primary);
    font-weight: 700;
}

.pipeline-status-chip {
    gap: 7px;
    min-height: 34px;
    padding-inline: 14px;
    color: #0A8D67;
    background: #DFF7ED;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 800;
}

.pipeline-icon-box {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: var(--pipeline-primary);
    background: var(--pipeline-soft);
    border-radius: 16px;
}

.pipeline-icon-box--large {
    width: 100px;
    height: 100px;
    border-radius: 24px;
}

.pipeline-icon-box--success {
    color: #0BAA75;
    background: #E8F8F0;
}

.pipeline-icon-box--small {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.pipeline-icon-box--round {
    width: 58px;
    height: 58px;
    border-radius: 999px;
}

.pipeline-document-preview {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.pipeline-document-preview h3 {
    margin: 0 0 2px;
    font-size: 1rem;
}

.pipeline-document-preview span {
    display: block;
    height: 8px;
    background: #E7EAF1;
    border-radius: 999px;
}

.pipeline-document-preview span:nth-child(2) {
    width: 88%;
}

.pipeline-document-preview span:nth-child(3) {
    width: 95%;
}

.pipeline-document-preview span:nth-child(4) {
    width: 58%;
}

.pipeline-document-preview--bullets span {
    position: relative;
    margin-left: 18px;
}

.pipeline-document-preview--bullets span::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 2px;
    width: 6px;
    height: 6px;
    background: var(--pipeline-primary);
    border-radius: 999px;
}

.pipeline-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pipeline-topic-row span {
    padding: 8px 14px;
    color: var(--pipeline-primary);
    background: var(--pipeline-soft);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 700;
}

.pipeline-download-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 16px;
    color: var(--pipeline-muted);
    border: 1px solid var(--pipeline-border);
    border-radius: 12px;
}

.pipeline-download-row b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pipeline-text);
    font-weight: 700;
}

.pipeline-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 40px;
    padding-block: 44px 32px;
}

.pipeline-main-column {
    display: grid;
    gap: 28px;
}

.pipeline-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.pipeline-info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    min-height: 188px;
    padding: 24px;
}

.pipeline-card p {
    margin: 12px 0 0;
}

.pipeline-workflow-card,
.pipeline-description-card,
.pipeline-calculator {
    padding: 28px;
}

.pipeline-section-title {
    gap: 16px;
}

.pipeline-workflow {
    position: relative;
    display: grid;
    gap: 28px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.pipeline-workflow::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    border-left: 2px dashed rgba(80, 71, 232, .45);
}

.pipeline-workflow li {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    align-items: start;
}

.pipeline-workflow li > span {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: var(--pipeline-gradient);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(80, 71, 232, .24);
    font-weight: 900;
}

.pipeline-workflow h3 {
    margin: 2px 0 0;
    color: var(--pipeline-text);
    font-size: 1.08rem;
}

.pipeline-workflow p {
    margin-top: 10px;
}

.pipeline-description {
    margin-top: 22px;
    color: #36405A;
    font-size: 1rem;
}

.pipeline-description p:first-child {
    margin-top: 0;
}

.pipeline-description p:last-child {
    margin-bottom: 0;
}

.pipeline-calculator {
    position: sticky;
    top: 116px;
    align-self: start;
}

.pipeline-calculator > p {
    margin: 22px 0 28px;
    font-size: 1.18rem;
}

.pipeline-field {
    display: grid;
    gap: 12px;
    color: var(--pipeline-text);
    font-weight: 700;
}

.pipeline-duration-input {
    display: grid;
    grid-template-columns: 1fr 74px;
    min-height: 70px;
    border: 1px solid #C8CEDD;
    border-radius: 12px;
    overflow: hidden;
}

.pipeline-duration-input input {
    width: 100%;
    min-width: 0;
    padding: 0 22px;
    color: var(--pipeline-text);
    background: #fff;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 1.65rem;
}

.pipeline-duration-input em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pipeline-muted);
    background: #F6F7FB;
    border-left: 1px solid var(--pipeline-border);
    font-style: normal;
}

.pipeline-inline-alert {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding: 14px;
    color: var(--pipeline-primary);
    background: var(--pipeline-soft);
    border-radius: 12px;
    font-weight: 700;
}

.pipeline-price-list {
    display: grid;
    gap: 18px;
    margin: 34px 0 26px;
}

.pipeline-price-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.pipeline-price-list dt,
.pipeline-price-list dd {
    margin: 0;
}

.pipeline-price-list dd {
    color: var(--pipeline-text);
    font-weight: 800;
    white-space: nowrap;
}

.pipeline-total {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, #F7F5FF 0%, #ECEBFF 100%);
    border-radius: 16px;
}

.pipeline-total span {
    color: var(--pipeline-text);
    font-size: 1.25rem;
    font-weight: 900;
}

.pipeline-total strong {
    color: var(--pipeline-primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1;
}

.pipeline-total em {
    grid-column: 1 / -1;
    justify-self: center;
    gap: 8px;
    padding: 8px 16px;
    color: var(--pipeline-primary);
    background: rgba(80, 71, 232, .11);
    border-radius: 999px;
    font-style: normal;
    font-weight: 800;
}

.pipeline-calculator__submit {
    width: 100%;
    margin-top: 26px;
}

.pipeline-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-block: 8px 48px;
    padding: 28px;
}

.pipeline-benefits article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding-inline: 26px;
    border-right: 1px solid var(--pipeline-border);
}

.pipeline-benefits article:last-child {
    border-right: 0;
}

.pipeline-benefits h2 {
    margin: 0;
    font-size: 1rem;
}

.pipeline-benefits p {
    margin: 6px 0 0;
    color: var(--pipeline-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.pipeline-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 38px;
    margin-bottom: 34px;
    padding: 38px;
}

.pipeline-footer nav {
    display: grid;
    align-content: start;
    gap: 16px;
}

.pipeline-footer p {
    max-width: 360px;
}

.pipeline-footer h2 {
    font-size: 1.1rem;
}

.pipeline-footer a:hover {
    color: var(--pipeline-primary);
}

@media (max-width: 1180px) {
    .pipeline-hero,
    .pipeline-content {
        grid-template-columns: 1fr;
    }

    .pipeline-hero {
        min-height: auto;
    }

    .pipeline-hero__visual {
        min-height: 460px;
    }

    .pipeline-hero__visual img {
        min-height: 460px;
    }

    .pipeline-result-card {
        margin-inline: auto;
    }

    .pipeline-calculator {
        position: static;
    }

    .pipeline-benefits,
    .pipeline-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pipeline-benefits article:nth-child(2) {
        border-right: 0;
    }

    .pipeline-benefits article:nth-child(n + 3) {
        margin-top: 22px;
        padding-top: 22px;
        border-top: 1px solid var(--pipeline-border);
    }
}

@media (max-width: 760px) {
    .pipeline-shell,
    .pipeline-header {
        width: min(100% - 28px, 1440px);
    }

    .pipeline-header {
        position: static;
        flex-wrap: wrap;
        gap: 16px;
        min-height: auto;
    }

    .pipeline-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        font-size: .95rem;
    }

    .pipeline-header__cta {
        min-width: 0;
        min-height: 46px;
        padding-inline: 16px;
        font-size: .92rem;
    }

    .pipeline-hero {
        padding-block: 36px 24px;
    }

    .pipeline-hero__lead {
        font-size: 1.08rem;
    }

    .pipeline-hero__actions,
    .pipeline-info-grid,
    .pipeline-benefits,
    .pipeline-footer {
        grid-template-columns: 1fr;
    }

    .pipeline-hero__actions {
        display: grid;
        gap: 16px;
    }

    .pipeline-button {
        width: 100%;
        min-height: 52px;
        padding-inline: 18px;
    }

    .pipeline-hero__visual {
        min-height: auto;
        border-radius: 18px;
    }

    .pipeline-hero__visual img {
        min-height: 320px;
    }

    .pipeline-result-card__header,
    .pipeline-info-card,
    .pipeline-download-row,
    .pipeline-total {
        grid-template-columns: 1fr;
    }

    .pipeline-status-chip,
    .pipeline-download-row b,
    .pipeline-total em {
        justify-self: start;
    }

    .pipeline-card,
    .pipeline-result-card,
    .pipeline-benefits,
    .pipeline-footer {
        border-radius: 14px;
    }

    .pipeline-workflow-card,
    .pipeline-description-card,
    .pipeline-calculator,
    .pipeline-result-card {
        padding: 22px;
    }

    .pipeline-benefits {
        gap: 18px;
    }

    .pipeline-benefits article,
    .pipeline-benefits article:nth-child(n + 3) {
        margin-top: 0;
        padding: 0;
        border: 0;
    }
}
