html {
    box-sizing: border-box;
    scroll-behavior: auto;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Inter', sans-serif;
}

.pg-head {
    position: relative;
    background: #002037;
    overflow: visible;
}

.pg-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DF3542 0%, #FDA838 50%, #DF3542 100%);
}

.head-top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand-pod {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-hex {
    width: 96px;
    height: 96px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
    flex-shrink: 0;
}

.logo-hex img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.brand-text-pod {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-name {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0;
    text-decoration: none;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    color: #FDA838;
    text-transform: uppercase;
}

.head-contact-deck {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.head-notice {
    background: rgba(253, 168, 56, 0.12);
    border: 1px solid rgba(253, 168, 56, 0.35);
    border-radius: 2px;
    padding: 8px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #FDA838;
    font-weight: 700;
}

.head-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.head-contact-item:hover {
    color: #ffffff;
}

.head-contact-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-right: 8px;
}

.head-nav-bar {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.head-nav-plate {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.head-nav-plate a {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    padding: 24px 24px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.head-nav-plate a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #DF3542;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.head-nav-plate a:hover {
    color: #ffffff;
}

.head-nav-plate a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.head-nav-plate a:focus {
    outline: 3px solid #DF3542;
    outline-offset: -3px;
}

.head-nav-plate a.active {
    color: #FDA838;
}

@media (max-width: 1280px) {
    .head-top {
        padding: 24px 24px;
    }

    .head-nav-plate {
        padding: 0 24px;
        flex-wrap: wrap;
    }

    .head-nav-plate a {
        padding: 24px 16px;
    }
}

@media (max-width: 768px) {
    .head-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px;
        gap: 24px;
    }

    .head-contact-deck {
        align-items: flex-start;
    }

    .head-nav-plate {
        padding: 0 8px;
        flex-wrap: wrap;
    }

    .head-nav-plate a {
        padding: 16px 16px;
        font-size: 13px;
    }

    .brand-name {
        font-size: 21px;
    }
}

.ft-root {
    background: #002037;
    position: relative;
}

.ft-root::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FDA838 0%, #DF3542 100%);
}

.ft-bento-deck {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.ft-cell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 40px;
}

.ft-cell.tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ft-cell-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #FDA838;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.ft-cell-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.ft-cell-body strong {
    color: #ffffff;
    font-weight: 700;
}

.ft-addr {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
}

.ft-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: block;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ft-link:hover {
    color: #FDA838;
}

.ft-link:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ft-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ft-nav-list li a {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ft-nav-list li a:hover {
    color: #FDA838;
}

.ft-nav-list li a:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ft-logo-cell {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.ft-logo-rule {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0;
}

.ft-logo-hex {
    width: 88px;
    height: 88px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: 1px 3px 5px -2px rgba(223, 53, 66, 0.05);
}

.ft-logo-hex img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.ft-brand-name {
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.ft-bottom-bar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ft-copy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.35);
}

.ft-copy span {
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1280px) {
    .ft-bento-deck {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px 24px;
    }

    .ft-cell.tall {
        grid-row: auto;
    }

    .ft-bottom-bar {
        padding: 24px 24px;
    }
}

@media (max-width: 768px) {
    .ft-bento-deck {
        grid-template-columns: 1fr;
        padding: 40px 24px 24px;
        gap: 24px;
    }

    .ft-cell {
        padding: 24px;
    }

    .ft-bottom-bar {
        padding: 24px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.ck-tray {
    display: none;
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
    width: 480px;
    max-width: calc(100vw - 48px);
    background: #ffffff;
    border: 1px solid rgba(0, 32, 55, 0.12);
    border-radius: 2px;
    box-shadow: 1px 12px 40px -2px rgba(0, 32, 55, 0.10);
    z-index: 1200;
    transform: translateX(-60px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.4, 0, 1, 1), opacity 0.38s cubic-bezier(0.4, 0, 1, 1);
}

.ck-tray.ck-visible {
    transform: translateX(0);
    opacity: 1;
}

.ck-tray.ck-hiding {
    transform: translateX(-60px);
    opacity: 0;
}

.ck-body {
    padding: 24px;
}

.ck-msg {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    margin-bottom: 24px;
}

.ck-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.ck-btn-accept {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #DF3542;
    border: none;
    border-radius: 2px;
    padding: 8px 24px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.ck-btn-accept:hover {
    background: #002037;
}

.ck-btn-accept:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ck-btn-deny {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #002037;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 0;
    min-height: 44px;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ck-btn-deny:hover {
    color: #DF3542;
}

.ck-btn-deny:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ck-btn-settings {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(0, 32, 55, 0.55);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 8px 0;
    min-height: 44px;
    margin-left: auto;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ck-btn-settings:hover {
    color: #002037;
}

.ck-btn-settings:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ck-detail {
    display: none;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0, 32, 55, 0.08);
}

.ck-detail.ck-open {
    display: block;
}

.ck-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 32, 55, 0.06);
}

.ck-toggle-row:last-child {
    border-bottom: none;
}

.ck-toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
}

.ck-toggle-input {
    width: 40px;
    height: 22px;
    cursor: pointer;
    accent-color: #DF3542;
}

.ck-tab-pull {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #DF3542;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 24px 8px;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    z-index: 1100;
    border: none;
    min-height: 44px;
    transition: background 0.14s cubic-bezier(0.4, 0, 1, 1);
    display: none;
}

.ck-tab-pull:hover {
    background: #002037;
}

.ck-tab-pull:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ck-slide-panel {
    position: fixed;
    left: -340px;
    top: 0;
    bottom: 0;
    width: 320px;
    background: #ffffff;
    box-shadow: 1px 7px 20px -2px rgba(0, 32, 55, 0.08);
    z-index: 1150;
    transition: left 0.18s cubic-bezier(0.4, 0, 1, 1);
    display: none;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    overflow-y: auto;
}

.ck-slide-panel.ck-panel-open {
    left: 0;
}

.ck-panel-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #002037;
}

.ck-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(0, 32, 55, 0.55);
    text-decoration: underline;
    padding: 8px 0;
    min-height: 44px;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
    text-align: left;
}

.ck-panel-close:hover {
    color: #DF3542;
}

.ck-panel-close:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.ck-panel-save {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #DF3542;
    border: none;
    border-radius: 2px;
    padding: 8px 24px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.ck-panel-save:hover {
    background: #002037;
}

.ck-panel-save:focus {
    outline: 3px solid #DF3542;
    outline-offset: 2px;
}

.i-legal-article {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
}

.i-legal-article h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #002037;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #DF3542;
}

.i-legal-article h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin-top: 80px;
    margin-bottom: 24px;
}

