/**
 * 전수창업 페이지
 */

.ts-page {
    font-family: "Noto Sans KR", sans-serif;
    color: var(--bok-dark);
    overflow-x: clip;
}

.ts-page a.bok-btn,
.ts-page a.bok-btn:hover {
    color: #fff;
}

.ts-page a.bok-btn--yellow,
.ts-page a.bok-btn--yellow:hover {
    color: var(--bok-red);
}

.ts-section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #232323;
}

.ts-section-title em {
    font-style: normal;
    color: var(--bok-red);
}

.ts-hero {
    position: relative;
    min-height: min(78vh, 720px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #1a1210;
    color: #fff;
}

.ts-hero__media,
.ts-hero__shade {
    position: absolute;
    inset: 0;
}

.ts-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transform: scale(1.04);
}

.ts-hero__shade {
    background:
        linear-gradient(90deg, rgba(14, 10, 9, 0.9) 0%, rgba(14, 10, 9, 0.55) 48%, rgba(14, 10, 9, 0.3) 100%),
        linear-gradient(180deg, rgba(14, 10, 9, 0.15) 0%, rgba(14, 10, 9, 0.75) 100%);
}

.ts-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 88px);
}

.ts-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bok-yellow);
}

.ts-hero__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(34px, 5.2vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.ts-hero__title span {
    color: var(--bok-yellow);
}

.ts-hero__desc {
    margin: 0 0 28px;
    max-width: 34em;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.ts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ts-audience {
    position: relative;
    overflow: hidden;
    background: var(--bok-cream);
}

.ts-audience__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ts-audience__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: none;
    transform: none;
}

.ts-audience__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(249, 236, 227, 0.58);
    pointer-events: none;
}

.ts-audience > .bok-inner {
    position: relative;
    z-index: 2;
}

.ts-audience .bok-head__eyebrow {
    color: #5c534c;
    font-weight: 600;
}

.ts-audience .ts-section-title {
    color: #1a1512;
    text-shadow: 0 1px 0 rgba(249, 236, 227, 0.55);
}

.ts-audience .ts-section-title em {
    color: var(--bok-red);
}

.ts-audience__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 28px;
    margin-bottom: clamp(18px, 2.5vw, 28px);
}

.ts-audience__heading {
    min-width: 0;
}

.ts-flow-sec__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 32px;
    flex-wrap: wrap;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.ts-audience__note {
    margin: 0;
    flex: 0 0 auto;
    max-width: none;
    white-space: nowrap;
    font-size: clamp(15px, 1.55vw, 18px);
    font-weight: 600;
    line-height: 1.45;
    text-align: right;
    color: #3a342f;
}

.ts-flow-sec__note {
    margin: 0;
    font-size: 13px;
    color: var(--buzzi-gray);
}

@media (max-width: 767px) {
    .ts-audience__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ts-audience__note {
        text-align: left;
        white-space: normal;
    }
}

.ts-audience__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 20px);
    border: 0;
}

.ts-audience__list li {
    min-width: 0;
    padding: clamp(22px, 2.8vw, 32px) clamp(18px, 2.2vw, 28px);
    border: 0;
    border-radius: 14px;
    background: rgba(255, 252, 248, 0.92);
    box-shadow: 0 8px 24px rgba(40, 24, 16, 0.08);
}

.ts-audience__list li:first-child {
    padding-left: clamp(18px, 2.2vw, 28px);
}

.ts-audience__list li:last-child {
    border-right: 0;
    padding-right: clamp(18px, 2.2vw, 28px);
}

.ts-audience__list strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bok-red);
}

.ts-audience__list span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    color: #2f2a26;
}

.ts-benefits__list {
    list-style: none;
    margin: clamp(36px, 4vw, 52px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.ts-benefits__list li {
    position: relative;
    padding-top: 8px;
    border-top: 2px solid rgba(255, 228, 0, 0.45);
}

.ts-benefits__num {
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.14);
}

.ts-benefits__list h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    color: #fff;
}

.ts-benefits__list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.ts-split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.ts-split--flip .ts-split__grid {
    direction: rtl;
}

.ts-split--flip .ts-split__grid > * {
    direction: ltr;
}

.ts-split__visual {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    background: #1a1210;
}

.ts-split__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-split__desc {
    margin: 14px 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--buzzi-gray);
}

.ts-check {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-check li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #232323;
}

.ts-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bok-red);
}

