/**
 * Copyright since 2007 Pliciweb Solutions
 *
 * @author    Pliciweb Solutions <contact@pliciweb.com>
 * @copyright Since 2007 Pliciweb Solutions
 * @license   https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
 */
:root {
    --sob-orange: rgb(225, 66, 16);
    --sob-orange-hover: rgb(231, 113, 27);
    --sob-orange-light: rgb(247, 170, 145);
    --sob-orange-bg: rgb(253, 236, 231);
    --sob-navy: rgb(8, 23, 52);
    --sob-navy-text: rgb(8, 23, 52);
    --sob-white: rgb(255, 255, 255);
    --sob-gray-50: rgb(245, 245, 245);
    --sob-gray-100: rgb(245, 245, 247);
    --sob-gray-200: rgb(234, 234, 234);
    --sob-gray-300: rgb(225, 225, 225);
    --sob-gray-400: rgb(178, 178, 178);
    --sob-gray-500: rgb(153, 153, 153);
    --sob-gray-600: rgb(137, 137, 137);
    --sob-gray-700: rgb(89, 89, 89);
    --sob-gray-800: rgb(58, 58, 58);
    --sob-gray-900: rgb(35, 35, 35);
    --sob-lavender: rgb(170, 167, 185);
    --sob-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --sob-shadow-card: 0 8px 24px rgba(0, 82, 146, 0.1), 0 4px 8px rgba(0, 82, 146, 0.1);
    --sob-shadow-soft: 0 4px 8px rgba(0, 0, 0, 0.1);
    --sob-radius-sm: 4px;
    --sob-radius-md: 8px;
}

body#cms .page-content.page-cms:has(.pliciwebmainv2_hero) p {
    font-weight: 400;
}

body#cms #main {
    /* container-type: inline-size; */
}

.cbp-hrmenu-tab:not(.cbp-has-submeu) * {
    color: var(--sob-orange) !important;
}

.sob-block {
    color: var(--sob-navy);
    font-family: var(--sob-font);
    line-height: 1.5;
}

.sob-block * {
    box-sizing: border-box;
    font-family: var(--sob-font);
}

.sob-block img {
    max-width: 100%;
    display: block;
}

.sob-block button {
    font-family: inherit;
    cursor: pointer;
}

.sob-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sob-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 14px 24px;
    border-radius: var(--sob-radius-sm);
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sob-btn--primary {
    background: var(--sob-orange);
    color: var(--sob-white);
    border-color: var(--sob-orange);
}

.sob-btn--primary:hover {
    background: var(--sob-orange-hover);
    border-color: var(--sob-orange-hover);
    color: var(--sob-white);
}

.sob-btn--outline {
    background: var(--sob-white);
    color: var(--sob-orange);
    border-color: var(--sob-orange);
}

.sob-btn--outline:hover {
    background: var(--sob-orange-bg);
    color: var(--sob-orange);
}

.sob-btn--ghost {
    background: transparent;
    color: var(--sob-orange);
    border-color: transparent;
    text-transform: none;
    letter-spacing: 0;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.sob-btn--ghost:hover {
    text-decoration: underline;
    color: var(--sob-orange);
}

.sob-btn--block {
    width: 100%;
}

.sob-btn .sob-btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.sob-hero {
    display: flex;
    flex-direction: row;
    background: var(--sob-white);
    min-height: 608px;
    width: 100cqw;
    margin-left: calc(50% - 50cqw);
}

.sob-hero__txt {
    text-align: left;
}

.sob-hero__txt * {
    text-align: left;
}



.sob-hero__media {
    flex: 1 1 50%;
    min-height: 608px;
    background: center / cover no-repeat;
    background-color: #e8e8e8;
}

.sob-hero__content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    padding: 48px 96px 88px 80px;
}

.sob-hero__title {
    margin: 0;
    font-family: var(--sob-font);
    font-weight: 700;
    color: var(--sob-navy);
    font-size: 32px;
    line-height: 1.22;
    text-wrap: pretty;
}

