:root {
    --sal-purple: #5651e0;
    --sal-purple-dark: #403bc3;
    --sal-purple-soft: #f0efff;
    --sal-ink: #202124;
    --sal-text: #50525b;
    --sal-muted: #f5f6f8;
    --sal-line: #dfe1e5;
    --sal-green: #167653;
    --sal-green-soft: #e8f6f0;
    --sal-amber: #8a5a00;
    --sal-amber-soft: #fff6df;
    --sal-white: #ffffff;
    --sal-shadow: 0 18px 50px rgba(32, 33, 36, 0.1);
}

body.soulvi-automation-landing,
body.soulvi-automation-thanks {
    margin: 0;
    background: var(--sal-white);
    color: var(--sal-text);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
}

.soulvi-automation-landing *,
.soulvi-automation-landing *::before,
.soulvi-automation-landing *::after,
.soulvi-automation-thanks *,
.soulvi-automation-thanks *::before,
.soulvi-automation-thanks *::after {
    box-sizing: border-box;
}

.soulvi-automation-landing h1,
.soulvi-automation-landing h2,
.soulvi-automation-landing h3,
.soulvi-automation-landing p,
.soulvi-automation-landing ul,
.soulvi-automation-landing ol,
.soulvi-automation-thanks h1,
.soulvi-automation-thanks h2,
.soulvi-automation-thanks h3,
.soulvi-automation-thanks p,
.soulvi-automation-thanks ol {
    margin-top: 0;
}

.soulvi-automation-landing h1,
.soulvi-automation-landing h2,
.soulvi-automation-landing h3,
.soulvi-automation-thanks h1,
.soulvi-automation-thanks h2,
.soulvi-automation-thanks h3 {
    color: var(--sal-ink);
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: 0;
}

.soulvi-automation-landing a,
.soulvi-automation-thanks a {
    color: inherit;
}

.soulvi-automation-landing a:focus-visible,
.soulvi-automation-landing button:focus-visible,
.soulvi-automation-landing input:focus-visible,
.soulvi-automation-landing textarea:focus-visible,
.soulvi-automation-landing summary:focus-visible,
.soulvi-automation-thanks a:focus-visible {
    outline: 3px solid #f5b940;
    outline-offset: 3px;
}

.sal-shell {
    width: calc(100% - 48px);
    max-width: 1240px;
    margin-inline: auto;
}

.sal-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--sal-ink);
    color: var(--sal-white) !important;
    transform: translateY(-160%);
}

.sal-skip-link:focus {
    transform: translateY(0);
}

.sal-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 76px;
    background: var(--sal-white);
    border-bottom: 1px solid var(--sal-line);
}

.sal-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sal-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.sal-logo__image {
    display: block;
    width: 132px;
    height: auto;
}

.sal-logo__text {
    color: var(--sal-ink);
    font-size: 24px;
    font-weight: 800;
}

.sal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-left: auto;
}

.sal-nav a {
    color: #3d3e45;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.sal-nav a:hover {
    color: var(--sal-purple);
}

.sal-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.sal-home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #45464d !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.sal-home-link:hover {
    color: var(--sal-purple) !important;
}

.sal-home-link__short {
    display: none;
}

.sal-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid var(--sal-purple);
    border-radius: 6px;
    background: var(--sal-purple);
    color: var(--sal-white) !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sal-button:hover {
    border-color: var(--sal-purple-dark);
    background: var(--sal-purple-dark);
    color: var(--sal-white) !important;
    transform: translateY(-1px);
}

.sal-button--small {
    min-height: 44px;
    padding: 10px 17px;
    font-size: 14px;
}

.sal-button--secondary {
    background: transparent;
    color: var(--sal-purple) !important;
}

.sal-button--secondary:hover {
    background: var(--sal-purple-soft);
    color: var(--sal-purple-dark) !important;
}

.sal-button--light {
    border-color: var(--sal-white);
    background: var(--sal-white);
    color: var(--sal-ink) !important;
}

.sal-button--light:hover {
    border-color: #e6e6ea;
    background: #e6e6ea;
    color: var(--sal-ink) !important;
}

.sal-hero {
    border-bottom: 1px solid var(--sal-line);
    background: var(--sal-white);
}

.sal-hero__grid {
    min-height: 770px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 64px;
    padding-block: 64px 72px;
}

.sal-hero__content {
    max-width: 680px;
}