.i-legal-article h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #002037;
    margin-top: 40px;
    margin-bottom: 24px;
}

.i-legal-article h4 {
    font-size: 21px;
    line-height: 1.2;
    color: #002037;
    margin-top: 40px;
    margin-bottom: 8px;
}

.i-legal-article h5 {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.i-legal-article h6 {
    font-size: 13px;
    line-height: 1.8;
    color: #DF3542;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.i-legal-article p {
    font-size: 16px;
    line-height: 1.8;
    color: #1b2d3e;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch;
}

.i-legal-article ul,
.i-legal-article ol {
    font-size: 16px;
    line-height: 1.8;
    color: #1b2d3e;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 72ch;
}

.i-legal-article ul {
    list-style: none;
    padding-left: 0;
}

.i-legal-article ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.i-legal-article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background-color: #DF3542;
    border-radius: 2px;
}

.i-legal-article ol {
    list-style: decimal;
    padding-left: 24px;
}

.i-legal-article ol li {
    margin-bottom: 8px;
    padding-left: 8px;
}

.i-legal-article ol li::marker {
    color: #DF3542;
    font-size: 13px;
}

.i-legal-article ul ul,
.i-legal-article ol ol,
.i-legal-article ul ol,
.i-legal-article ol ul {
    margin-top: 8px;
    margin-bottom: 0;
}

.i-legal-article a {
    color: #DF3542;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1), text-decoration-color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.i-legal-article a:hover {
    color: #002037;
    text-decoration-color: #FDA838;
}

.i-legal-article a:active {
    color: #b02030;
}

.i-legal-article table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 1px 7px 20px -2px rgba(0, 32, 55, 0.08);
}

.i-legal-article thead {
    background-color: #002037;
}

.i-legal-article thead th {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 24px;
    text-align: left;
    font-weight: 700;
}

.i-legal-article tbody tr {
    border-bottom: 1px solid rgba(0, 32, 55, 0.1);
    transition: background-color 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.i-legal-article tbody tr:last-child {
    border-bottom: none;
}

.i-legal-article tbody tr:nth-child(even) {
    background-color: rgba(253, 168, 56, 0.06);
}

.i-legal-article tbody tr:hover {
    background-color: rgba(223, 53, 66, 0.05);
}

.i-legal-article td {
    padding: 24px;
    color: #1b2d3e;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.8;
}

.i-legal-article th {
    padding: 24px;
    vertical-align: top;
}

.i-legal-article div {
    font-size: 16px;
    line-height: 1.8;
}

.i-legal-article div+div {
    margin-top: 8px;
}

@media (max-width: 768px) {
    .i-legal-article {
        padding: 40px 24px;
    }

    .i-legal-article h1 {
        font-size: 38px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .i-legal-article h2 {
        font-size: 28px;
        margin-top: 40px;
        margin-bottom: 24px;
    }

    .i-legal-article h3 {
        font-size: 21px;
        margin-top: 40px;
        margin-bottom: 8px;
    }

    .i-legal-article h4 {
        font-size: 16px;
        margin-top: 24px;
    }

    .i-legal-article p,
    .i-legal-article ul,
    .i-legal-article ol {
        max-width: 100%;
    }

    .i-legal-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .i-legal-article thead th,
    .i-legal-article td {
        padding: 24px 8px;
        min-width: 120px;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .i-legal-article {
        padding: 80px 40px;
    }

    .i-legal-article h1 {
        font-size: 38px;
    }

    .i-legal-article h2 {
        font-size: 28px;
    }
}

.ctc-us {
    max-width: 100%;
    overflow-x: hidden;
}

.ctc-us .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.ctc-us .sect-reach {
    padding: 80px 0 80px;
    background: linear-gradient(to right, rgba(253, 168, 56, 0.10) 0%, #fff 60%);
    position: relative;
}

.ctc-us .sect-reach::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #DF3542, #FDA838, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
}

.ctc-us .reach-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 80px;
    align-items: start;
}

.ctc-us .reach-img-card {
    width: 180px;
    height: 140px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
    position: relative;
}

.ctc-us .reach-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1.5px) brightness(0.92);
    transform: scale(0.97);
    animation: imgload 0.16s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes imgload {
    to {
        transform: scale(1);
    }
}

.ctc-us .reach-text-zone {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctc-us .reach-pre {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    letter-spacing: 0.04em;
}

.ctc-us .reach-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #002037;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #002037;
}

.ctc-us .reach-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    max-width: 560px;
}

.ctc-us .reach-top-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}

.ctc-us .reach-detail-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctc-us .detail-bracket {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(0, 32, 55, 0.15);
    border-radius: 2px;
    box-shadow: 1px 3px 5px -2px rgba(0, 32, 55, 0.05);
}

.ctc-us .detail-bracket::before,
.ctc-us .detail-bracket::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: #FDA838;
    border-style: solid;
}

.ctc-us .detail-bracket::before {
    top: -2px;
    left: -2px;
    border-width: 2px 0 0 2px;
}