.sob-hero__lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sob-navy);
}

.sob-hero__ctas {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.sob-hero__ctas .sob-btn--primary {
    min-width: 322px;
}

.sob-hero__ctas .sob-btn--ghost .sob-btn-icon {
    rotate: 90deg;
}

.sob-reassurance {
    padding: 0 40px;
    position: relative;
}

.sob-reassurance__inner {
    background: var(--sob-gray-50);
    border-radius: var(--sob-radius-md);
    padding: 32px 80px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

.sob-reassurance__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.sob-reassurance__icon {
    width: 40px;
    height: 40px;
    color: var(--sob-orange);
}

.sob-reassurance__icon svg {
    width: 100%;
    height: 100%;
}

.sob-reassurance__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sob-reassurance__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #000;
}

.sob-reassurance__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--sob-navy);
}

.sob-timeline {
    --sob-timeline-gap: 40px;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sob-timeline-gap);
}

.sob-timeline__header {
    max-width: 1042px;
    padding: 0 40px;
    text-align: center;
}

.sob-timeline__title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--sob-navy);
    white-space: pre-line;
}

.sob-timeline__subtitle {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sob-navy);
}

.sob-timeline__list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 1270px;
}

.sob-timeline__item {
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 52px 1fr;
    gap: 20px;
    min-height: 370px;
}

.sob-timeline__item.is-reversed .sob-timeline__media {
    order: 3;
}

.sob-timeline__item.is-reversed .sob-timeline__rail {
    order: 2;
}

.sob-timeline__item.is-reversed .sob-timeline__content {
    order: 1;
}

.sob-timeline__media {
    width: 100%;
    height: 370px;
}

.sob-timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--sob-gray-50);
    border: 1px solid var(--sob-lavender);
}

.sob-timeline__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    position: relative;
}

.sob-timeline__dash {
    flex: 1 1 auto;
    width: 0;
    border-left: 2px dashed var(--sob-orange);
    min-height: 40px;
}

.sob-timeline__dash.is-first {
    visibility: hidden;
}

.sob-timeline__num {
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--sob-orange);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 24px;
}

.sob-timeline__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    gap: 8px;
}

.sob-timeline__icon {
    width: 40px;
    height: 40px;
    color: var(--sob-orange);
    margin-bottom: 8px;
}

.sob-timeline__icon svg {
    width: 100%;
    height: 100%;
}

.sob-timeline__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sob-timeline__eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sob-orange);
}

.sob-timeline__item-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.22;
    color: var(--sob-navy);
}

.sob-timeline__item-text {
    margin: 8px 0 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sob-navy);
    max-width: 500px;
}

.sob-timeline__cta {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
}

.sob-timeline__cta .sob-btn {
    min-width: 314px;
}

.sob-testi {
    display: flex;
    flex-direction: row;
    width: 100cqw;
    margin-left: calc(50% - 50cqw);
    min-height: 513px;
}

.sob-testi__media {
    flex: 1 1 50%;
    min-height: 513px;
    background: center / cover no-repeat;
}

.sob-testi__panel {
    flex: 1 1 50%;
    background: var(--sob-navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0;
    gap: 28px;
    overflow: hidden;
}

.sob-testi__panel .sob-testi__title {
    padding: 0 60px;
}

.sob-testi__panel .sob-testi__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.32;
    color: #fff !important;
    text-align: left;
}