.sal-eyebrow {
    margin-bottom: 16px;
    color: var(--sal-purple);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.sal-hero h1 {
    margin-bottom: 24px;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.08;
}

.sal-hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: #44464e;
    font-size: 19px;
    line-height: 1.65;
}

.sal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.sal-trust-line {
    max-width: 610px;
    margin-bottom: 28px;
    color: #62646c;
    font-size: 14px;
}

.sal-flow-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
    border-left: 4px solid var(--sal-purple);
    background: var(--sal-muted);
    color: #41434a;
    font-size: 13px;
    font-weight: 600;
}

.sal-flow-summary span[aria-hidden="true"] {
    color: var(--sal-purple);
}

.sal-form-card {
    position: relative;
    padding: 32px;
    border: 1px solid var(--sal-line);
    border-top: 4px solid var(--sal-purple);
    border-radius: 8px;
    background: var(--sal-white);
    box-shadow: var(--sal-shadow);
}

.sal-form-card__header {
    margin-bottom: 24px;
}

.sal-form-card__kicker {
    margin-bottom: 6px;
    color: var(--sal-purple);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sal-form-card h2 {
    margin-bottom: 10px;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.sal-form-card__header > p:last-child {
    margin-bottom: 0;
    color: #62646c;
    font-size: 14px;
}

.sal-form {
    position: relative;
}

.sal-form__row {
    margin-bottom: 16px;
}

.sal-form__row--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sal-field {
    margin-bottom: 16px;
}

.sal-form__row .sal-field {
    margin-bottom: 0;
}

.sal-field label {
    display: block;
    margin-bottom: 7px;
    color: #303138;
    font-size: 13px;
    font-weight: 600;
}

.sal-optional {
    color: #73757d;
    font-size: 11px;
    font-weight: 400;
}

.sal-field input,
.sal-field textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    border: 1px solid #c9cbd1;
    border-radius: 6px;
    background: var(--sal-white);
    color: var(--sal-ink);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
}

.sal-field input {
    min-height: 48px;
    padding: 11px 13px;
}

.sal-field textarea {
    min-height: 126px;
    padding: 12px 13px;
    resize: vertical;
}

.sal-field input:focus,
.sal-field textarea:focus {
    border-color: var(--sal-purple);
    background: var(--sal-white);
    box-shadow: 0 0 0 3px rgba(86, 81, 224, 0.14);
    outline: 0;
}

.sal-field textarea::placeholder {
    color: #81838a;
    opacity: 1;
}

.sal-privacy {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    margin: 18px 0;
}

.sal-privacy input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: var(--sal-purple);
}

.sal-privacy label {
    color: #565860;
    font-size: 12px;
    line-height: 1.55;
}

.sal-privacy a,
.sal-form-note a {
    color: var(--sal-purple);
    text-decoration: underline;
}

.sal-button--submit {
    width: 100%;
    border: 0;
}

.sal-button--submit[aria-busy="true"] {
    cursor: wait;
    opacity: 0.86;
}

.sal-button__loader {
    width: 16px;
    height: 16px;
    display: none;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: var(--sal-white);
    border-radius: 50%;
    animation: sal-spin 700ms linear infinite;
}

.sal-button--submit[aria-busy="true"] .sal-button__loader {
    display: inline-block;
}

.sal-form-status {
    min-height: 1.4em;
    margin-top: 10px;
    color: #a52929;
    font-size: 12px;
    text-align: center;
}

.sal-form-note {
    margin: 4px 0 0;
    color: #74767e;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.sal-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.sal-contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--sal-line);
}

.sal-contact-options a {
    color: #54565d;
    font-size: 12px;
    font-weight: 500;
}

.sal-contact-options a:hover {
    color: var(--sal-purple);
}

.sal-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid #efb8b8;
    border-radius: 6px;
    font-size: 13px;
}

.sal-alert--error {
    background: #fff3f3;
    color: #842929;
}

.sal-section {
    padding-block: 104px;
    background: var(--sal-white);
}

#proceso,
#faq,
#preguntas {
    scroll-margin-top: 96px;
}

.sal-anchor-alias {
    display: block;
    height: 0;
}

.sal-section--muted {
    background: var(--sal-muted);
}

.sal-section-heading {
    max-width: 790px;
    margin-bottom: 48px;
}

.sal-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.sal-section-heading h2,
.sal-final-cta h2,
.sal-why h2 {
    margin-bottom: 18px;
    font-size: 40px;
    font-weight: 750;
    line-height: 1.2;
}

