.os-features,
.os-features * {
    box-sizing: border-box;
}

.os-features {
    width: 100%;
    margin: 0;
    padding: 0;
}

.os-features-inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
    grid-template-areas:
        "intro action"
        "list visual";
    column-gap: clamp(56px, 6vw, 100px);
    row-gap: clamp(44px, 4vw, 64px);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.os-features-intro {
    grid-area: intro;
}

.os-features-title {
    width: 860px;
    max-width: none;
    margin: 0;
}

.os-features-subtitle {
    margin: 24px 0 0;
    color: rgba(17, 17, 18, .47);
}

.os-features-action {
    grid-area: action;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.os-features-cta,
.os-features-cta:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 214px;
    min-height: 64px;
    padding: 14px 28px;
    color: #fff !important;
    text-decoration: none !important;
    background: #c83513 !important;
    border-radius: 999px;
    transition: background-color .18s ease, transform .18s ease;
}

.os-features-cta:hover {
    color: #fff !important;
    background: #ad2d10 !important;
    transform: translateY(-2px);
}

.os-features-cta:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.os-features-list {
    grid-area: list;
    align-self: end;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.os-feature {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 18, .13);
}

.os-feature-heading {
    margin: 0;
}

.os-feature-button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 22px 0;
    color: rgba(17, 17, 18, .4) !important;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: left;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    appearance: none;
    cursor: pointer;
    transition: color .22s ease;
}

.os-feature-button:focus-visible {
    outline: 2px solid #111112;
    outline-offset: 4px;
}

.os-feature-number {
    display: none !important;
}

.os-feature-title {
    min-width: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.os-feature-arrow {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .22s ease, transform .28s ease;
}

.os-feature-arrow svg {
    display: block;
    width: 25px;
    height: 25px;
}

.os-feature-chevron-path {
    display: none;
}

.os-feature-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 44px 0 0;
    opacity: 0;
    transition:
        grid-template-rows .35s cubic-bezier(.22, 1, .36, 1),
        padding .35s ease,
        opacity .2s ease;
}

.os-feature-content-inner {
    min-height: 0;
    overflow: hidden;
}

.os-feature-content p {
    max-width: 430px;
    margin: 0;
    color: rgba(17, 17, 18, .47);
}

.os-feature.is-active .os-feature-button {
    padding-bottom: 12px;
    color: #111112 !important;
}

.os-feature.is-active .os-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.os-feature.is-active .os-feature-content {
    grid-template-rows: 1fr;
    padding-top: 0;
    padding-bottom: 24px;
    opacity: 1;
}

.os-features-visual {
    position: relative;
    grid-area: visual;
    min-height: 740px;
    overflow: hidden;
    background: #f2f2f0;
    border-radius: 10px;
}