.sob-testi__stage {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.sob-testi__track {
    display: flex;
    gap: 20px;
    transform: translateX(0);
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.sob-testi__track.is-no-transition {
    transition: none;
}

.sob-testi__card {
    position: relative;
    flex: 0 0 70%;
    max-width: 780px;
    padding: 28px 32px;
    /* border-radius: 8px; */
    background: var(--sob-white);
    border: 1px solid transparent;
    color: var(--sob-navy);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0.35;
    transition: opacity .3s ease;
}

.sob-testi__card.is-active {
    opacity: 1;
}

.sob-testi__card[hidden] {
    display: flex !important;
}

.sob-testi__quote-mark {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 30px;
    height: 30px;
    color: var(--sob-orange);
    opacity: .25;
    font-weight: 500;
    display: none;
}

.sob-testi__panel .sob-testi__quote {
    margin: 0 !important;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sob-navy) !important;
    padding-right: 30px;
}

.sob-testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.sob-testi__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--sob-orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
}

.sob-testi__avatar--img {
    object-fit: cover;
}

.sob-testi__panel .sob-testi__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--sob-navy);
}

.sob-testi__role {
    font-size: 13px;
    color: var(--sob-gray-700);
}

.sob-testi__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.sob-testi__arrow {
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    cursor: pointer;
}

.sob-testi__arrow:hover {
    background: rgba(255, 255, 255, 0.08);
}

.sob-testi__arrow svg {
    width: 24px;
    height: 24px;
}

.sob-testi__dots {
    display: flex;
    gap: 8px;
}

.sob-testi__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    transition: width .2s, background .2s;
    cursor: pointer;
}

.sob-testi__dot.is-active {
    background: var(--sob-white);
    /* width: 22px; */
}

.sob-study {
    background: var(--sob-gray-50);
    padding: 40px;
    display: flex;
    justify-content: center;
    width: 100cqw;
    margin-left: calc(50% - 50cqw);
}

.sob-study input[type="submit"] {
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M17.2959 0.505859C17.3405 0.515629 17.381 0.537935 17.4141 0.569336C17.4442 0.602732 17.4658 0.643296 17.4746 0.6875C17.4838 0.73384 17.4798 0.78206 17.4629 0.826172H17.4619L17.459 0.834961L11.459 17.335V17.3359C11.4418 17.3835 11.4102 17.4246 11.3691 17.4541C11.3315 17.4811 11.2872 17.4948 11.2412 17.498C11.1969 17.4945 11.1537 17.4816 11.1172 17.4561C11.0773 17.4281 11.0463 17.389 11.0283 17.3438V17.3428L8.14844 10.1426L8.06836 9.94336L7.87012 9.86426L0.669922 6.98438L0.661133 6.98047C0.613906 6.96248 0.572689 6.93122 0.543945 6.88965C0.515128 6.8479 0.5 6.7978 0.5 6.74707C0.500021 6.69652 0.515302 6.64712 0.543945 6.60547C0.572709 6.56379 0.613811 6.53168 0.661133 6.51367L0.660156 6.5127L17.1553 0.515625H17.1562C17.2009 0.499224 17.2494 0.495676 17.2959 0.505859ZM15.8164 1.5332L2.66895 6.28027L1.44336 6.72363L2.65039 7.21387L7.87109 9.33691L8.17773 9.46191L8.41211 9.22656L11.6807 5.95703L12.0322 6.30859L8.56055 9.78027L8.68164 10.0859L10.7744 15.3359L11.2617 16.5596L11.709 15.3203L16.457 2.17285L16.8184 1.1709L15.8164 1.5332Z' fill='black' stroke='%23F8FAFC'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 18px 18px;
}

.sob-study__card {
    width: 100%;
    max-width: 1180px;
    background: var(--sob-white);
    box-shadow: var(--sob-shadow-card);
    padding: 32px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sob-study__title {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--sob-navy);
}

.sob-study__sub {
    margin: 0;
    font-size: 16px;
    color: var(--sob-navy);
}

.sob-study__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.sob-study__row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.sob-study__row--full {
    grid-template-columns: 1fr !important;
}

.sob-study__form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: var(--sob-navy);
    text-align: left;
}

.sob-study__required {
    color: var(--sob-orange);
    margin-left: 4px;
}