.sal-section-heading > p:last-child,
.sal-final-cta p,
.sal-why__content > p:last-of-type {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.75;
}

.sal-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sal-problem-grid li {
    min-height: 154px;
    padding: 24px;
    border: 1px solid var(--sal-line);
    border-radius: 8px;
    background: var(--sal-white);
    color: #34363d;
    font-size: 15px;
    font-weight: 500;
}

.sal-problem-grid li span {
    display: block;
    margin-bottom: 22px;
    color: var(--sal-purple);
    font-size: 12px;
    font-weight: 700;
}

.sal-comparison__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.sal-comparison__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--sal-purple);
    color: var(--sal-white);
    font-size: 25px;
    font-weight: 700;
}

.sal-process-panel {
    height: 100%;
    padding: 32px;
    border: 1px solid var(--sal-line);
    border-radius: 8px;
    background: var(--sal-white);
}

.sal-process-panel--before {
    border-top: 4px solid var(--sal-amber);
}

.sal-process-panel--after {
    border-top: 4px solid var(--sal-green);
}

.sal-process-panel__label {
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.sal-process-panel--before .sal-process-panel__label {
    color: var(--sal-amber);
}

.sal-process-panel--after .sal-process-panel__label {
    color: var(--sal-green);
}

.sal-process-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sal-process-panel li {
    position: relative;
    min-height: 45px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    color: #3f4148;
    font-size: 14px;
}

.sal-process-panel li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 3px;
    left: 14px;
    width: 2px;
    background: var(--sal-line);
}

.sal-process-panel li span {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sal-line);
    border-radius: 50%;
    background: var(--sal-white);
    color: #55575f;
    font-size: 11px;
    font-weight: 700;
}

.sal-process-panel--after li span {
    border-color: #80bba5;
    background: var(--sal-green-soft);
    color: var(--sal-green);
}

.sal-card-grid {
    display: grid;
    gap: 18px;
}

.sal-card-grid--solutions,
.sal-card-grid--cases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sal-solution-card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--sal-line);
    border-radius: 8px;
    background: var(--sal-white);
}

.sal-card-number {
    display: block;
    margin-bottom: 38px;
    color: var(--sal-purple);
    font-size: 12px;
    font-weight: 700;
}

.sal-solution-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.35;
}

.sal-solution-card p {
    margin-bottom: 0;
    color: #5b5d65;
    font-size: 14px;
    line-height: 1.7;
}

.sal-case-card {
    overflow: hidden;
    border: 1px solid var(--sal-line);
    border-radius: 8px;
    background: var(--sal-white);
}

.sal-case-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: var(--sal-muted);
}

.sal-case-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 220ms ease;
}

.sal-case-card:hover .sal-case-card__image img {
    transform: scale(1.025);
}

.sal-case-card__body {
    padding: 25px;
}

.sal-case-card__type {
    margin-bottom: 9px;
    color: var(--sal-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sal-case-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;
}

.sal-case-card__body > p:not(.sal-case-card__type) {
    margin-bottom: 19px;
    color: #5c5e66;
    font-size: 14px;
    line-height: 1.7;
}

.sal-text-link {
    color: var(--sal-purple) !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.sal-text-link:hover {
    text-decoration: underline;
}

.sal-example-note {
    margin: 34px 0 0;
    padding: 24px 26px;
    border-left: 4px solid var(--sal-purple);
    background: var(--sal-purple-soft);
    color: #4d4f57;
    font-size: 14px;
    line-height: 1.75;
}

.sal-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sal-steps li {
    position: relative;
    padding: 0 28px;
}

.sal-steps li:first-child {
    padding-left: 0;
}

.sal-steps li:last-child {
    padding-right: 0;
}

.sal-steps li:not(:last-child) {
    border-right: 1px solid var(--sal-line);
}

.sal-step-number {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 50%;
    background: var(--sal-purple);
    color: var(--sal-white);
    font-size: 13px;
    font-weight: 700;
}

.sal-steps h3 {
    margin-bottom: 11px;
    font-size: 18px;
    line-height: 1.4;
}

.sal-steps p {
    margin-bottom: 0;
    color: #61636b;
    font-size: 14px;
    line-height: 1.7;
}

.sal-why {
    background: var(--sal-ink);
    color: #d7d8dc;
}

.sal-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 90px;
}

.sal-why h2 {
    color: var(--sal-white);
}

.sal-why .sal-eyebrow {
    color: #aaa7ff;
}

.sal-why__content > p:last-of-type {
    margin-bottom: 30px;
    color: #c3c4c9;
}

.sal-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sal-check-list li {
    min-height: 72px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px solid #42434a;
    border-radius: 8px;
    color: #e8e8eb;
    font-size: 13px;
}

.sal-check-list li span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sal-green-soft);
    color: var(--sal-green);
    font-weight: 800;
}