.ts-text-link {
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    color: var(--bok-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.ts-text-link:hover {
    border-bottom-color: var(--bok-red);
}

.ts-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(130, 8, 8, 0.14);
    border-bottom: 1px solid rgba(130, 8, 8, 0.14);
}

.ts-flow li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(24px, 3vw, 36px) 12px;
    border-right: 1px solid rgba(130, 8, 8, 0.12);
    text-align: center;
}

.ts-flow li:last-child {
    border-right: 0;
}

.ts-flow span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bok-red);
}

.ts-flow strong {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #232323;
}

.ts-case .bok-head__title {
    margin-bottom: clamp(28px, 3.5vw, 40px);
}

.ts-case__panel {
    padding: clamp(28px, 3.5vw, 40px);
    border: 1px solid rgba(255, 228, 0, 0.28);
    background: rgba(0, 0, 0, 0.22);
}

.ts-case__label {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    line-height: 1.35;
    color: var(--bok-yellow);
}

.ts-case__rows {
    margin: 0;
    padding: 0;
}

.ts-case__rows > div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ts-case__rows dt {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--bok-yellow);
}

.ts-case__rows dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.ts-case__note {
    margin: 20px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.ts-process {
    list-style: none;
    margin: clamp(32px, 4vw, 48px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
}

.ts-process li {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 200px;
    padding: clamp(28px, 3vw, 36px) 16px clamp(24px, 2.5vw, 32px);
    border: 0;
    border-radius: 14px;
    background: var(--bok-red);
    text-align: center;
    cursor: default;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ts-process__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.35s ease, transform 0.45s ease;
    pointer-events: none;
}

.ts-process__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 8, 7, 0.35) 0%, rgba(10, 8, 7, 0.72) 100%);
}

.ts-process__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-process__icon,
.ts-process strong {
    position: relative;
    z-index: 1;
}

.ts-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: #3a342f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease, color 0.25s ease;
}

.ts-process__icon i {
    font-size: 22px;
    line-height: 1;
    color: #3a342f;
}

.ts-process strong {
    font-family: "Noto Sans KR", sans-serif;
    font-size: clamp(15px, 1.35vw, 17px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    transition: color 0.25s ease;
}

.ts-process li:hover,
.ts-process li:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.ts-process li:hover .ts-process__media,
.ts-process li:focus-within .ts-process__media {
    opacity: 1;
    transform: scale(1);
}

.ts-process li:hover .ts-process__icon,
.ts-process li:focus-within .ts-process__icon {
    background: var(--bok-yellow);
}

@media (hover: none) {
    .ts-process li .ts-process__media {
        opacity: 0.28;
        transform: scale(1);
    }

    .ts-process li .ts-process__media::after {
        background: linear-gradient(180deg, rgba(10, 8, 7, 0.55) 0%, rgba(10, 8, 7, 0.82) 100%);
    }
}

.ts-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.ts-faq__desc {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--buzzi-gray);
}

.ts-faq__list .ul-single-accordion-item {
    border-color: rgba(130, 8, 8, 0.14);
    background: transparent;
}

.ts-cta {
    padding: clamp(16px, 3vw, 32px) 0 clamp(48px, 6vw, 80px);
    background: var(--bok-cream);
}

.ts-cta__banner {
    width: min(1480px, calc(100% - 24px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(28px, 3.5vw, 40px) clamp(28px, 4vw, 48px);
    border-radius: 24px;
    background: linear-gradient(160deg, var(--bok-red) 0%, #5c0606 100%);
    box-shadow: 0 20px 48px rgba(130, 8, 8, 0.28);
    color: #fff;
}

.ts-cta__eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bok-yellow);
}

.ts-cta__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.ts-cta__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.ts-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.ts-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ts-cta__btn--primary {
    background: var(--bok-yellow);
    color: var(--bok-red);
    border: 1px solid var(--bok-yellow);
}

.ts-cta__btn--primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--bok-red);
}

.ts-cta__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.ts-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 991px) {
    .ts-audience__list,
    .ts-benefits__list {
        grid-template-columns: 1fr;
    }

    .ts-audience__list li {
        border: 0;
        padding: clamp(20px, 4vw, 28px) clamp(16px, 3.5vw, 24px);
    }

    .ts-audience__list li:last-child {
        border-bottom: 0;
    }

    .ts-split__grid,
    .ts-faq__grid {
        grid-template-columns: 1fr;
    }

    .ts-split--flip .ts-split__grid {
        direction: ltr;
    }

    .ts-flow,
    .ts-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ts-process li:last-child {
        grid-column: 1 / -1;
        max-width: 280px;
        justify-self: center;
        width: 100%;
    }

    .ts-cta__banner {
        flex-direction: column;
        align-items: stretch;
        width: calc(100% - 32px);
    }

    .ts-cta__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ts-cta__btn {
        flex: 1 1 auto;
        min-width: 140px;
    }

    .ts-hero__inner {
        width: min(1200px, calc(100% - 32px));
    }
}