.ctc-us .detail-bracket::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 2px 2px 0;
}

.ctc-us .detail-label {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    margin-bottom: 8px;
}

.ctc-us .detail-val {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
}

.ctc-us .detail-val a {
    color: #002037;
    text-decoration: underline;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .detail-val a:hover {
    color: #DF3542;
}

.ctc-us .infographic-strip {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
    margin-top: 8px;
}

.ctc-us .infog-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(0, 32, 55, 0.04);
    border-radius: 2px;
    border: 1px solid rgba(0, 32, 55, 0.09);
}

.ctc-us .infog-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctc-us .infog-icon svg {
    width: 28px;
    height: 28px;
}

.ctc-us .infog-num {
    font-size: 28px;
    line-height: 1.2;
    color: #DF3542;
    font-weight: 700;
}

.ctc-us .infog-lbl {
    font-size: 13px;
    line-height: 1.2;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
}

.ctc-us .sect-form {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(223, 53, 66, 0.06) 0%, #fff 55%);
    position: relative;
}

.ctc-us .sect-form::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 32, 55, 0.12);
}

.ctc-us .form-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    align-items: start;
}

.ctc-us .form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 40px;
}

.ctc-us .form-sidebar-img {
    width: 100%;
    height: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 1px 12px 40px -2px rgba(223, 53, 66, 0.10);
}

.ctc-us .form-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.97);
    animation: imgload 0.15s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.ctc-us .form-sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ctc-us .fsb-cell {
    padding: 24px 8px;
    background: rgba(253, 168, 56, 0.09);
    border-radius: 2px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-us .fsb-cell-num {
    font-size: 21px;
    line-height: 1.2;
    color: #002037;
    font-weight: 700;
}

.ctc-us .fsb-cell-lbl {
    font-size: 13px;
    line-height: 1.2;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
}

.ctc-us .form-sidebar-note {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    padding: 24px;
    border: 2px solid #002037;
    border-radius: 2px;
    outline: 4px solid rgba(0, 32, 55, 0.15);
    outline-offset: -6px;
}

.ctc-us .form-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ctc-us .form-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-us .form-pre {
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
}

.ctc-us .form-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #002037;
}

.ctc-us .form-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
}

.ctc-us .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctc-us .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ctc-us .f-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-us .f-field.full {
    grid-column: 1 / -1;
}

.ctc-us .f-label {
    font-size: 13px;
    line-height: 1.2;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
}

.ctc-us .f-input {
    font-size: 16px;
    line-height: 1.8;
    padding: 8px 24px;
    border: 1px solid rgba(0, 32, 55, 0.25);
    border-radius: 2px;
    background: #fff;
    color: #002037;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
    text-overflow: ellipsis;
}

.ctc-us .f-input::placeholder {
    color: rgba(0, 32, 55, 0.4);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ctc-us .f-input:focus {
    outline: none;
    border-color: #DF3542;
    box-shadow: inset 0 1px 3px rgba(223, 53, 66, 0.10);
}

.ctc-us .f-select {
    font-size: 16px;
    line-height: 1.8;
    padding: 8px 24px;
    border: 1px solid rgba(0, 32, 55, 0.25);
    border-radius: 2px;
    background: #fff;
    color: #002037;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .f-select:focus {
    outline: none;
    border-color: #DF3542;
}

.ctc-us .select-wrap {
    position: relative;
}

.ctc-us .select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #002037;
    pointer-events: none;
}

.ctc-us .checks-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctc-us .checks-label-main {
    font-size: 13px;
    line-height: 1.2;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
    margin-bottom: 8px;
}

.ctc-us .checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ctc-us .chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border: 1px solid rgba(0, 32, 55, 0.12);
    border-radius: 2px;
    transition: background 0.11s cubic-bezier(0.4, 0, 1, 1), border-color 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .chk-item:hover {
    background: rgba(253, 168, 56, 0.10);
    border-color: #FDA838;
}

.ctc-us .chk-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #DF3542;
    cursor: pointer;
    flex-shrink: 0;
}

.ctc-us .chk-item input[type="checkbox"]:checked {
    box-shadow: inset 0 1px 2px rgba(223, 53, 66, 0.20);
}

.ctc-us .chk-item-lbl {
    font-size: 16px;
    line-height: 1.2;
    color: #002037;
}

.ctc-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 24px;
    background: rgba(0, 32, 55, 0.04);
    border-radius: 2px;
}

.ctc-us .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #002037;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ctc-us .privacy-row input[type="checkbox"]:checked {
    box-shadow: inset 0 1px 2px rgba(0, 32, 55, 0.18);
}

.ctc-us .privacy-text {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
}

.ctc-us .privacy-text a {
    color: #DF3542;
    text-decoration: underline;
    transition: color 0.11s ease-in;
}

.ctc-us .privacy-text a:hover {
    color: #002037;
}

.ctc-us .btn-submit {
    align-self: flex-start;
    font-size: 16px;
    line-height: 1.2;
    padding: 24px 40px;
    background: #002037;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 7px 20px -2px rgba(0, 32, 55, 0.08);
    transition: color 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: #DF3542;
    transition: left 0.15s cubic-bezier(0.4, 0, 1, 1);
    z-index: 0;
}

.ctc-us .btn-submit:hover::before {
    left: 0;
}

.ctc-us .btn-submit:active {
    box-shadow: inset 0 2px 4px rgba(0, 32, 55, 0.18);
}

.ctc-us .btn-submit span {
    position: relative;
    z-index: 1;
}

.ctc-us .btn-submit:focus {
    outline: 2px solid #FDA838;
    outline-offset: 2px;
}

.ctc-us .curtain-hover {
    overflow: hidden;
}

.ctc-us .curtain-hover .curtain-inner {
    transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1), opacity 0.16s cubic-bezier(0.4, 0, 1, 1);
    transform: translateY(-8px);
    opacity: 0;
}