.sob-study__form input,
.sob-study__form textarea {
    width: 100%;
    background: var(--sob-gray-100);
    border: 1px solid transparent;
    border-radius: var(--sob-radius-sm);
    padding: 13px 16px;
    font-family: inherit;
    font-size: 14px;
    color: var(--sob-navy);
    resize: vertical;
    transition: border-color .15s, background .15s;
}

.sob-study__form input::placeholder,
.sob-study__form textarea::placeholder {
    color: var(--sob-gray-600);
}

.sob-study__form input:focus,
.sob-study__form textarea:focus {
    outline: none;
    border-color: var(--sob-orange);
    background: #fff;
}

.sob-study__legal {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--sob-navy);
}

.sob-study__actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.sob-study__actions .sob-btn {
    min-width: 314px;
}

.sob-contact {
    padding: 0 40px 40px;
    display: flex;
    justify-content: center;
    background: var(--sob-gray-50);
    width: 100cqw;
    margin-left: calc(50% - 50cqw);
}

.sob-contact__card {
    width: 100%;
    max-width: 1180px;
    background: #fff;
    box-shadow: var(--sob-shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    gap: 40px;
}

.sob-contact__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 auto;
}

.sob-contact__badge {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    /* background: var(--sob-orange); */
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sob-contact__badge svg {
    width: 48px;
    height: 48px;
}

.sob-contact__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 1.33;
    color: var(--sob-navy);
}

.sob-contact__title p {
    margin-bottom: 5px !important;
    font-weight: 700 !important;
}

.sob-contact__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex: 0 1 auto;
}

.sob-products {
    padding: 48px 40px;
    background: #fff;
}

.sob-products .swiper-button-next, 
.sob-products .swiper-button-prev {
    color: white
}

.sob-products__head {
    max-width: 1240px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sob-products__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--sob-gray-900);
}

.sob-products__nav {
    display: flex;
    gap: 8px;
}

.sob-products__arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--sob-gray-50);
    border: 1px solid var(--sob-gray-200);
    color: var(--sob-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    cursor: pointer;
}

.sob-products__arrow:hover {
    background: var(--sob-orange);
    border-color: var(--sob-orange);
    color: #fff;
}

.sob-products__arrow svg {
    width: 18px;
    height: 18px;
}

.sob-products__scroller {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.sob-products__scroller::-webkit-scrollbar {
    height: 6px;
}

.sob-products__scroller::-webkit-scrollbar-thumb {
    background: var(--sob-gray-300);
    border-radius: 3px;
}

.sob-products__card {
    scroll-snap-align: start;
    flex: 0 0 260px;
    background: #fff;
    border: 1px solid var(--sob-gray-200);
    border-radius: 4px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: box-shadow .2s, transform .2s;
}

.sob-products__card:hover {
    box-shadow: var(--sob-shadow-soft);
    transform: translateY(-2px);
}

.sob-products__tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--sob-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 1;
}

.sob-products__media {
    display: block;
    height: 180px;
    border-radius: 3px;
    overflow: hidden;
}

.sob-products__img {
    height: 100%;
    background: linear-gradient(135deg, #f3f3f3 0%, #e8e8e8 100%);
    border-radius: 3px;
}

.sob-products__img-el {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.sob-products__label {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--sob-navy);
    min-height: 52px;
}

.sob-products__label a {
    color: inherit;
    text-decoration: none;
}

.sob-products__label a:hover {
    color: var(--sob-orange);
}

.sob-products__price-label {
    font-size: 11px;
    color: var(--sob-gray-700);
}

.sob-products__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--sob-orange);
}