.ts-vs__list {
    list-style: none;
    margin: clamp(36px, 4vw, 52px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 32px);
}

.ts-vs__list li {
    padding-top: 8px;
    border-top: 2px solid rgba(255, 228, 0, 0.45);
}

.ts-vs__mark {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    color: var(--bok-yellow);
}

.ts-vs__list strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 700;
    color: #fff;
}

.ts-vs__list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.ts-offer {
    --ts-offer-progress: 0;
    background: #fff;
    color: #1a1512;
    overflow: hidden;
}

.ts-offer__head .bok-head__eyebrow {
    color: #5c534c;
}

.ts-offer__head .ts-section-title {
    color: #1a1512;
}

.ts-offer__head .ts-section-title em {
    color: var(--bok-red);
}

.ts-offer__timeline {
    list-style: none;
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding: 0;
    position: relative;
    max-width: 980px;
}

.ts-offer__timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(130, 8, 8, 0.16);
}

.ts-offer__timeline::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: calc(var(--ts-offer-progress) * 100%);
    transform: translateX(-50%);
    background: var(--bok-red);
    pointer-events: none;
    z-index: 1;
}

.ts-offer__item {
    position: relative;
    width: calc(50% - 28px);
    margin-bottom: clamp(72px, 10vw, 120px);
}

.ts-offer__item:last-child {
    margin-bottom: 0;
}

.ts-offer__item--left {
    margin-right: auto;
    padding-right: 0;
}

.ts-offer__item--right {
    margin-left: auto;
}

.ts-offer__item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(130, 8, 8, 0.28);
    box-shadow: inset 0 0 0 3px #fff;
    transform: translateY(-50%);
    z-index: 2;
    transition:
        border-color 0.45s ease,
        background-color 0.45s ease,
        box-shadow 0.45s ease;
}

.ts-offer__item.is-active::after {
    background: var(--bok-red);
    border-color: var(--bok-red);
    box-shadow:
        inset 0 0 0 3px #fff,
        0 0 0 2px rgba(130, 8, 8, 0.35);
}

.ts-offer__item--left::after {
    right: -36px;
}

.ts-offer__item--right::after {
    left: -36px;
}

.ts-offer__card {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 0;
    align-items: stretch;
    min-height: 168px;
    border-radius: 18px;
    background: #f7f4f1;
    border: 1px solid rgba(130, 8, 8, 0.08);
    box-shadow: 0 8px 20px rgba(40, 24, 16, 0.04);
    overflow: hidden;
    position: relative;
    opacity: 0.55;
    filter: saturate(0.6);
    transform: translateY(18px);
    transition:
        opacity 0.55s ease,
        filter 0.55s ease,
        transform 0.55s ease,
        background 0.55s ease,
        border-color 0.55s ease,
        box-shadow 0.55s ease;
}

.ts-offer__item.is-active .ts-offer__card {
    opacity: 1;
    filter: none;
    transform: translateY(0);
    background: #fff;
    border-color: rgba(130, 8, 8, 0.22);
    box-shadow:
        0 16px 36px rgba(40, 24, 16, 0.1),
        0 0 0 1px rgba(130, 8, 8, 0.08);
}

.ts-offer__item--left .ts-offer__card {
    grid-template-columns: 1fr 1.05fr;
}

.ts-offer__item--right .ts-offer__card {
    grid-template-columns: 1.05fr 1fr;
}

.ts-offer__item--right .ts-offer__media {
    order: 2;
}

.ts-offer__item--right .ts-offer__body {
    order: 1;
}

.ts-offer__card::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    z-index: 1;
}

.ts-offer__item--left .ts-offer__card::before {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #f7f4f1;
    transition: border-color 0.55s ease;
}

.ts-offer__item--right .ts-offer__card::before {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #f7f4f1 transparent transparent;
    transition: border-color 0.55s ease;
}

.ts-offer__item.is-active.ts-offer__item--left .ts-offer__card::before {
    border-color: transparent transparent transparent #fff;
}

.ts-offer__item.is-active.ts-offer__item--right .ts-offer__card::before {
    border-color: transparent #fff transparent transparent;
}

.ts-offer__media {
    min-height: 168px;
    overflow: hidden;
    background: #eee;
}