.ctc-us .curtain-hover:hover .curtain-inner {
    transform: translateY(0);
    opacity: 1;
}

.ctc-us .curtain-trigger {
    font-size: 13px;
    line-height: 1.2;
    color: #DF3542;
    text-transform: uppercase;
    font-variant: small-caps;
    cursor: default;
    margin-bottom: 8px;
}

@media (max-width: 1280px) {
    .ctc-us .reach-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ctc-us .form-layout {
        grid-template-columns: 1fr 2fr;
        gap: 40px;
    }

    .ctc-us .reach-h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .ctc-us .reach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ctc-us .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ctc-us .reach-h1 {
        font-size: 28px;
    }

    .ctc-us .form-h2 {
        font-size: 28px;
    }

    .ctc-us .infographic-strip {
        flex-direction: column;
        gap: 8px;
    }

    .ctc-us .f-row {
        grid-template-columns: 1fr;
    }

    .ctc-us .checks-grid {
        grid-template-columns: 1fr;
    }

    .ctc-us .reach-top-row {
        flex-direction: column;
        gap: 24px;
    }

    .ctc-us .reach-img-card {
        width: 100%;
        height: 160px;
    }

    .ctc-us .btn-submit {
        width: 100%;
        text-align: center;
    }

    .ctc-us .form-sidebar {
        position: static;
    }

    .ctc-us .sect-reach {
        padding: 40px 0;
    }

    .ctc-us .sect-form {
        padding: 40px 0;
    }
}

.abt-us {
    max-width: 100%;
    overflow-x: hidden;
}

.abt-us .pg-load {
    animation: scaleReveal 0.16s cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes scaleReveal {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.abt-us .band-divider {
    height: 6px;
    background: #DF3542;
    width: 100%;
}

.abt-us .band-divider.alt {
    background: #FDA838;
}

/* ── TITLE BLOCK ── */
.abt-us .ttl-blk {
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, #002037 100%);
    padding: 80px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 520px;
}

.abt-us .ttl-blk__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.abt-us .ttl-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
    filter: blur(2px) saturate(0.6);
}

.abt-us .ttl-blk__body {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding-top: 80px;
}

.abt-us .ttl-blk__label {
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #FDA838;
    margin-bottom: 24px;
    display: block;
}

.abt-us .ttl-blk__h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px;
    max-width: 820px;
}

.abt-us .ttl-blk__h1 em {
    font-style: normal;
    color: #DF3542;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.abt-us .ttl-blk__sub {
    font-size: 21px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin: 0;
}

/* ── SECTION 1 - WHO WE ARE ── */
.abt-us .who-blk {
    background: #ffffff;
    padding: 80px 24px;
}

.abt-us .who-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    align-items: start;
}

.abt-us .who-blk__aside {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt-us .who-blk__aside-note {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.1em;
    border-top: 2px solid #FDA838;
    padding-top: 8px;
}

.abt-us .who-blk__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .who-blk__stat-num {
    font-size: 52px;
    line-height: 1.2;
    color: #DF3542;
    font-weight: 700;
}

.abt-us .who-blk__stat-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    text-transform: uppercase;
    font-variant: small-caps;
}

.abt-us .who-blk__ring {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.abt-us .who-blk__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt-us .who-blk__h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #DF3542;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.abt-us .who-blk__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .who-blk__p {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin: 0;
}

.abt-us .who-blk__p.micro {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    color: #002037;
}

.abt-us .who-blk__img-wrap {
    border-radius: 2px;
    overflow: hidden;
    max-width: 100%;
}