.sal-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 90px;
}

.sal-section-heading--sticky {
    position: sticky;
    top: 116px;
    margin-bottom: 0;
}

.sal-faq-list details {
    border-bottom: 1px solid var(--sal-line);
}

.sal-faq-list details:first-child {
    border-top: 1px solid var(--sal-line);
}

.sal-faq-list summary {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 20px;
    padding: 18px 4px;
    color: var(--sal-ink);
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.sal-faq-list summary::-webkit-details-marker {
    display: none;
}

.sal-faq-list summary span {
    position: relative;
    width: 22px;
    height: 22px;
}

.sal-faq-list summary span::before,
.sal-faq-list summary span::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 14px;
    height: 2px;
    background: var(--sal-purple);
}

.sal-faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

.sal-faq-list details[open] summary span::after {
    transform: rotate(0);
}

.sal-faq-list details > div {
    padding: 0 44px 22px 4px;
}

.sal-faq-list details p {
    margin-bottom: 0;
    color: #5f6169;
    font-size: 14px;
    line-height: 1.75;
}

.sal-final-cta {
    padding-block: 82px;
    background: var(--sal-purple-soft);
}

.sal-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 60px;
}

.sal-final-cta__inner > div {
    max-width: 820px;
}

.sal-final-cta h2 {
    font-size: 38px;
}

.sal-final-cta p:last-child {
    margin-bottom: 0;
}

.sal-footer {
    margin: 0 !important;
    padding: 62px 0 0 !important;
    width: 100% !important;
    background: #1d1e22;
    color: #c7c8cd;
}

.sal-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.7fr;
    gap: 70px;
    padding-bottom: 50px;
}

.sal-logo--footer .sal-logo__image {
    filter: brightness(0) invert(1);
}

.sal-footer p,
.sal-footer address {
    margin: 18px 0 0;
    color: #bfc0c5;
    font-size: 13px;
    font-style: normal;
    line-height: 1.8;
}

.sal-footer h2 {
    margin-bottom: 16px;
    color: var(--sal-white);
    font-size: 14px;
    font-weight: 650;
}

.sal-footer a {
    color: #d7d8dd;
}

.sal-footer__grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.sal-footer nav a {
    font-size: 13px;
    text-decoration: none;
}

.sal-footer nav a:hover,
.sal-footer address a:hover {
    color: var(--sal-white);
    text-decoration: underline;
}

.sal-footer__bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #393a40;
}

.sal-footer__bottom p {
    margin: 0;
    font-size: 12px;
}

.sal-footer__bottom nav {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.sal-mobile-cta {
    display: none;
}

.sal-thanks {
    background: var(--sal-muted);
}

.sal-thanks__hero {
    min-height: calc(100vh - 142px);
    display: flex;
    align-items: center;
    padding-block: 82px 88px;
    border-bottom: 1px solid var(--sal-line);
}

.sal-thanks__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: 78px;
}

.sal-thanks__intro {
    max-width: 650px;
}

.sal-thanks__status {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 36px;
    padding: 11px 16px 11px 11px;
    border: 1px solid #cde8dc;
    border-radius: 8px;
    background: var(--sal-white);
    color: var(--sal-ink);
}

.sal-thanks__status > span:last-child {
    display: flex;
    flex-direction: column;
}

.sal-thanks__status strong {
    font-size: 13px;
    line-height: 1.45;
}

.sal-thanks__status small {
    color: #6b6e76;
    font-size: 11px;
    line-height: 1.45;
}

.sal-thanks__mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sal-green-soft);
    color: var(--sal-green);
    font-size: 20px;
    font-weight: 800;
}

.sal-thanks h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.12;
}

.sal-thanks h1 span {
    color: var(--sal-purple);
}

.sal-thanks__lead {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.7;
}

.sal-thanks__assurance {
    max-width: 630px;
    padding: 18px 22px;
    border-left: 3px solid var(--sal-green);
    border-radius: 0 6px 6px 0;
    background: var(--sal-green-soft);
}