.ts-offer__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-offer__body {
    padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ts-offer__step {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(26, 21, 18, 0.35);
    transition: color 0.45s ease;
}

.ts-offer__item.is-active .ts-offer__step {
    color: rgba(26, 21, 18, 0.5);
}

.ts-offer__label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(130, 8, 8, 0.4);
    transition: color 0.45s ease;
}

.ts-offer__item.is-active .ts-offer__label {
    color: var(--bok-red);
}

.ts-offer__body h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(26, 21, 18, 0.45);
    transition: color 0.45s ease;
}

.ts-offer__item.is-active .ts-offer__body h3 {
    color: #1a1512;
}

.ts-offer__body p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(26, 21, 18, 0.35);
    transition: color 0.45s ease;
}

.ts-offer__item.is-active .ts-offer__body p {
    color: #4a433d;
}

@media (prefers-reduced-motion: reduce) {
    .ts-offer__card,
    .ts-offer__item::after,
    .ts-offer__label,
    .ts-offer__step,
    .ts-offer__body h3,
    .ts-offer__body p {
        transition: none;
    }

    .ts-offer__card {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

.ts-cost {
    position: relative;
    overflow: hidden;
    background: #1a1210;
}

.ts-cost__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ts-cost__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ts-cost__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(249, 236, 227, 0.42);
    pointer-events: none;
}

.ts-cost > .bok-inner {
    position: relative;
    z-index: 2;
}

.ts-cost .bok-head__eyebrow,
.ts-cost .ts-section-title,
.ts-cost__note {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85),
        0 0 18px rgba(255, 248, 242, 0.7);
}

.ts-cost .bok-head__eyebrow {
    color: #2a2420;
    font-weight: 700;
}

.ts-cost .ts-section-title {
    color: #1a1512;
}

.ts-cost .ts-section-title em {
    color: var(--bok-red);
}

.ts-cost__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 32px;
    flex-wrap: wrap;
    margin-bottom: clamp(28px, 3.5vw, 40px);
}

.ts-cost__note {
    margin: 0;
    max-width: 28em;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(255, 252, 248, 0.78);
    font-size: clamp(14px, 1.35vw, 16px);
    font-weight: 600;
    line-height: 1.65;
    color: #1a1512;
    text-shadow: none;
}

.ts-ceo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.ts-ceo__desc {
    margin: 14px 0 22px;
    font-size: clamp(17px, 1.75vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.ts-ceo__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-ceo__tags li {
    font-size: clamp(18px, 1.85vw, 21px);
    font-weight: 600;
    line-height: 1.45;
    color: var(--bok-yellow);
}

.ts-ceo__visual {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 5;
    background: #0e0a09;
}

.ts-ceo__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 991px) {
    .ts-vs__list {
        grid-template-columns: 1fr;
    }

    .ts-offer__timeline {
        max-width: 560px;
        padding-left: 28px;
    }

    .ts-offer__timeline::before {
        left: 6px;
        transform: none;
    }

    .ts-offer__timeline::after {
        left: 6px;
        transform: none;
    }

    .ts-offer__item,
    .ts-offer__item--left,
    .ts-offer__item--right {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .ts-offer__item::after,
    .ts-offer__item--left::after,
    .ts-offer__item--right::after {
        left: -28px;
        right: auto;
    }

    .ts-offer__card,
    .ts-offer__item--left .ts-offer__card,
    .ts-offer__item--right .ts-offer__card {
        grid-template-columns: 120px 1fr;
    }

    .ts-offer__item--right .ts-offer__media {
        order: 0;
    }

    .ts-offer__item--right .ts-offer__body {
        order: 0;
    }

    .ts-offer__card::before,
    .ts-offer__item--left .ts-offer__card::before,
    .ts-offer__item--right .ts-offer__card::before {
        left: -10px;
        right: auto;
        border-width: 10px 10px 10px 0;
        border-color: transparent #f7f4f1 transparent transparent;
    }

    .ts-offer__item.is-active .ts-offer__card::before,
    .ts-offer__item.is-active.ts-offer__item--left .ts-offer__card::before,
    .ts-offer__item.is-active.ts-offer__item--right .ts-offer__card::before {
        border-color: transparent #fff transparent transparent;
    }

    .ts-offer__media {
        min-height: 140px;
    }

    .ts-ceo__grid {
        grid-template-columns: 1fr;
    }

    .ts-ceo__visual {
        max-width: 420px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 575px) {
    .ts-flow,
    .ts-process {
        grid-template-columns: 1fr;
    }

    .ts-process li:last-child {
        grid-column: auto;
        max-width: none;
    }

    .ts-flow li,
    .ts-process li {
        border-right: 0;
    }

    .ts-case__rows > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