.abt-us .who-blk__img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.abt-us .who-blk__three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.abt-us .col-card {
    padding: 40px 24px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .col-card.bg-primary {
    background: #DF3542;
}

.abt-us .col-card.bg-secondary {
    background: #002037;
}

.abt-us .col-card.bg-tertiary {
    background: rgba(253, 168, 56, 0.12);
    border: 1px solid #FDA838;
}

.abt-us .col-card__h4 {
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.abt-us .col-card.bg-primary .col-card__h4,
.abt-us .col-card.bg-secondary .col-card__h4 {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.abt-us .col-card.bg-tertiary .col-card__h4 {
    color: #002037;
    text-decoration-color: #FDA838;
}

.abt-us .col-card__p {
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

.abt-us .col-card.bg-primary .col-card__p,
.abt-us .col-card.bg-secondary .col-card__p {
    color: rgba(255, 255, 255, 0.85);
}

.abt-us .col-card.bg-tertiary .col-card__p {
    color: #002037;
}

/* ── SECTION 2 - TEAM + TABLE ── */
.abt-us .team-blk {
    background: radial-gradient(circle at 0% 100%, rgba(253, 168, 56, 0.18) 0%, transparent 65%);
    background-color: #f4f0eb;
    padding: 80px 24px;
}

.abt-us .team-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.abt-us .team-blk__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.abt-us .team-blk__h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: #FDA838;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.abt-us .team-blk__p {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 24px;
}

.abt-us .team-blk__p.micro {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    color: #002037;
    margin-bottom: 24px;
}

.abt-us .team-blk__img-wrap {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.abt-us .team-blk__img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.abt-us .team-blk__img-wrap:hover img {
    filter: saturate(1);
}

.abt-us .team-blk__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 32, 55, 0.85) 0%, transparent 100%);
    padding: 40px 24px 24px;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.1em;
}

.abt-us .team-blk__members {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .mbr-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 1px 3px 5px -2px rgba(223, 53, 66, 0.05);
    transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.abt-us .mbr-row:hover {
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
}

.abt-us .mbr-row__ring {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.abt-us .mbr-row__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .mbr-row__name {
    font-size: 16px;
    line-height: 1.2;
    color: #002037;
    font-weight: 600;
    margin: 0;
}

.abt-us .mbr-row__role {
    font-size: 13px;
    line-height: 1.2;
    color: #DF3542;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    margin: 0;
}

/* DATA TABLE */
.abt-us .data-tbl-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .data-tbl-wrap__h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #002037;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #DF3542;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.abt-us .data-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.8;
}

.abt-us .data-tbl thead tr {
    background: #002037;
}

.abt-us .data-tbl thead th {
    color: #ffffff;
    padding: 8px 24px;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.abt-us .data-tbl tbody tr {
    transition: background 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.abt-us .data-tbl tbody tr:nth-child(even) {
    background: rgba(0, 32, 55, 0.04);
}

.abt-us .data-tbl tbody tr:hover {
    background: rgba(253, 168, 56, 0.15);
}

.abt-us .data-tbl tbody td {
    padding: 8px 24px;
    color: #002037;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 32, 55, 0.08);
}

.abt-us .data-tbl tbody td.td-accent {
    color: #DF3542;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
}

/* CIRCLES DECORATION */
.abt-us .circles-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.abt-us .circles-deco__c {
    position: absolute;
    border-radius: 24px;
    border: 1px solid rgba(253, 168, 56, 0.18);
}

/* CTA STRIP */
.abt-us .cta-strip {
    background: #002037;
    padding: 40px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.abt-us .cta-strip__inner {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.abt-us .cta-strip__txt {
    font-size: 21px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.abt-us .cta-strip__txt em {
    font-style: normal;
    color: #FDA838;
}

.abt-us .btn-primary {
    display: inline-block;
    padding: 8px 40px;
    background: #DF3542;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: color 0.13s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 1px 3px 5px -2px rgba(223, 53, 66, 0.05);
}

.abt-us .btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FDA838;
    transform: translateX(100%);
    transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1);
    z-index: 0;
}

.abt-us .btn-primary:hover::before {
    transform: translateX(0);
}

.abt-us .btn-primary span {
    position: relative;
    z-index: 1;
}

.abt-us .btn-primary:hover {
    color: #002037;
}

.abt-us .btn-primary:active {
    box-shadow: inset 1px 3px 5px -2px rgba(223, 53, 66, 0.18);
}

.abt-us .btn-primary:focus-visible {
    outline: 2px solid #FDA838;
    outline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .abt-us .ttl-blk__h1 {
        font-size: 52px;
    }

    .abt-us .who-blk__inner {
        grid-template-columns: 180px 1fr;
        gap: 40px;
    }

    .abt-us .who-blk__three-col {
        grid-template-columns: 1fr 1fr;
    }

    .abt-us .team-blk__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .abt-us .ttl-blk__h1 {
        font-size: 38px;
    }

    .abt-us .ttl-blk__sub {
        font-size: 16px;
    }

    .abt-us .ttl-blk {
        padding: 40px 24px 40px;
        min-height: 380px;
    }

    .abt-us .who-blk__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-us .who-blk__aside {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .abt-us .who-blk__three-col {
        grid-template-columns: 1fr;
    }

    .abt-us .who-blk__h2 {
        font-size: 28px;
    }

    .abt-us .team-blk__h2 {
        font-size: 28px;
    }

    .abt-us .team-blk__img-wrap img {
        height: 240px;
    }

    .abt-us .data-tbl thead th,
    .abt-us .data-tbl tbody td {
        padding: 8px 16px;
        font-size: 13px;
    }

    .abt-us .cta-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .abt-us .who-blk,
    .abt-us .team-blk {
        padding: 40px 24px;
    }

    .abt-us .mbr-row {
        padding: 16px;
    }
}

.rt {
    max-width: 100%;
    overflow-x: hidden;
}

.rt .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Load animations */
@keyframes clipReveal {
    from {
        clip-path: inset(0 0 100% 0);
    }

    to {
        clip-path: inset(0 0 0% 0);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.rt .t-blk {
    padding: 80px 24px 40px;
    text-align: center;
    position: relative;
    background: #fff;
}

.rt .t-blk__deco {
    position: absolute;
    top: 40px;
    left: 80px;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(223, 53, 66, 0.12);
    border-radius: 2px;
    pointer-events: none;
    transform: rotate(18deg);
}

.rt .t-blk__deco-b {
    position: absolute;
    top: 24px;
    right: 60px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(0, 32, 55, 0.08);
    border-radius: 24px;
    pointer-events: none;
    transform: rotate(-10deg);
}

.rt .t-blk__pill {
    display: inline-block;
    background: rgba(253, 168, 56, 0.15);
    color: #002037;
    font-size: 13px;
    font-variant: small-caps;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 24px;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    animation: slideFromBottom 0.16s cubic-bezier(0.4, 0, 1, 1) both;
}

.rt .t-blk__manifesto {
    max-width: 780px;
    margin: 0 auto 24px;
    animation: clipReveal 0.18s cubic-bezier(0.4, 0, 1, 1) 0.06s both;
}

.rt .t-blk__manifesto h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
}

.rt .t-blk__manifesto h1 span {
    color: #DF3542;
}

.rt .t-blk__manifesto p {
    font-size: 21px;
    line-height: 1.8;
    color: #002037;
    margin: 0;
}

.rt .t-blk__img-wrap {
    max-width: 900px;
    margin: 40px auto 0;
    animation: slideFromBottom 0.18s cubic-bezier(0.4, 0, 1, 1) 0.12s both;
}

.rt .t-blk__img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
    border-radius: 2px;
    display: block;
}

/* ─── SECTION 2: PEOPLE ─── */
.rt .ppl-blk {
    padding: 80px 24px;
    background: linear-gradient(to right, rgba(0, 32, 55, 0.04) 0%, transparent 60%);
    border-top: 1px solid rgba(0, 32, 55, 0.08);
}

.rt .ppl-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.rt .ppl-blk__aside {
    animation: slideFromLeft 0.14s cubic-bezier(0.4, 0, 1, 1) 0.08s both;
}

.rt .ppl-blk__aside-label {
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: block;
}

.rt .ppl-blk__aside h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(223, 53, 66, 0.3);
    text-underline-offset: 6px;
}

.rt .ppl-blk__aside p {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 8px;
}

.rt .ppl-blk__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    animation: slideFromRight 0.16s cubic-bezier(0.4, 0, 1, 1) 0.1s both;
}

.rt .ppl-card {
    background: #fff;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 1px 7px 20px -2px rgba(0, 32, 55, 0.08);
}

.rt .ppl-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #002037;
    margin: 0 0 8px;
    display: block;
}

.rt .ppl-card__role {
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 8px;
}

.rt .ppl-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    margin: 0;
}

.rt .ppl-blk__img {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.rt .ppl-blk__img img {
    width: 100%;
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* ─── SECTION 3: PROOF / CURRENT ─── */
.rt .proof-blk {
    background: #002037;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.rt .proof-blk__deco-ring {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(253, 168, 56, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.rt .proof-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rt .proof-blk__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.rt .proof-blk__heading {
    flex: 1;
}

.rt .proof-blk__heading h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    text-decoration: underline;
    text-decoration-color: rgba(253, 168, 56, 0.4);
    text-underline-offset: 8px;
    animation: slideFromLeft 0.15s cubic-bezier(0.4, 0, 1, 1) both;
}

.rt .proof-blk__heading p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 480px;
}

.rt .proof-blk__pill {
    display: inline-block;
    background: rgba(253, 168, 56, 0.2);
    color: #FDA838;
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    padding: 8px 24px;
    border-radius: 24px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.rt .proof-blk__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rt .metric-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 24px;
    animation: slideFromBottom 0.17s cubic-bezier(0.4, 0, 1, 1) both;
}

.rt .metric-card:nth-child(2) {
    animation-delay: 0.05s;
}

.rt .metric-card:nth-child(3) {
    animation-delay: 0.1s;
}

.rt .metric-card__num {
    font-size: 52px;
    line-height: 1.2;
    color: #FDA838;
    display: block;
    margin-bottom: 8px;
}

.rt .metric-card__label {
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.rt .metric-card__note {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ─── SECTION 4: SUPPORT ─── */
.rt .sup-blk {
    padding: 80px 24px;
    background: linear-gradient(to bottom right, rgba(253, 168, 56, 0.07), rgba(255, 255, 255, 0) 60%);
    border-top: 1px solid rgba(253, 168, 56, 0.15);
}

.rt .sup-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.rt .sup-blk__text {
    animation: slideFromLeft 0.13s cubic-bezier(0.4, 0, 1, 1) both;
}

.rt .sup-blk__text .aside-label {
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #FDA838;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 8px;
}

.rt .sup-blk__text h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(253, 168, 56, 0.4);
    text-underline-offset: 6px;
}

.rt .sup-blk__text p {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 8px;
}

.rt .sup-blk__img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rt .sup-blk__img-col img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.rt .sup-blk__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: slideFromRight 0.16s cubic-bezier(0.4, 0, 1, 1) 0.08s both;
}

.rt .sup-opt {
    background: #fff;
    border: 1px solid rgba(0, 32, 55, 0.1);
    border-radius: 2px;
    padding: 24px;
    box-shadow: 1px 3px 5px -2px rgba(0, 32, 55, 0.05);
    transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1), border-color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.rt .sup-opt:hover {
    box-shadow: 1px 12px 40px -2px rgba(0, 32, 55, 0.10);
    border-color: rgba(223, 53, 66, 0.25);
}

.rt .sup-opt__label {
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    display: block;
    margin-bottom: 8px;
}

.rt .sup-opt h4 {
    font-size: 16px;
    color: #002037;
    margin: 0 0 8px;
}

.rt .sup-opt p {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    margin: 0;
}

/* ─── SECTION 5: LONG-TERM VALUE + COMPARISON ─── */
.rt .val-blk {
    padding: 80px 24px;
    background: #fff;
    border-top: 1px solid rgba(223, 53, 66, 0.1);
}

.rt .val-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.rt .val-blk__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.rt .val-blk__top-aside {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.55);
    border-right: 1px solid rgba(0, 32, 55, 0.1);
    padding-right: 40px;
}

.rt .val-blk__top-aside strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.rt .val-blk__top-main h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(223, 53, 66, 0.25);
    text-underline-offset: 6px;
}