.sob-products__link {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--sob-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sob-products__link:hover {
    color: var(--sob-orange);
}

.sob-projet {
    padding: 0 40px;
}

.sob-projet__inner {
    display: grid;
    grid-template-columns: 546px 1fr;
    min-height: 352px;
    /* border-radius: var(--sob-radius-md); */
    overflow: hidden;
    max-width: 1258px;
    margin: 0 auto;
}

.sob-projet__inner--noimage {
    grid-template-columns: 1fr;
}

.sob-projet__media {
    background: center / cover no-repeat;
    background-color: var(--sob-gray-200);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sob-projet__media-ph {
    font-family: "Menlo", ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sob-gray-600);
}

.sob-projet__panel {
    background: var(--sob-orange);
    color: var(--sob-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 32px;
}

.sob-projet__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sob-projet__eyebrow-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    color: var(--sob-white);
    display: inline-flex;
}

.sob-projet__eyebrow-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.14px;
    color: var(--sob-white);
}

.sob-projet__title {
    margin: 0;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.28;
    color: var(--sob-white);
    text-wrap: pretty;
}

.sob-projet__text {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--sob-white);
}

.sob-projet__title + .sob-projet__text {
    margin-top: -20px;
}

.sob-projet__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sob-white);
    color: var(--sob-orange);
    font-family: var(--sob-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 24px;
    border-radius: var(--sob-radius-sm);
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}

.sob-projet__cta:hover {
    background: var(--sob-orange-bg);
}