.sal-thanks__assurance > span {
    display: block;
    margin-bottom: 5px;
    color: var(--sal-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sal-thanks__assurance p {
    margin: 0;
    color: #3f5149;
    font-size: 13px;
    line-height: 1.65;
}

.sal-next-steps {
    margin: 0;
    padding: 36px 38px 32px;
    border: 1px solid var(--sal-line);
    border-top: 4px solid var(--sal-purple);
    border-radius: 8px;
    background: var(--sal-white);
    box-shadow: var(--sal-shadow);
    text-align: left;
}

.sal-next-steps__kicker {
    margin-bottom: 8px;
    color: var(--sal-purple);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.sal-next-steps h2 {
    max-width: 460px;
    margin-bottom: 26px;
    font-size: 27px;
    line-height: 1.25;
}

.sal-next-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sal-next-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding-block: 20px;
    border-top: 1px solid var(--sal-line);
}

.sal-next-steps li > span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sal-purple-soft);
    color: var(--sal-purple);
    font-size: 11px;
    font-weight: 700;
}

.sal-next-steps h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.sal-next-steps p {
    margin: 0;
    color: #60626a;
    font-size: 13px;
    line-height: 1.65;
}

.sal-thanks__contact {
    padding-top: 22px;
    border-top: 1px solid var(--sal-line);
}

.sal-thanks__contact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--sal-ink);
    font-size: 13px;
}

.sal-thanks__contact a {
    color: var(--sal-purple);
    font-weight: 600;
}

.sal-thanks-more {
    padding-block: 56px;
    background: var(--sal-white);
}

.sal-thanks-more__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 56px;
}

.sal-thanks-more .sal-eyebrow {
    margin-bottom: 8px;
}

.sal-thanks-more h2 {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.3;
}

.sal-thanks-more p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 14px;
}

.sal-thanks__empty {
    min-height: calc(100vh - 142px);
    display: flex;
    align-items: center;
    padding-block: 92px;
}

.sal-thanks__empty-inner {
    max-width: 820px;
    text-align: center;
}

.sal-thanks__empty h1 {
    margin-inline: auto;
}

.sal-thanks__empty .sal-thanks__lead {
    margin-inline: auto;
}

.sal-actions--center {
    justify-content: center;
}

.sal-footer--compact {
    padding-top: 0 !important;
}

@keyframes sal-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .sal-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 38px;
    }

    .sal-hero h1 {
        font-size: 46px;
    }

    .sal-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sal-faq-layout,
    .sal-why__grid {
        gap: 56px;
    }
}

@media (max-width: 900px) {
    .sal-nav {
        display: none;
    }

    .sal-header__actions {
        margin-left: auto;
    }

    .sal-hero__grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
        padding-block: 64px 76px;
    }

    .sal-hero__content {
        max-width: 760px;
    }

    .sal-form-card {
        width: 100%;
        max-width: 720px;
        margin-inline: auto;
    }

    .sal-card-grid--cases {
        grid-template-columns: minmax(0, 1fr);
    }

    .sal-case-card {
        display: grid;
        grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    }

    .sal-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 0;
    }

    .sal-steps li:nth-child(2) {
        border-right: 0;
        padding-right: 0;
    }

    .sal-steps li:nth-child(3) {
        padding-left: 0;
    }

    .sal-faq-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .sal-section-heading--sticky {
        position: static;
    }

    .sal-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }

    .sal-thanks__hero {
        min-height: 0;
        padding-block: 72px;
    }

    .sal-thanks__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 46px;
    }

    .sal-thanks__intro {
        max-width: 740px;
    }

    .sal-next-steps {
        max-width: 740px;
    }

    .sal-thanks-more__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }
}