.rt .val-blk__top-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 8px;
}

.rt .val-blk__cmp-label {
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #002037;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
    display: block;
}

.rt .val-blk__cmp {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.rt .cmp-opt {
    border: 1px solid rgba(0, 32, 55, 0.12);
    border-radius: 2px;
    padding: 24px;
    background: #fff;
    position: relative;
    transition: box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.rt .cmp-opt:hover {
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
}

.rt .cmp-opt.recommended {
    border-color: #DF3542;
    background: linear-gradient(160deg, rgba(223, 53, 66, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.10);
}

.rt .cmp-opt__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #DF3542;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-variant: small-caps;
    padding: 8px 24px;
    border-radius: 24px;
    letter-spacing: 0.04em;
}

.rt .cmp-opt h4 {
    font-size: 21px;
    color: #002037;
    margin: 0 0 8px;
}

.rt .cmp-opt__price {
    font-size: 28px;
    color: #DF3542;
    display: block;
    margin-bottom: 8px;
}

.rt .cmp-opt p {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 8px;
}

.rt .cmp-opt ul {
    margin: 8px 0 0;
    padding: 0 0 0 24px;
    list-style: disc;
}

.rt .cmp-opt ul li {
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
}

.rt .val-blk__cta {
    text-align: center;
    animation: fadeIn 0.18s cubic-bezier(0.4, 0, 1, 1) 0.1s both;
}

.rt .btn-main {
    display: inline-block;
    background: #DF3542;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 24px 40px;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.rt .btn-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #002037;
    transform: translateX(100%);
    transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1);
    z-index: 0;
}

.rt .btn-main:hover::after {
    transform: translateX(0);
}

.rt .btn-main:active {
    box-shadow: inset 1px 3px 5px -2px rgba(0, 32, 55, 0.18);
}

.rt .btn-main span {
    position: relative;
    z-index: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1280px) {
    .rt .t-blk__manifesto h1 {
        font-size: 52px;
    }

    .rt .proof-blk__heading h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .rt .t-blk {
        padding: 40px 24px 24px;
    }

    .rt .t-blk__manifesto h1 {
        font-size: 38px;
    }

    .rt .t-blk__manifesto p {
        font-size: 16px;
    }

    .rt .t-blk__deco,
    .rt .t-blk__deco-b {
        display: none;
    }

    .rt .ppl-blk__inner {
        grid-template-columns: 1fr;
    }

    .rt .ppl-blk__grid {
        grid-template-columns: 1fr;
    }

    .rt .proof-blk__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .rt .proof-blk__heading h2 {
        font-size: 28px;
    }

    .rt .proof-blk__metrics {
        grid-template-columns: 1fr;
    }

    .rt .metric-card__num {
        font-size: 38px;
    }

    .rt .sup-blk__inner {
        grid-template-columns: 1fr;
    }

    .rt .sup-blk__img-col img {
        height: 200px;
    }

    .rt .val-blk__top {
        grid-template-columns: 1fr;
    }

    .rt .val-blk__top-aside {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(0, 32, 55, 0.1);
        padding-bottom: 24px;
    }

    .rt .val-blk__cmp {
        grid-template-columns: 1fr;
    }

    .rt .val-blk__top-main h2 {
        font-size: 28px;
    }

    .rt .sup-blk__text h2 {
        font-size: 28px;
    }

    .rt .ppl-blk__aside h2 {
        font-size: 28px;
    }
}

.innov {
    max-width: 100%;
    overflow-x: hidden;
}

.innov .pg-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.innov .s-title {
    padding: 80px 0 0;
}

.innov .s-title .pg-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    min-height: 420px;
}