.os-features-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity .65s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.os-features-image.is-visible {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .os-features-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "list"
            "visual";
        gap: 44px;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .os-features-action {
        display: none;
    }

    .os-features-title {
        width: auto;
        max-width: 860px;
    }

    .os-features-visual {
        justify-self: start;
        width: min(100%, 390px);
        min-height: auto;
        margin-top: 20px;
        aspect-ratio: 390 / 414;
    }

    .os-feature-button {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 14px;
        padding: 17px 0;
        color: #111112 !important;
    }

    .os-feature-arrow,
    .os-feature.is-active .os-feature-arrow {
        justify-content: flex-end;
        opacity: 1;
        transform: none;
    }

    .os-feature-arrow svg {
        width: 20px;
        height: 20px;
        transition: transform .22s ease;
    }

    .os-feature.is-active .os-feature-arrow svg {
        transform: rotate(180deg);
    }

    .os-feature-arrow-path {
        display: none;
    }

    .os-feature-chevron-path {
        display: block;
    }

    .os-feature-content,
    .os-feature.is-active .os-feature-content {
        padding-right: 0;
        padding-left: 0;
    }

    .os-feature.is-active .os-feature-content {
        padding-bottom: 16px;
    }

    .os-feature-content p {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .os-features {
        padding: 64px 0;
    }

    .os-features-inner {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        gap: 36px;
    }

    .os-features-intro,
    .os-features-list,
    .os-feature {
        width: 100%;
        margin: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .os-features-title {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .os-features-title br {
        display: none;
    }

    .os-features-subtitle {
        display: none;
    }

    .os-feature-heading {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .os-feature-button {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 10px;
        width: 100%;
        margin: 0;
        padding: 16px 0;
    }

    .os-feature-content,
    .os-feature.is-active .os-feature-content {
        padding-right: 0;
        padding-left: 0;
    }

    .os-features-visual {
        justify-self: stretch;
        width: 100%;
        max-width: none;
        min-height: 0;
        margin-top: 28px;
        margin-right: 0;
        margin-left: 0;
        aspect-ratio: 390 / 414;
        border-radius: 8px;
    }

    .os-features-image {
        width: 100%;
        height: 100%;
    }

    .os-features-cta {
        width: 100%;
        min-height: 58px;
    }
}

@media (max-width: 380px) {
    .os-feature-button {
        grid-template-columns: minmax(0, 1fr) 22px;
        gap: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .os-features-cta,
    .os-feature-button,
    .os-feature-arrow,
    .os-feature-arrow svg,
    .os-feature-content,
    .os-features-image {
        transition: none;
    }
}

.os-project-offcanvas,
.os-project-offcanvas * {
    box-sizing: border-box;
}

.os-project-offcanvas[hidden] {
    display: none;
}

.os-project-offcanvas {
    position: fixed;
    z-index: 999999;
    inset: 0;
}

.os-project-overlay {
    position: absolute;
    inset: 0;
    background: rgb(17 24 32 / .42) !important;
    backdrop-filter: blur(2px) saturate(.72);
    cursor: pointer;
    opacity: 0;
}

.os-project-panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: clamp(400px, calc(340px + 12vw), 560px);
    max-width: calc(100vw - clamp(18px, 5vw, 28px));
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7e9ec;
    border-radius: 16px 0 0 16px;
    box-shadow: -18px 0 55px rgb(0 0 0 / .07);
    outline: none;
    transform: translate3d(100%, 0, 0);
    transition: transform .72s cubic-bezier(.76, 0, .24, 1);
    will-change: transform;
}

.os-project-offcanvas.is-open .os-project-overlay {
    opacity: 1;
}

.os-project-offcanvas.is-open .os-project-panel {
    transform: translate3d(0, 0, 0);
}

.os-project-close {
    position: absolute;
    z-index: 2;
    top: clamp(14px, 1.55vw, 22px);
    right: clamp(14px, 1.8vw, 26px);
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #111;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    cursor: pointer;
}

.os-project-close::before,
.os-project-close::after {
    position: absolute;
    width: 15px;
    height: 1.5px;
    background: #111;
    border-radius: 2px;
    content: "";
}

.os-project-close::before {
    transform: rotate(45deg);
}

.os-project-close::after {
    transform: rotate(-45deg);
}

.os-project-close:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

.os-project-content {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(88px, 8vw, 106px) clamp(30px, 4vw, 50px) 46px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.os-project-intro {
    padding-right: 34px;
}

.os-project-intro h2,
.os-project-intro p {
    margin: 0;
}

.os-project-intro h2 {
    color: #172235;
}

.os-project-intro p {
    max-width: 430px;
    margin-top: 20px;
    color: #677184;
    font-size: 16px;
    line-height: 1.6;
}

.os-project-form {
    margin-top: 76px !important;
}

.os-project-fields {
    display: grid;
    gap: 28px;
}

.os-project-field {
    display: grid;
    gap: 11px;
    min-width: 0;
}

.os-project-field > span:first-child {
    color: #343434;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.os-project-field input,
.os-project-field select,
.os-project-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    color: #111 !important;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    background: #fff !important;
    border: 1px solid #dedede !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    outline: none;
}

.os-project-field input,
.os-project-field select {
    min-height: 48px;
    padding: 11px 14px;
}

.os-project-field textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.os-project-field input::placeholder,
.os-project-field textarea::placeholder {
    color: #a3a3a3;
    opacity: 1;
}

.os-project-field input:focus,
.os-project-field select:focus,
.os-project-field textarea:focus {
    border-color: #777 !important;
    box-shadow: 0 0 0 3px rgb(17 17 17 / .05) !important;
}

.os-project-select-wrap {
    position: relative;
    display: block;
}

.os-project-select-wrap select {
    padding-right: 44px;
    appearance: none;
    cursor: pointer;
}

.os-project-select-wrap svg {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 11px;
    height: 7px;
    fill: none;
    stroke: #595959;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    pointer-events: none;
    transform: translateY(-50%);
}

.os-project-form-footer {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.os-project-form-note {
    max-width: 390px;
    margin: 0;
    color: #8a929f;
    font-size: 12px;
    line-height: 1.5;
}

.os-project-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    color: #fff !important;
    font: inherit;
    background: #172235 !important;
    border: 1px solid #172235 !important;
    border-radius: 8px;
    box-shadow: none !important;
    cursor: pointer;
}

.os-project-submit:hover {
    background: #0d1521 !important;
    border-color: #0d1521 !important;
}

.os-project-submit:focus-visible {
    outline: 2px solid #172235;
    outline-offset: 3px;
}

html.os-project-locked,
html.os-project-locked body {
    overflow: hidden !important;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .os-project-close:hover {
        opacity: .55;
    }
}

@media (max-width: 767px) {
    .os-project-panel {
        width: clamp(340px, 92vw, 440px);
        border-radius: 12px 0 0 12px;
    }

    .os-project-content {
        padding-right: clamp(22px, 6vw, 30px);
        padding-left: clamp(22px, 6vw, 30px);
    }

    .os-project-intro {
        padding-right: 28px;
    }

    .os-project-form {
        margin-top: 64px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .os-project-panel {
        transition: none;
    }
}



.os-difference,
.os-difference * {
    box-sizing: border-box;
}

.os-difference {
    --os-card: #f7f7f6;
    --os-text: #111112;
    --os-muted: rgba(17, 17, 18, .44);
    --os-line: #929292;
    --os-border: #d8d8d6;
    --os-accent: #e96849;
    width: 100%;
    margin: 0;
    padding: clamp(72px, 8vw, 112px) 0 clamp(92px, 10vw, 156px);
}

.os-difference-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.os-difference-header {
    margin-bottom: 68px;
    text-align: center;
}

.os-difference-title,
.os-difference-subtitle,
.os-difference-card-title,
.os-difference-card-copy {
    margin: 0;
}

.os-difference-title {
    color: var(--os-text);
}

.os-difference-subtitle {
    margin-top: 12px;
    color: rgba(17, 17, 18, .62);
}

.os-difference .os-difference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    padding-inline-start: 0 !important;
    list-style: none !important;
}

.os-difference .os-difference-grid > li {
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.os-difference-card {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 510px;
    flex-direction: column;
    overflow: hidden;
    padding: 40px 40px 56px;
    background: var(--os-card);
    border-radius: 12px;
}

.os-difference-card-title {
    color: var(--os-text);
}

.os-difference-card-copy {
    max-width: 305px;
    margin-top: 10px;
    color: var(--os-muted);
}

.os-difference-visual {
    display: flex;
    width: 100%;
    min-height: 190px;
    align-items: flex-end;
    justify-content: center;
    margin-top: auto;
}

.os-difference-visual svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.os-difference-visual-integrations svg {
    max-width: 340px;
}

.os-difference-visual-code svg {
    max-width: 210px;
}

.os-difference-visual-responsive svg {
    max-width: 310px;
}

.os-icon-stroke {
    fill: none;
    stroke: var(--os-line);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.os-icon-stroke-dark {
    fill: none;
    stroke: #2a2a2b;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.os-icon-border {
    fill: #fff;
    stroke: var(--os-border);
    stroke-width: 1.4;
}

.os-icon-accent-fill,
.os-icon-dot {
    fill: var(--os-accent);
}

.os-icon-accent-stroke {
    fill: none;
    stroke: var(--os-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
    .os-difference-card {
        transition:
            transform .7s cubic-bezier(.16, 1, .3, 1),
            opacity .45s ease,
            filter .45s ease;
    }

    .os-difference-grid .os-difference-card:hover {
        transform: translate3d(0, 36px, 0);
    }

    .os-difference-grid:has(.os-difference-card:hover)
    .os-difference-card:not(:hover) {
        opacity: .2 !important;
        filter: grayscale(.25);
    }
}

@media (max-width: 1024px) {
    .os-difference-header {
        margin-bottom: 62px;
    }

    .os-difference .os-difference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .os-difference-card {
        min-height: 500px;
        padding: 36px 32px 48px;
    }
}

@media (max-width: 700px) {
    .os-difference {
        width: 100%;
        margin: 0;
        padding: 64px 0 84px;
    }

    .os-difference-inner {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .os-difference-header {
        width: 100%;
        margin: 0 0 42px;
        padding: 0;
        text-align: left;
    }

    .os-difference .os-difference-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        padding-inline: 0 !important;
        padding-inline-start: 0 !important;
    }

    .os-difference .os-difference-grid > li {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .os-difference-card {
        width: 100%;
        min-height: 430px;
        margin: 0;
        padding: 32px 28px 38px;
        border-radius: 10px;
    }

    .os-difference-card-copy {
        max-width: none;
    }

    .os-difference-visual {
        min-height: 170px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .os-difference-card {
        transition: none;
    }

    .os-difference-grid .os-difference-card:hover {
        transform: none;
    }
}