@media (max-width: 767.98px) {
    .sob-hero {
        flex-direction: column;
        min-height: 0;
    }

    .sob-hero__txt h1 {
        font-size: 20px;
    }

    .sob-hero__media {
        flex: none;
        min-height: 0;
        height: 250px;
    }

    .sob-hero__content {
        padding: 24px 16px;
        gap: 16px;
    }

    .sob-hero__title {
        font-size: 22px;
        line-height: 1.25;
    }

    .sob-hero__lead {
        font-size: 14px;
        line-height: 1.45;
    }

    .sob-hero__ctas {
        align-items: stretch;
    }

    .sob-hero__ctas .sob-btn--primary {
        min-width: 0;
    }

    .sob-hero__ctas .sob-btn--ghost {
        align-self: center;
    }

    .sob-reassurance {
        padding: 0 16px;
    }

    .sob-reassurance__inner {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }

    .sob-reassurance__item {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        align-items: start;
        column-gap: 16px;
        row-gap: 4px;
        text-align: left;
    }

    .sob-reassurance__icon {
        grid-area: icon;
    }

    .sob-reassurance__title {
        grid-area: title;
        font-size: 16px;
    }

    .sob-reassurance__text {
        grid-area: text;
        font-size: 14px;
    }

    .sob-timeline {
        --sob-timeline-gap: 32px;
        --sob-timeline-mobile-media-height: 202px;
        padding: 24px 0;
        gap: var(--sob-timeline-gap);
    }

    .sob-timeline__header {
        padding: 0 16px;
    }

    .sob-timeline__title {
        font-size: 20px;
    }

    .sob-timeline__subtitle {
        font-size: 14px;
    }

    .sob-timeline__item {
        grid-template-columns: 40px 1fr;
        padding: 0 16px 0 12px;
        column-gap: 12px;
        margin-bottom: 5px;
        min-height: 0;
    }

    .sob-timeline__item.is-reversed .sob-timeline__media,
    .sob-timeline__item.is-reversed .sob-timeline__rail,
    .sob-timeline__item.is-reversed .sob-timeline__content {
        order: initial;
    }

    .sob-timeline__item .sob-timeline__rail {
        grid-row: 1 / span 2;
        position: relative;
        display: block;
    }

    .sob-timeline__item .sob-timeline__rail .sob-timeline__num {
        position: absolute;
        top: calc((var(--sob-timeline-mobile-media-height) - 40px) / 2);
        left: 50%;
        transform: translateX(-50%);
    }

    .sob-timeline__item .sob-timeline__rail .sob-timeline__dash {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        min-height: 0;
    }

    .sob-timeline__item .sob-timeline__rail .sob-timeline__dash:first-child {
        top: 0;
        height: calc((var(--sob-timeline-mobile-media-height) - 40px) / 2);
    }

    .sob-timeline__item .sob-timeline__rail .sob-timeline__dash:last-child {
        top: calc((var(--sob-timeline-mobile-media-height) + 40px) / 2);
        bottom: 0;
    }

    .sob-timeline__item .sob-timeline__media {
        grid-column: 2;
        height: var(--sob-timeline-mobile-media-height);
    }

    .sob-timeline__item .sob-timeline__content {
        grid-column: 2;
        padding: 20px 0 24px;
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 10px;
        row-gap: 8px;
    }

    .sob-timeline__num {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .sob-timeline__content .sob-timeline__icon {
        width: 32px;
        height: 32px;
        margin: 0;
        flex: 0 0 auto;
    }

    .sob-timeline__content .sob-timeline__eyebrow {
        font-size: 12px;
        flex: 1 1 auto;
        align-self: center;
    }

    .sob-timeline__content .sob-timeline__item-title,
    .sob-timeline__content .sob-timeline__item-text {
        flex: 0 0 100%;
    }

    .sob-timeline__item-title {
        font-size: 18px;
    }

    .sob-timeline__item-text {
        font-size: 14px;
        margin-top: 4px;
    }

    .sob-testi {
        flex-direction: column;
        min-height: 0;
    }

    .sob-testi__media {
        flex: none;
        min-height: 0;
        height: 220px;
    }

    .sob-testi__panel {
        padding: 28px 0;
        gap: 20px;
    }

    .sob-testi__panel .sob-testi__title {
        padding: 0 24px;
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
    }

    .sob-testi__nav {
        padding: 0 24px;
    }

    .sob-testi__card {
        flex: 0 0 85%;
        padding: 20px 22px;
        gap: 14px;
    }

    .sob-testi__panel .sob-testi__quote {
        font-size: 14px;
        padding-right: 24px;
    }

    .sob-testi__track {
        gap: 14px;
    }

    .sob-study {
        padding: 20px;
    }

    .sob-study__card {
        padding: 20px;
        gap: 12px;
    }

    .sob-study__title {
        font-size: 16px;
    }

    .sob-study__sub {
        font-size: 14px;
    }

    .sob-study__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sob-study__form label {
        font-size: 14px;
    }

    .sob-contact {
        padding: 0 20px 20px;
    }

    .sob-contact__card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 16px;
    }

    .sob-contact__title {
        font-size: 14px;
    }

    .sob-contact__title * {
        font-size: inherit !important;
    }

    .sob-contact__ctas {
        flex-direction: column;
        gap: 12px;
    }

    .sob-products {
        padding: 24px 16px;
    }

    .sob-products__title {
        font-size: 18px;
    }

    .sob-products__nav {
        display: none;
    }

    .sob-products__card {
        flex: 0 0 78%;
        max-width: 280px;
    }

    .sob-projet {
        padding: 0 16px;
    }

    .sob-projet__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sob-projet__media {
        height: 160px;
    }

    .sob-projet__panel {
        padding: 20px;
        gap: 20px;
    }

    .sob-projet__eyebrow-icon {
        width: 32px;
        height: 32px;
    }

    .sob-projet__eyebrow-text {
        font-size: 16px;
    }

    .sob-projet__title {
        font-size: 20px;
        line-height: 1.2;
    }

    .sob-projet__text {
        font-size: 14px;
        line-height: 1.43;
    }

    .sob-projet__title + .sob-projet__text {
        margin-top: -12px;
    }

    .sob-projet__cta {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .sob-timeline__cta {
        margin-top: calc(-1 * var(--sob-timeline-gap));
        padding-top: var(--sob-timeline-gap);
    }

    .sob-timeline__cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        height: var(--sob-timeline-gap);
        width: 0;
        border-left: 2px dashed var(--sob-orange);
        transform: translateX(-50%);
        pointer-events: none;
    }

    .sob-reassurance {
        margin-top: -40px;
    }

    .sob-btn--ghost {
        margin-left: 1rem;
    }
}

@keyframes sobFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}