.innov .t-text-col {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0 40px 0;
    position: relative;
    z-index: 1;
}

.innov .t-dot-grid {
    position: absolute;
    top: 0;
    left: -24px;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 32, 55, 0.13) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.innov .t-text-col>* {
    position: relative;
    z-index: 1;
}

.innov .t-img-col {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.innov .t-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    display: block;
}

.innov .t-img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(253, 168, 56, 0.28), transparent 70%);
    pointer-events: none;
}

.innov .t-anchor {
    font-size: 66px;
    line-height: 1.2;
    color: rgba(223, 53, 66, 0.10);
    font-weight: 900;
    display: block;
    margin-bottom: 8px;
    user-select: none;
    letter-spacing: -2px;
}

.innov .t-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 8px;
    text-decoration: underline;
    text-decoration-color: #DF3542;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.innov .accent-label {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    display: block;
    margin-bottom: 24px;
}

.innov .s-approach {
    padding: 80px 0;
    position: relative;
}

.innov .s-approach::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #DF3542, #FDA838);
}

.innov .s-approach .pg-wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.innov .ap-aside {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.innov .ap-aside-label {
    font-size: 13px;
    line-height: 1.8;
    text-transform: uppercase;
    font-variant: small-caps;
    color: rgba(0, 32, 55, 0.5);
}

.innov .ap-aside-note {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.6);
    border-top: 1px solid rgba(0, 32, 55, 0.12);
    padding-top: 8px;
}

.innov .ap-body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.innov .ap-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: #FDA838;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.innov .ap-lead {
    font-size: 21px;
    line-height: 1.8;
    color: #002037;
    margin: 0 0 24px;
}

.innov .ap-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.82);
    margin: 0 0 24px;
}

.innov .ap-text:last-child {
    margin-bottom: 0;
}

.innov .ap-metrics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(0, 32, 55, 0.03);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.innov .ap-metrics::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(253, 168, 56, 0.10), transparent 60%);
    pointer-events: none;
}

.innov .metric-item {
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.innov .metric-val {
    font-size: 38px;
    line-height: 1.2;
    color: #DF3542;
    font-weight: 700;
}

.innov .metric-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.7);
    text-transform: uppercase;
    font-variant: small-caps;
}

.innov .funnel-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 40px 0 0;
}

.innov .funnel-label {
    font-size: 13px;
    line-height: 1.8;
    text-transform: uppercase;
    font-variant: small-caps;
    color: rgba(0, 32, 55, 0.5);
    margin-bottom: 8px;
}

.innov .funnel-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.innov .funnel-bar-wrap {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.innov .funnel-bar {
    height: 32px;
    border-radius: 2px;
    position: relative;
    transition: box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.innov .funnel-bar:hover {
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
}

.innov .funnel-bar.f1 {
    width: 100%;
    background: #DF3542;
}

.innov .funnel-bar.f2 {
    width: 78%;
    background: #c02030;
}

.innov .funnel-bar.f3 {
    width: 56%;
    background: #FDA838;
}

.innov .funnel-bar.f4 {
    width: 34%;
    background: #002037;
}

.innov .funnel-step-name {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.75);
    min-width: 140px;
    text-align: right;
}

.innov .divider-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 40px 0;
}

.innov .divider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 24px;
    background: rgba(0, 32, 55, 0.18);
    display: inline-block;
}