@media (max-width: 768px) {
    body.soulvi-automation-landing {
        padding-bottom: 72px;
    }

    .sal-shell {
        width: calc(100% - 36px);
    }

    .sal-header,
    .sal-header__inner {
        min-height: 68px;
    }

    .sal-logo__image {
        width: 116px;
    }

    .sal-header__inner {
        gap: 12px;
    }

    .sal-header__actions {
        gap: 11px;
    }

    .sal-home-link {
        font-size: 12px;
    }

    .sal-header .sal-button--small {
        min-height: 42px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .sal-hero__grid {
        padding-block: 52px 64px;
    }

    .sal-hero h1 {
        font-size: 39px;
    }

    .sal-hero__lead {
        font-size: 17px;
    }

    .sal-section {
        padding-block: 76px;
    }

    .sal-section-heading {
        margin-bottom: 36px;
    }

    .sal-section-heading h2,
    .sal-final-cta h2,
    .sal-why h2 {
        font-size: 32px;
    }

    .sal-section-heading > p:last-child,
    .sal-final-cta p,
    .sal-why__content > p:last-of-type {
        font-size: 15px;
    }

    .sal-comparison__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .sal-comparison__connector {
        width: 48px;
        height: 48px;
        margin-inline: auto;
        transform: rotate(90deg);
    }

    .sal-card-grid--solutions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sal-why__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    .sal-check-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .sal-final-cta {
        padding-block: 64px;
    }

    .sal-final-cta__inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }

    .sal-final-cta__inner .sal-button {
        justify-self: start;
    }

    .sal-footer__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sal-mobile-cta {
        position: fixed;
        right: 14px;
        bottom: 12px;
        left: 14px;
        z-index: 90;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border: 2px solid var(--sal-white);
        border-radius: 6px;
        background: var(--sal-purple);
        box-shadow: 0 8px 25px rgba(32, 33, 36, 0.25);
        color: var(--sal-white) !important;
        font-size: 14px;
        font-weight: 650;
        text-decoration: none;
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .sal-mobile-cta.is-hidden {
        pointer-events: none;
        opacity: 0;
        transform: translateY(20px);
    }

    .grecaptcha-badge {
        bottom: 76px !important;
        z-index: 80;
    }

    .sal-thanks__hero {
        padding-block: 58px 64px;
    }

    .sal-thanks h1 {
        font-size: 40px;
    }

    .sal-next-steps {
        padding: 30px 28px 26px;
    }

    .sal-thanks-more {
        padding-block: 46px;
    }

    .sal-thanks__empty {
        min-height: calc(100vh - 134px);
        padding-block: 72px;
    }

    .sal-footer__bottom {
        min-height: 82px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }
}

@media (max-width: 520px) {
    .sal-shell {
        width: calc(100% - 30px);
    }

    .sal-logo__image {
        width: 102px;
    }

    .sal-header__actions {
        gap: 8px;
    }

    .sal-home-link__long {
        display: none;
    }

    .sal-home-link__short {
        display: inline;
    }

    .sal-header .sal-button--small {
        max-width: 126px;
        padding-inline: 10px;
        line-height: 1.25;
    }

    .sal-hero h1 {
        font-size: 34px;
        line-height: 1.13;
    }

    .sal-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sal-actions .sal-button {
        width: 100%;
    }

    .sal-flow-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .sal-flow-summary span[aria-hidden="true"] {
        transform: rotate(90deg);
    }

    .sal-form-card {
        padding: 24px 18px;
    }

    .sal-form-card h2 {
        font-size: 24px;
    }

    .sal-form__row--split,
    .sal-problem-grid,
    .sal-card-grid--solutions,
    .sal-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .sal-form__row--split {
        gap: 16px;
    }

    .sal-form__row .sal-field {
        margin-bottom: 0;
    }

    .sal-problem-grid li {
        min-height: 0;
    }

    .sal-process-panel {
        padding: 24px 18px;
    }

    .sal-solution-card {
        min-height: 0;
    }

    .sal-case-card {
        display: block;
    }

    .sal-steps {
        gap: 34px;
    }

    .sal-steps li,
    .sal-steps li:first-child,
    .sal-steps li:nth-child(2),
    .sal-steps li:nth-child(3),
    .sal-steps li:last-child {
        padding: 0;
        border-right: 0;
    }

    .sal-section-heading h2,
    .sal-final-cta h2,
    .sal-why h2 {
        font-size: 29px;
    }

    .sal-footer__grid {
        gap: 32px;
    }

    .sal-thanks h1 {
        font-size: 35px;
    }

    .sal-thanks__lead {
        font-size: 16px;
    }

    .sal-thanks__status {
        width: 100%;
        margin-bottom: 30px;
    }

    .sal-thanks__assurance {
        padding: 17px 18px;
    }

    .sal-next-steps {
        padding: 26px 20px 22px;
    }

    .sal-next-steps h2 {
        font-size: 24px;
    }

    .sal-thanks-more h2 {
        font-size: 25px;
    }

    .sal-thanks__empty {
        padding-block: 62px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .soulvi-automation-landing *,
    .soulvi-automation-landing *::before,
    .soulvi-automation-landing *::after,
    .soulvi-automation-thanks *,
    .soulvi-automation-thanks *::before,
    .soulvi-automation-thanks *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