.innov .ap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.innov .ap-card {
    border-radius: 2px;
    padding: 24px;
    background: #fff;
    border-top: 3px solid #DF3542;
    box-shadow: 1px 3px 5px -2px rgba(223, 53, 66, 0.05);
    transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.innov .ap-card:hover {
    box-shadow: 1px 12px 40px -2px rgba(223, 53, 66, 0.10);
}

.innov .ap-card.alt {
    border-top-color: #FDA838;
}

.innov .ap-card.alt:hover {
    box-shadow: 1px 12px 40px -2px rgba(0, 32, 55, 0.10);
}

.innov .card-h {
    font-size: 16px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 8px;
    text-decoration: underline;
    text-decoration-color: rgba(0, 32, 55, 0.2);
    text-underline-offset: 3px;
}

.innov .card-p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(0, 32, 55, 0.72);
    margin: 0;
}

.innov .hover-text-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 40px;
    background: rgba(253, 168, 56, 0.06);
    border-radius: 2px;
}

.innov .hover-text-item {
    font-size: 21px;
    line-height: 1.8;
    color: #002037;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 32, 55, 0.08);
    cursor: default;
    transition: text-shadow 0.18s cubic-bezier(0.4, 0, 1, 1), color 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.innov .hover-text-item:last-child {
    border-bottom: none;
}

.innov .hover-text-item:hover {
    color: #DF3542;
    text-shadow: 1px 7px 20px rgba(223, 53, 66, 0.18);
}

.innov .bg-anim {
    background-size: 200% 200%;
    animation: bgbreathe 10s ease-in-out infinite;
}

@keyframes bgbreathe {
    0% {
        background-size: 200% 200%;
    }

    50% {
        background-size: 220% 220%;
    }

    100% {
        background-size: 200% 200%;
    }
}

@media (max-width: 1280px) {
    .innov .t-h1 {
        font-size: 38px;
    }

    .innov .t-anchor {
        font-size: 52px;
    }

    .innov .ap-aside {
        flex: 0 0 140px;
    }
}

@media (max-width: 768px) {
    .innov .s-title .pg-wrap {
        flex-direction: column;
        min-height: unset;
    }

    .innov .t-img-col {
        flex: 0 0 220px;
        height: 220px;
        order: -1;
    }

    .innov .t-h1 {
        font-size: 28px;
    }

    .innov .t-anchor {
        font-size: 38px;
    }

    .innov .s-approach .pg-wrap {
        flex-direction: column;
    }

    .innov .ap-aside {
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .innov .ap-h2 {
        font-size: 28px;
    }

    .innov .ap-grid {
        grid-template-columns: 1fr;
    }

    .innov .ap-metrics {
        padding: 24px;
    }

    .innov .hover-text-item {
        font-size: 16px;
    }

    .innov .funnel-step-name {
        min-width: 90px;
        font-size: 13px;
    }

    .innov .hover-text-group {
        padding: 24px;
    }

    .innov .funnel-block {
        padding: 24px 0 0;
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(circle at 0% 100%, rgba(253, 168, 56, 0.08) 0%, transparent 60%);
}

.succ-page .succ-wrap {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

.succ-page .succ-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    display: block;
}

.succ-page .succ-icon circle {
    fill: none;
    stroke: #DF3542;
    stroke-width: 2.5;
}

.succ-page .succ-icon polyline {
    fill: none;
    stroke: #DF3542;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.succ-page .succ-tag {
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #DF3542;
    background: rgba(223, 53, 66, 0.07);
    padding: 8px 24px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.succ-page .succ-heading {
    font-size: 52px;
    line-height: 1.2;
    color: #002037;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(253, 168, 56, 0.5);
    text-underline-offset: 6px;
}

.succ-page .succ-note {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    opacity: 0.75;
    margin: 0 0 8px;
}

.succ-page .succ-detail {
    font-size: 16px;
    line-height: 1.8;
    color: #002037;
    opacity: 0.6;
    margin: 0 0 40px;
}

.succ-page .succ-divider {
    width: 48px;
    height: 2px;
    background: #FDA838;
    margin: 0 auto 40px;
    border-radius: 2px;
}

.succ-page .succ-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.succ-page .succ-btn {
    display: inline-block;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 24px 40px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.succ-page .succ-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(100%);
    transition: transform 0.12s cubic-bezier(0.4, 0, 1, 1);
    border-radius: 2px;
}

.succ-page .succ-btn:hover::after {
    transform: translateX(0);
}

.succ-page .succ-btn:focus-visible {
    outline: 2px solid #FDA838;
    outline-offset: 3px;
}

.succ-page .succ-btn.primary {
    background: #DF3542;
    color: #fff;
    box-shadow: 1px 7px 20px -2px rgba(223, 53, 66, 0.08);
}

.succ-page .succ-btn.primary::after {
    background: #002037;
}

.succ-page .succ-btn.primary:hover {
    color: #fff;
}

.succ-page .succ-btn.primary:active {
    box-shadow: inset 1px 3px 5px -2px rgba(223, 53, 66, 0.10);
}

.succ-page .succ-btn.secondary {
    background: transparent;
    color: #002037;
    border: 1.5px solid rgba(0, 32, 55, 0.25);
}

.succ-page .succ-btn.secondary::after {
    background: rgba(0, 32, 55, 0.06);
}

.succ-page .succ-btn.secondary:hover {
    color: #002037;
    border-color: rgba(0, 32, 55, 0.4);
}

.succ-page .succ-contact {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.8;
    color: #002037;
    opacity: 0.55;
}

.succ-page .succ-contact a {
    color: #DF3542;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.succ-page .succ-contact a:hover {
    opacity: 0.75;
}

@media (max-width: 768px) {
    .succ-page {
        padding: 80px 24px;
    }

    .succ-page .succ-heading {
        font-size: 38px;
    }

    .succ-page .succ-actions {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .succ-page .succ-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 24px 40px;
        min-height: 56px;
    }
}