html {
    box-sizing: border-box;
    font-size: 100%;
}

html,
body {
    margin: 0;
}

body {
    padding: 0;
    min-height: 100vh;
}

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

.brand__mark {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand__hex {
    width: 62px;
    height: 62px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    flex-shrink: 0;
}

.brand__hex img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.brand__name {
    font-family: 'Spectral', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #FCFCEA;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.top-bar {
    background-color: #063157;
    padding: 8px 0;
    border-bottom: 1px solid rgba(105, 164, 149, 0.25);
}

.top-bar__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(252, 252, 234, 0.75);
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    line-height: 1.75;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.top-bar__contact:hover,
.top-bar__contact:focus {
    color: #FCFCEA;
}

.top-bar__contact:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    border-radius: 4px;
}

.top-bar__contact svg {
    width: 15px;
    height: 15px;
    fill: #69A495;
    flex-shrink: 0;
}

.top-bar__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.75);
    line-height: 1.75;
}

.top-bar__dot {
    width: 8px;
    height: 8px;
    background-color: #69A495;
    border-radius: 50%;
    flex-shrink: 0;
}

.primary-header {
    background: linear-gradient(135deg, #063157 0%, #0a4a7a 60%, #063157 100%);
    position: relative;
}

.primary-header__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.primary-header__divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(105, 164, 149, 0.5), transparent);
    flex-shrink: 0;
}

.primary-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.primary-nav__item {
    flex-shrink: 0;
}

.primary-nav__link {
    display: block;
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(252, 252, 234, 0.85);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.75;
    letter-spacing: 0.02em;
    transition: color 0.5s ease, background-color 0.5s ease;
    white-space: nowrap;
}

.primary-nav__link:hover {
    color: #FCFCEA;
    background-color: rgba(105, 164, 149, 0.18);
}

.primary-nav__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    color: #FCFCEA;
}

.primary-nav__link--active {
    color: #FCFCEA;
    background-color: rgba(105, 164, 149, 0.22);
}

.header-action {
    flex-shrink: 0;
    margin-left: auto;
}

.header-action__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #063157;
    background-color: #69A495;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1.75;
    letter-spacing: 0.01em;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    position: relative;
    overflow: hidden;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.header-action__btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #FCFCEA;
    transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.header-action__btn:hover::before {
    right: 0;
}

.header-action__btn:hover {
    color: #063157;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.header-action__btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.6);
}

.header-action__btn span {
    position: relative;
    z-index: 1;
}

.header-action__btn svg {
    position: relative;
    z-index: 1;
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-footer {
    background-color: #063157;
    padding: 72px 0 0 0;
    position: relative;
}

.site-footer__top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #69A495, transparent);
}

.site-footer__brand-row {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 36px 36px;
    border-bottom: 1px solid rgba(105, 164, 149, 0.2);
}

.site-footer__brand-row .brand__name {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: rgba(252, 252, 234, 0.15);
    font-weight: 700;
    font-style: italic;
}

.site-footer__cols {
    max-width: 1500px;
    margin: 0 auto;
    padding: 36px 36px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 36px;
}

.footer-company__logo-wrap {
    margin-bottom: 16px;
}

.footer-company__logo-hex {
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
}

.footer-company__logo-hex img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.footer-company__name {
    font-family: 'Spectral', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #FCFCEA;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-company__desc {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.65);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 16px;
}

.footer-company__year {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(105, 164, 149, 0.75);
    line-height: 1.75;
}

.footer-col__heading {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #69A495;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.footer-links__link {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.7);
    text-decoration: none;
    line-height: 1.75;
    transition: color 0.55s ease;
    display: inline-block;
}

.footer-links__link:hover {
    color: #FCFCEA;
}

.footer-links__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    border-radius: 2px;
    color: #FCFCEA;
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-contact__icon {
    width: 16px;
    height: 16px;
    fill: #69A495;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact__label {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.65);
    line-height: 1.75;
}

.footer-contact__link {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.7);
    text-decoration: none;
    line-height: 1.75;
    transition: color 0.55s ease;
    display: block;
}

.footer-contact__link:hover {
    color: #FCFCEA;
}

.footer-contact__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    border-radius: 2px;
    color: #FCFCEA;
}

.footer-contact__prefs {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(105, 164, 149, 0.15);
}

.footer-contact__prefs-link {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(105, 164, 149, 0.8);
    text-decoration: none;
    line-height: 1.75;
    transition: color 0.55s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact__prefs-link:hover {
    color: #69A495;
}

.footer-contact__prefs-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    border-radius: 2px;
}

.footer-contact__prefs-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.site-footer__bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid rgba(105, 164, 149, 0.12);
    margin-top: 36px;
}

.footer-copy {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.4);
    line-height: 1.75;
}

.footer-legal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal__link {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(252, 252, 234, 0.4);
    text-decoration: none;
    line-height: 1.75;
    transition: color 0.5s ease;
}

.footer-legal__link:hover {
    color: rgba(252, 252, 234, 0.75);
}

.footer-legal__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.5);
    border-radius: 2px;
    color: rgba(252, 252, 234, 0.75);
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background-color: #ffffff;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    border-top: 2px solid #69A495;
    transform: translateX(-100%);
    transition: transform 0.26s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consent-bar--visible {
    transform: translateX(0);
}

.consent-bar__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 36px;
}

.consent-bar__body {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    flex-wrap: wrap;
}

.consent-bar__text-group {
    flex: 1;
    min-width: 280px;
}

.consent-bar__desc {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: #063157;
    line-height: 1.75;
    margin-bottom: 8px;
}

.consent-bar__headline {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #063157;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.consent-bar__panel {
    margin-top: 16px;
    padding: 16px;
    background-color: #FCFCEA;
    border-radius: 8px;
    border: 1px solid rgba(105, 164, 149, 0.3);
}

.consent-bar__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.consent-bar__toggle-label {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: #063157;
    line-height: 1.75;
}

.consent-bar__toggle-label span {
    display: block;
    font-size: 15px;
    color: rgba(6, 49, 87, 0.6);
    line-height: 1.75;
}

.consent-bar__switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.consent-bar__switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.consent-bar__switch-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 49, 87, 0.15);
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.consent-bar__switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.consent-bar__switch input:checked+.consent-bar__switch-track {
    background-color: #69A495;
}

.consent-bar__switch input:checked+.consent-bar__switch-track::after {
    transform: translateX(20px);
}

.consent-bar__switch input:focus+.consent-bar__switch-track {
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.4);
}

.consent-bar__necessary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(105, 164, 149, 0.2);
}

.consent-bar__necessary-label {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(6, 49, 87, 0.6);
    line-height: 1.75;
}

.consent-bar__necessary-badge {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: #69A495;
    line-height: 1.1;
    font-weight: 500;
}

.consent-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.consent-bar__expand-btn {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    color: rgba(6, 49, 87, 0.65);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    line-height: 1.75;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.55s ease;
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 8px;
}

.consent-bar__expand-btn:hover {
    color: #063157;
}

.consent-bar__expand-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.4);
    border-radius: 2px;
}

.consent-bar__btn {
    font-family: 'Spectral', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 1.75;
    transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.consent-bar__btn--accept {
    background-color: transparent;
    color: #063157;
    border: 2px solid #063157;
}

.consent-bar__btn--accept:hover {
    background-color: #063157;
    color: #FCFCEA;
}

.consent-bar__btn--accept:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 49, 87, 0.3);
}

.consent-bar__btn--reject {
    background-color: transparent;
    color: #063157;
    border: 2px solid rgba(6, 49, 87, 0.35);
}

.consent-bar__btn--reject:hover {
    background-color: rgba(6, 49, 87, 0.06);
    border-color: #063157;
}

.consent-bar__btn--reject:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(6, 49, 87, 0.2);
}

.consent-bar__btn--save {
    background-color: transparent;
    color: #69A495;
    border: 2px solid #69A495;
}

.consent-bar__btn--save:hover {
    background-color: #69A495;
    color: #ffffff;
}

.consent-bar__btn--save:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(105, 164, 149, 0.4);
}

@media (max-width: 1024px) {
    .primary-header__inner {
        padding: 16px 36px;
        gap: 16px;
    }

    .site-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .top-bar__inner {
        padding: 0 36px;
    }
}

@media (max-width: 640px) {
    .top-bar__inner {
        padding: 0 16px;
        gap: 16px;
    }

    .primary-header__inner {
        padding: 16px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .primary-nav {
        order: 3;
        width: 100%;
    }

    .primary-nav__list {
        gap: 4px;
    }

    .header-action {
        margin-left: 0;
    }

    .site-footer__cols {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__brand-row {
        padding: 0 16px 36px;
    }

    .site-footer__cols {
        padding: 36px 16px 0;
    }

    .site-footer__bottom {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-bar__inner {
        padding: 16px;
    }

    .consent-bar__body {
        gap: 16px;
    }

    .site-footer {
        padding: 36px 0 0 0;
    }
}

@media (max-width: 360px) {
    .brand__name {
        font-size: 15px;
    }

    .primary-nav__link {
        padding: 8px;
        font-size: 15px;
    }

    .header-action__btn {
        padding: 8px;
        font-size: 15px;
    }

    .top-bar__contact {
        font-size: 15px;
    }
}

.policy-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 72px 36px;
}

.policy-container p {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.policy-container ul,
.policy-container ol {
    margin-bottom: 16px;
    padding-left: 36px;
}

.policy-container ul {
    list-style-type: disc;
}

.policy-container ol {
    list-style-type: decimal;
}

.policy-container li {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.policy-container ul ul,
.policy-container ol ol,
.policy-container ul ol,
.policy-container ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.policy-container strong,
.policy-container b {
    font-weight: 700;
    color: #063157;
}

.policy-container em,
.policy-container i {
    font-style: italic;
    color: #063157;
}

.policy-container a {
    color: #69A495;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color 0.5s ease;
    text-decoration-color: rgba(105, 164, 149, 0.4);
}

.policy-container a:hover {
    color: #063157;
    text-decoration-color: rgba(6, 49, 87, 0.5);
}

.policy-container a:focus-visible {
    outline: 2px solid #69A495;
    outline-offset: 2px;
    border-radius: 2px;
}

.policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.75;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
    border-radius: 8px;
    overflow: hidden;
}

.policy-container thead {
    background-color: #063157;
}

.policy-container thead th {
    color: #FCFCEA;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid rgba(105, 164, 149, 0.4);
}

.policy-container tbody tr {
    border-bottom: 1px solid rgba(6, 49, 87, 0.08);
    transition: background-color 0.5s ease;
}

.policy-container tbody tr:last-child {
    border-bottom: none;
}

.policy-container tbody tr:nth-child(even) {
    background-color: rgba(252, 252, 234, 0.5);
}

.policy-container tbody tr:hover {
    background-color: rgba(105, 164, 149, 0.08);
}

.policy-container td {
    color: #063157;
    font-size: 15px;
    line-height: 1.75;
    padding: 16px;
    vertical-align: top;
    letter-spacing: 0.01em;
}

.policy-container th {
    font-size: 15px;
    line-height: 1.75;
}

.policy-container div {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
}

@media (max-width: 1024px) {
    .policy-container {
        padding: 72px 36px;
    }

    .policy-container table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 640px) {
    .policy-container {
        padding: 36px 16px;
    }

    .policy-container ul,
    .policy-container ol {
        padding-left: 16px;
    }

    .policy-container thead th,
    .policy-container td {
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .policy-container {
        padding: 36px 8px;
    }

    .policy-container p,
    .policy-container li,
    .policy-container td,
    .policy-container th {
        font-size: 15px;
    }
}

.cs-pg {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.cs-pg .pg-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #063157 0%, #69A495 100%);
    border: none;
    margin: 0;
}

/* ── BLOCK 1: Title block ── */
.cs-pg .tb {
    position: relative;
    padding: 72px 36px;
    background: #063157;
    overflow: hidden;
}

.cs-pg .tb__bg-shape {
    position: absolute;
    top: -36px;
    right: -72px;
    width: 520px;
    height: 520px;
    background: rgba(105, 164, 149, 0.09);
    clip-path: polygon(30% 0%, 100% 10%, 85% 80%, 60% 100%, 0% 70%, 10% 20%);
    pointer-events: none;
}

.cs-pg .tb__bg-circle {
    position: absolute;
    bottom: -36px;
    left: 120px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(252, 252, 234, 0.04);
    pointer-events: none;
}

.cs-pg .tb__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
}

.cs-pg .tb__text {
    flex: 1 1 0;
    min-width: 0;
}

.cs-pg .tb__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.cs-pg .tb__label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #69A495;
    flex-shrink: 0;
}

.cs-pg .tb__label-text {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.08em;
    color: #69A495;
    text-transform: uppercase;
}

.cs-pg .tb__h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FCFCEA;
    margin: 0 0 16px 0;
    padding-left: 16px;
    border-left: 3px solid #69A495;
}

.cs-pg .tb__desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.75);
    max-width: 520px;
    margin: 0;
}

.cs-pg .tb__visual {
    flex: 0 0 420px;
    position: relative;
}

.cs-pg .tb__img-wrap {
    border-radius: 14px;
    overflow: hidden;
    width: 420px;
    height: 320px;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    position: relative;
}

.cs-pg .tb__img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(6, 49, 87, 0.55) 0%, transparent 100%);
    pointer-events: none;
}

.cs-pg .tb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    filter: saturate(0.85);
}

.cs-pg .tb__img-wrap:hover .tb__img {
    transform: translateX(-12px);
    filter: saturate(0.3);
}

.cs-pg .tb__img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: rgba(105, 164, 149, 0.18);
    pointer-events: none;
}

/* ── BLOCK 2: Case studies grid ── */
.cs-pg .cases {
    padding: 72px 36px;
    background: #FCFCEA;
    position: relative;
}

.cs-pg .cases__texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2363157' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.cs-pg .cases__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.cs-pg .cases__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 72px;
}

.cs-pg .cases__top-text {
    max-width: 600px;
}

.cs-pg .cases__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    margin: 0 0 16px 0;
    padding-left: 16px;
    border-left: 3px solid #69A495;
}

.cs-pg .cases__lead {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a6a;
    margin: 0;
}

.cs-pg .cases__stat-row {
    display: flex;
    flex-direction: row;
    gap: 36px;
    flex-shrink: 0;
}

.cs-pg .stat-pill {
    background: #063157;
    border-radius: 14px;
    padding: 16px 36px;
    text-align: center;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.cs-pg .stat-pill__num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #69A495;
    display: block;
}

.cs-pg .stat-pill__label {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.75);
}

.cs-pg .cases__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 36px;
}

.cs-pg .case-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cs-pg .case-card:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.cs-pg .case-card--wide {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.cs-pg .case-card--mid {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.cs-pg .case-card--small {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.cs-pg .case-card--bottom-mid {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.cs-pg .case-card--bottom-small {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.cs-pg .case-card__img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.cs-pg .case-card--wide .case-card__img-box {
    height: 340px;
}

.cs-pg .case-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease;
}

.cs-pg .case-card:hover .case-card__img {
    transform: translateY(-10px);
    filter: saturate(0.2);
}

.cs-pg .case-card__body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
}

.cs-pg .case-card--mid .case-card__body,
.cs-pg .case-card--small .case-card__body {
    padding: 16px;
    gap: 8px;
}

.cs-pg .case-card--bottom-mid .case-card__body,
.cs-pg .case-card--bottom-small .case-card__body {
    padding: 16px;
    gap: 8px;
}

.cs-pg .case-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(105, 164, 149, 0.12);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.cs-pg .case-card__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #69A495;
    flex-shrink: 0;
}

.cs-pg .case-card__h3 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #063157;
    margin: 0;
}

.cs-pg .case-card--mid .case-card__h3,
.cs-pg .case-card--small .case-card__h3,
.cs-pg .case-card--bottom-mid .case-card__h3,
.cs-pg .case-card--bottom-small .case-card__h3 {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
}

.cs-pg .case-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a6a;
    margin: 0;
}

.cs-pg .case-card__metrics {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
}

.cs-pg .metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-pg .metric__val {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    font-weight: 700;
}

.cs-pg .metric__lbl {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
}

.cs-pg .case-card__people {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(6, 49, 87, 0.08);
}

.cs-pg .person-portrait {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(105, 164, 149, 0.3);
}

.cs-pg .person-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cs-pg .person-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cs-pg .person-info__name {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    font-weight: 600;
}

.cs-pg .person-info__role {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
}

.cs-pg .case-card__quote {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a6a;
    font-style: italic;
    margin: 0;
    padding: 8px 16px;
    background: rgba(105, 164, 149, 0.07);
    border-radius: 8px;
}

.cs-pg .case-card--no-img {
    background: #063157;
}

.cs-pg .case-card--no-img .case-card__body {
    flex: 1 1 auto;
}

.cs-pg .case-card--no-img .case-card__h3 {
    color: #FCFCEA;
}

.cs-pg .case-card--no-img .case-card__desc {
    color: rgba(252, 252, 234, 0.72);
}

.cs-pg .case-card--no-img .case-card__tag {
    background: rgba(105, 164, 149, 0.2);
    color: #69A495;
}

.cs-pg .case-card--no-img .metric__val {
    color: #69A495;
}

.cs-pg .case-card--no-img .metric__lbl {
    color: rgba(252, 252, 234, 0.65);
}

.cs-pg .case-card--no-img .case-card__people {
    border-top-color: rgba(252, 252, 234, 0.12);
}

.cs-pg .case-card--no-img .person-info__name {
    color: #FCFCEA;
}

.cs-pg .case-card--no-img .person-info__role {
    color: rgba(105, 164, 149, 0.85);
}

.cs-pg .case-card--no-img .case-card__quote {
    color: rgba(252, 252, 234, 0.75);
    background: rgba(105, 164, 149, 0.1);
}

/* Load animation */
@keyframes cs-zoom-out {
    from {
        transform: scale(1.06);
        opacity: 0.7;
    }

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

.cs-pg .tb__inner {
    animation: cs-zoom-out 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Responsive */
@media (max-width: 1280px) {
    .cs-pg .tb__h1 {
        font-size: 41px;
    }

    .cs-pg .tb__visual {
        flex: 0 0 320px;
    }

    .cs-pg .tb__img-wrap {
        width: 320px;
        height: 240px;
    }

    .cs-pg .cases__grid {
        grid-template-columns: 1fr 1fr;
    }

    .cs-pg .case-card--wide {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .cs-pg .case-card--mid {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .cs-pg .case-card--small {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .cs-pg .case-card--bottom-mid {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .cs-pg .case-card--bottom-small {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .cs-pg .case-card--wide .case-card__img-box {
        height: 260px;
    }

    .cs-pg .case-card--mid .case-card__h3,
    .cs-pg .case-card--small .case-card__h3,
    .cs-pg .case-card--bottom-mid .case-card__h3,
    .cs-pg .case-card--bottom-small .case-card__h3 {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .cs-pg .tb__inner {
        flex-direction: column;
        gap: 36px;
    }

    .cs-pg .tb__visual {
        flex: 0 0 auto;
        width: 100%;
    }

    .cs-pg .tb__img-wrap {
        width: 100%;
        height: 260px;
    }

    .cs-pg .cases__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-pg .cases__stat-row {
        width: 100%;
    }

    .cs-pg .stat-pill {
        flex: 1 1 0;
        padding: 16px;
    }
}

@media (max-width: 640px) {
    .cs-pg .tb {
        padding: 36px 16px;
    }

    .cs-pg .tb__h1 {
        font-size: 41px;
    }

    .cs-pg .cases {
        padding: 36px 16px;
    }

    .cs-pg .cases__grid {
        grid-template-columns: 1fr;
    }

    .cs-pg .case-card--wide,
    .cs-pg .case-card--mid,
    .cs-pg .case-card--small,
    .cs-pg .case-card--bottom-mid,
    .cs-pg .case-card--bottom-small {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .cs-pg .cases__stat-row {
        flex-direction: column;
        gap: 16px;
    }

    .cs-pg .cases__top {
        margin-bottom: 36px;
    }

    .cs-pg .cases__grid {
        gap: 16px;
    }
}

@media (max-width: 360px) {
    .cs-pg .tb__h1 {
        font-size: 24px;
    }

    .cs-pg .cases__h2 {
        font-size: 24px;
    }

    .cs-pg .stat-pill__num {
        font-size: 24px;
    }
}

.ctus {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.ctus__wave-divider {
    width: 100%;
    line-height: 0;
    display: block;
    overflow: hidden;
}

.ctus__wave-divider svg {
    display: block;
    width: 100%;
}

/* ── BLOCK 1: MOSAIC TITLE BLOCK ── */
.ctus__opener {
    padding-top: 72px;
    padding-bottom: 36px;
    background: #FCFCEA;
    position: relative;
    overflow: hidden;
}

.ctus__opener-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.ctus__opener-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ctus__opener-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus__opener-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.08em;
    color: #69A495;
    text-transform: uppercase;
    font-weight: 600;
}

.ctus__opener-label-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #69A495;
    border-radius: 2px;
}

.ctus__opener-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #063157;
    font-weight: 800;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #69A495;
}

.ctus__opener-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    margin: 0;
    max-width: 420px;
}

.ctus__opener-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
}

.ctus__mosaic-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    grid-column: 1 / 3;
}

.ctus__mosaic-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus__mosaic-img-wrap:hover img {
    filter: saturate(0);
}

.ctus__mosaic-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 49, 87, 0.10) 0%, rgba(105, 164, 149, 0.18) 100%);
    pointer-events: none;
    border-radius: 14px;
}

.ctus__mosaic-blur-plane {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(6, 49, 87, 0.08) 0%, rgba(105, 164, 149, 0.14) 100%);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.ctus__mosaic-blur-plane::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(105, 164, 149, 0.18);
    filter: blur(12px);
    top: 10px;
    left: 20px;
}

.ctus__mosaic-blur-text {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}

.ctus__mosaic-stat {
    border-radius: 14px;
    background: #063157;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ctus__mosaic-stat-num {
    font-size: 24px;
    line-height: 1.1;
    color: #FCFCEA;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ctus__mosaic-stat-lbl {
    font-size: 15px;
    line-height: 1.1;
    color: #69A495;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ── LETTER DROP ANIMATION ── */
.ctus__drop-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-28px);
    animation: ctus-letter-drop 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes ctus-letter-drop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── WAVE DIVIDER ── */
.ctus__wave-sep {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #FCFCEA;
}

.ctus__wave-sep--inv {
    background: #fff;
}

/* ── BLOCK 2: CONTACT DETAILS + RING METRICS ── */
.ctus__details {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #fff;
    position: relative;
}

.ctus__details-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 72px;
    align-items: start;
}

.ctus__details-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ctus__details-heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    font-weight: 700;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #69A495;
}

.ctus__details-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    margin: 0;
    max-width: 560px;
}

.ctus__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ctus__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #FCFCEA;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus__contact-item:hover {
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
    transform: translateY(-2px);
}

.ctus__contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #063157;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctus__contact-icon svg {
    width: 22px;
    height: 22px;
    fill: #FCFCEA;
}

.ctus__contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus__contact-type {
    font-size: 15px;
    line-height: 1.1;
    color: #69A495;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ctus__contact-val {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.5s ease;
}

.ctus__contact-val:hover {
    color: #69A495;
}

.ctus__contact-val--plain {
    font-weight: 400;
    color: #2a4a68;
}

/* border breaks on hover */
.ctus__contact-item {
    border: 1.5px solid transparent;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.ctus__contact-item::before,
.ctus__contact-item::after {
    content: '';
    position: absolute;
    border-radius: 14px;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.ctus__contact-item::before {
    inset: -1.5px;
    border: 1.5px solid #69A495;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.ctus__contact-item::after {
    inset: -1.5px;
    border: 1.5px solid #69A495;
    border-left-color: transparent;
    border-top-color: transparent;
}

.ctus__contact-item:hover::before,
.ctus__contact-item:hover::after {
    opacity: 1;
}

/* ── RING METRICS SIDEBAR ── */
.ctus__ring-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 8px;
}

.ctus__ring-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 36px 16px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(6, 49, 87, 0.04) 0%, rgba(105, 164, 149, 0.10) 100%);
    box-shadow: 0 8px 40px 0 rgba(105, 164, 149, 0.11);
}

.ctus__ring-wrap {
    position: relative;
    width: 100px;
    height: 100px;
}

.ctus__ring-svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.ctus__ring-track {
    fill: none;
    stroke: rgba(6, 49, 87, 0.10);
    stroke-width: 8;
}

.ctus__ring-fill {
    fill: none;
    stroke: #69A495;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus__ring-fill--dark {
    stroke: #063157;
}

.ctus__ring-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    line-height: 1.1;
    color: #063157;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ctus__ring-label {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    text-align: center;
    font-weight: 500;
}

/* dashed connector */
.ctus__dashed-connector {
    width: 2px;
    height: 36px;
    border-left: 2px dashed rgba(105, 164, 149, 0.45);
    margin: 0 auto;
}

/* ── BLOCK 3: FORM ── */
.ctus__form-section {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    background: linear-gradient(135deg, rgba(6, 49, 87, 0.06) 0%, rgba(252, 252, 234, 0.80) 40%, rgba(105, 164, 149, 0.12) 100%);
}

.ctus__form-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ctus__form-aside {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 8px;
}

.ctus__form-aside-heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    font-weight: 700;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #69A495;
}

.ctus__form-aside-body {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    margin: 0;
}

.ctus__step-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ctus__step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ctus__step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #063157;
    color: #FCFCEA;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.ctus__step-text {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    margin: 0;
    padding-top: 4px;
}

/* ── FORM CARD ── */
.ctus__form-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.ctus__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ctus__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus__field-label {
    font-size: 15px;
    line-height: 1.1;
    color: #063157;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ctus__field-input {
    padding: 16px;
    border-radius: 8px;
    border: 1.5px solid rgba(6, 49, 87, 0.18);
    background: #FCFCEA;
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    outline: none;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.ctus__field-input::placeholder {
    color: rgba(6, 49, 87, 0.38);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus__field-input:focus::placeholder {
    opacity: 0;
}

.ctus__field-input:focus {
    border-color: #69A495;
    box-shadow: 0 3px 3px 0 rgba(105, 164, 149, 0.08);
}

.ctus__field-select {
    padding: 16px;
    border-radius: 8px;
    border: 1.5px solid rgba(6, 49, 87, 0.18);
    background: #FCFCEA;
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    outline: none;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23063157' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
}

.ctus__field-select:focus {
    border-color: #69A495;
    box-shadow: 0 3px 3px 0 rgba(105, 164, 149, 0.08);
}

.ctus__privacy-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(105, 164, 149, 0.08);
}

.ctus__privacy-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #063157;
    cursor: pointer;
}

.ctus__privacy-text {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a68;
    margin: 0;
}

.ctus__privacy-link {
    color: #063157;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.5s ease;
}

.ctus__privacy-link:hover {
    color: #69A495;
}

.ctus__submit-btn {
    position: relative;
    overflow: hidden;
    padding: 16px 36px;
    border-radius: 8px;
    background: #063157;
    color: #FCFCEA;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.ctus__submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #69A495;
    transition: right 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.ctus__submit-btn:hover::before {
    right: 0;
}

.ctus__submit-btn:hover {
    box-shadow: 0 8px 40px 0 rgba(105, 164, 149, 0.11);
    color: #063157;
}

.ctus__submit-btn-text {
    position: relative;
    z-index: 1;
}

.ctus__submit-btn:focus-visible {
    outline: 3px solid #69A495;
    outline-offset: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .ctus__opener-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ctus__opener-h1 {
        font-size: 41px;
    }

    .ctus__details-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ctus__form-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ctus__ring-col {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ctus__dashed-connector {
        display: none;
    }
}

@media (max-width: 640px) {
    .ctus__opener {
        padding-top: 36px;
    }

    .ctus__opener-inner {
        padding: 0 16px;
    }

    .ctus__opener-h1 {
        font-size: 41px;
    }

    .ctus__details-inner,
    .ctus__form-inner {
        padding: 0 16px;
    }

    .ctus__field-row {
        grid-template-columns: 1fr;
    }

    .ctus__form-card {
        padding: 16px;
    }

    .ctus__details {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .ctus__form-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }
}

@media (max-width: 360px) {
    .ctus__opener-h1 {
        font-size: 41px;
    }

    .ctus__opener-inner,
    .ctus__details-inner,
    .ctus__form-inner {
        padding: 0 8px;
    }
}

.srv {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.srv .offer-strip {
    background: #063157;
    padding: 8px 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.srv .offer-strip__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #FCFCEA;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.srv .offer-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #69A495;
    flex-shrink: 0;
}

.srv .pg-lead {
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 520px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 72px 36px;
    gap: 72px;
    align-items: center;
}

.srv .pg-lead__img-col {
    position: relative;
    width: 340px;
    height: 420px;
    flex-shrink: 0;
}

.srv .pg-lead__img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.srv .pg-lead__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .pg-lead__img-wrap:hover img {
    filter: saturate(0);
}

.srv .pg-lead__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 49, 87, 0.72) 0%, rgba(6, 49, 87, 0.18) 55%, transparent 100%);
    border-radius: 4px;
    pointer-events: none;
}

.srv .pg-lead__text-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.srv .pg-lead__eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.srv .pg-lead__eyebrow-line {
    width: 36px;
    height: 3px;
    background: #69A495;
    border-radius: 2px;
}

.srv .pg-lead__eyebrow-label {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.srv .pg-lead__h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #063157;
    letter-spacing: -0.03em;
    margin: 0;
}

.srv .pg-lead__h1 mark {
    background: none;
    color: #063157;
    text-decoration: underline;
    text-decoration-color: #69A495;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.srv .pg-lead__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
    max-width: 520px;
    margin: 0;
}

.srv .pg-lead__rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #FCFCEA;
    border-radius: 8px;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    width: fit-content;
}

.srv .pg-lead__rating-score {
    font-size: 41px;
    line-height: 1.1;
    color: #063157;
    letter-spacing: -0.02em;
}

.srv .pg-lead__rating-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srv .pg-lead__rating-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.srv .pg-lead__star {
    width: 16px;
    height: 16px;
}

.srv .pg-lead__rating-count {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
}

.srv .divider-crosses {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 36px;
    overflow: hidden;
}

.srv .divider-crosses__cross {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0;
    opacity: 0.3;
}

.srv .divider-crosses__cross::before,
.srv .divider-crosses__cross::after {
    content: "";
    position: absolute;
    background: #063157;
    border-radius: 2px;
}

.srv .divider-crosses__cross::before {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
}

.srv .divider-crosses__cross::after {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0;
}

.srv .offers-grid-sec {
    padding: 72px 36px;
    background: #FCFCEA;
    position: relative;
}

.srv .offers-grid-sec__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0;
}

.srv .offers-grid-sec__bg-pattern svg {
    width: 100%;
    height: 100%;
    opacity: 0.04;
}

.srv .offers-grid-sec__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.srv .offers-grid-sec__top {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 72px;
    align-items: start;
    margin-bottom: 72px;
}

.srv .offers-grid-sec__heading-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srv .offers-grid-sec__accent-bar {
    width: 4px;
    height: 48px;
    background: #69A495;
    border-radius: 2px;
}

.srv .offers-grid-sec__h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #063157;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.srv .offers-grid-sec__h2-text {
    flex: 1;
}

.srv .offers-grid-sec__side-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
    margin: 0;
    padding-top: 8px;
}

.srv .offers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.srv .offer-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .offer-card:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    transform: translateY(-3px);
}

.srv .offer-card--wide {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.srv .offer-card--tall {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.srv .offer-card--sm {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.srv .offer-card--sm2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.srv .offer-card--sm3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.srv .offer-card--featured {
    background: #063157;
}

.srv .offer-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #69A495;
    color: #fff;
    font-size: 15px;
    line-height: 1.1;
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
    letter-spacing: 0.04em;
}

.srv .offer-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #FCFCEA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv .offer-card--featured .offer-card__icon-wrap {
    background: rgba(105, 164, 149, 0.18);
}

.srv .offer-card__h3 {
    font-size: 24px;
    line-height: 1.1;
    color: #063157;
    letter-spacing: -0.01em;
    margin: 0;
}

.srv .offer-card--featured .offer-card__h3 {
    color: #FCFCEA;
}

.srv .offer-card__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
    margin: 0;
}

.srv .offer-card--featured .offer-card__desc {
    color: rgba(252, 252, 234, 0.82);
}

.srv .offer-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: gap 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .offer-card__link:hover {
    gap: 16px;
}

.srv .offer-card--featured .offer-card__link {
    color: #FCFCEA;
}

.srv .offer-card__link-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.srv .offer-card__deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.srv .divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(6, 49, 87, 0.12), transparent);
    margin: 0 36px;
}

.srv .process-sec {
    padding: 72px 36px;
    background: #fff;
    position: relative;
}

.srv .process-sec__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(6, 49, 87, 0.03) 0%, rgba(6, 49, 87, 0.07) 60%, rgba(6, 49, 87, 0.12) 100%);
    animation: vigpulse 6s ease-in-out infinite alternate;
}

@keyframes vigpulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.srv .process-sec__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.srv .process-sec__head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 72px;
    max-width: 680px;
}

.srv .process-sec__accent {
    width: 4px;
    border-radius: 2px;
    background: #69A495;
    align-self: stretch;
    flex-shrink: 0;
}

.srv .process-sec__head-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srv .process-sec__h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #063157;
    letter-spacing: -0.02em;
    margin: 0;
}

.srv .process-sec__lead {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
    margin: 0;
}

.srv .step-list {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    position: relative;
}

.srv .step-list__connector {
    position: absolute;
    top: 28px;
    left: 56px;
    right: 56px;
    height: 2px;
    background: linear-gradient(to right, #69A495, rgba(105, 164, 149, 0.2));
    pointer-events: none;
}

.srv .step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 16px;
    position: relative;
}

.srv .step-item__num-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.srv .step-item__num {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #063157;
    color: #FCFCEA;
    font-size: 24px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.srv .step-item__h4 {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.srv .step-item__desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2c4a62;
    margin: 0;
}

.srv .process-sec__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 72px;
    align-items: center;
}

.srv .process-sec__portrait-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 420px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.srv .process-sec__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1);
    transition: filter 0.7s ease;
}

.srv .process-sec__portrait-wrap:hover img {
    filter: saturate(0);
}

.srv .process-sec__quote-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.srv .process-sec__quote-mark {
    width: 48px;
    height: 36px;
    flex-shrink: 0;
}

.srv .process-sec__quote-text {
    font-size: 24px;
    line-height: 1.75;
    color: #063157;
    letter-spacing: -0.01em;
    margin: 0;
}

.srv .process-sec__quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srv .process-sec__author-name {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    font-weight: 700;
}

.srv .process-sec__author-role {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
}

.srv .faq-sec {
    padding: 72px 36px;
    background: #063157;
    position: relative;
}

.srv .faq-sec__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.srv .faq-sec__head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 72px;
}

.srv .faq-sec__accent {
    width: 4px;
    border-radius: 2px;
    background: #69A495;
    align-self: stretch;
    flex-shrink: 0;
}

.srv .faq-sec__h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #FCFCEA;
    letter-spacing: -0.02em;
    margin: 0;
}

.srv .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.srv .faq-item {
    background: rgba(252, 252, 234, 0.06);
    border-radius: 14px;
    padding: 36px;
    border: 1px solid rgba(105, 164, 149, 0.22);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .faq-item:hover {
    background: rgba(105, 164, 149, 0.10);
}

.srv .faq-item__q {
    font-size: 15px;
    line-height: 1.75;
    color: #FCFCEA;
    font-weight: 700;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.srv .faq-item__q-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #69A495;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.srv .faq-item__a {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.78);
    margin: 0;
}

.srv .faq-sec__cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 72px;
}

.srv .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #69A495;
    color: #fff;
    font-size: 15px;
    line-height: 1.75;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 25px 0 rgba(105, 164, 149, 0.18);
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #063157;
    border-radius: 8px;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.srv .btn-primary:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.18);
}

.srv .btn-primary span {
    position: relative;
}

.srv .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: #FCFCEA;
    font-size: 15px;
    line-height: 1.75;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(252, 252, 234, 0.32);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease, color 0.5s ease;
}

.srv .btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(252, 252, 234, 0.08);
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv .btn-outline:hover::before {
    transform: translateX(0);
}

.srv .btn-outline:hover {
    border-color: rgba(252, 252, 234, 0.6);
}

.srv .btn-outline span {
    position: relative;
}

@media (max-width: 1280px) {
    .srv .pg-lead {
        grid-template-columns: 280px 1fr;
        gap: 36px;
    }

    .srv .pg-lead__img-col {
        width: 280px;
        height: 360px;
    }

    .srv .pg-lead__h1 {
        font-size: 41px;
    }

    .srv .offers-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .srv .offer-card--wide {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .srv .offer-card--tall {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .srv .offer-card--sm {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .srv .offer-card--sm2 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .srv .offer-card--sm3 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .srv .offers-grid-sec__top {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }
}

@media (max-width: 1024px) {
    .srv .pg-lead {
        grid-template-columns: 1fr;
        padding: 36px 36px;
    }

    .srv .pg-lead__img-col {
        width: 100%;
        height: 320px;
    }

    .srv .pg-lead__img-wrap {
        width: 100%;
        height: 100%;
    }

    .srv .step-list {
        flex-direction: column;
        gap: 36px;
    }

    .srv .step-list__connector {
        display: none;
    }

    .srv .step-item {
        padding: 0;
    }

    .srv .process-sec__bottom {
        grid-template-columns: 1fr;
    }

    .srv .process-sec__portrait-wrap {
        max-width: 300px;
    }

    .srv .faq-grid {
        grid-template-columns: 1fr;
    }

    .srv .offers-grid {
        grid-template-columns: 1fr;
    }

    .srv .offer-card--wide,
    .srv .offer-card--tall,
    .srv .offer-card--sm,
    .srv .offer-card--sm2,
    .srv .offer-card--sm3 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .srv .pg-lead {
        padding: 36px 16px;
        gap: 36px;
    }

    .srv .pg-lead__h1 {
        font-size: 41px;
    }

    .srv .offers-grid-sec,
    .srv .process-sec,
    .srv .faq-sec {
        padding: 36px 16px;
    }

    .srv .faq-sec__cta-row {
        flex-direction: column;
        gap: 16px;
    }

    .srv .offer-strip {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .srv .pg-lead__h1 {
        font-size: 24px;
    }

    .srv .offers-grid-sec__h2,
    .srv .process-sec__h2,
    .srv .faq-sec__h2 {
        font-size: 24px;
    }
}

.abt {
    position: relative;
    overflow-x: clip;
}

.abt .pg-lead {
    background: #063157;
    padding: 72px 36px;
    position: relative;
}

.abt .pg-lead__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: center;
}

.abt .pg-lead__geo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.abt .pg-lead__geo svg {
    position: absolute;
    bottom: -36px;
    right: 0;
    opacity: 0.06;
    width: 480px;
    height: 480px;
}

.abt .pg-lead__geo-shape {
    position: absolute;
    top: 36px;
    left: 36px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(105, 164, 149, 0.18);
}

.abt .pg-lead__geo-shape--lg {
    width: 220px;
    height: 220px;
    top: -36px;
    left: -36px;
    border-color: rgba(105, 164, 149, 0.09);
}

.abt .pg-lead__text {
    position: relative;
    z-index: 2;
}

.abt .pg-lead__eyebrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.12em;
    color: #69A495;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.abt .pg-lead__h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FCFCEA;
    margin-bottom: 36px;
    font-weight: 700;
}

.abt .pg-lead__h1 em {
    color: #69A495;
    font-style: normal;
}

.abt .pg-lead__desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.75);
    max-width: 520px;
    margin-bottom: 36px;
}

.abt .pg-lead__meta {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: center;
}

.abt .pg-lead__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt .pg-lead__stat-num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FCFCEA;
    font-weight: 700;
}

.abt .pg-lead__stat-label {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.55);
    letter-spacing: 0.04em;
}

.abt .pg-lead__divider {
    width: 1px;
    height: 48px;
    background: rgba(105, 164, 149, 0.3);
}

.abt .pg-lead__img-col {
    position: relative;
    z-index: 2;
}

.abt .pg-lead__img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.abt .pg-lead__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .pg-lead__img-frame:hover img {
    filter: saturate(0);
}

.abt .pg-lead__img-fade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to bottom, #063157 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.abt .pg-lead__img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(6, 49, 87, 0.88);
    border: 1px solid rgba(105, 164, 149, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt .pg-lead__img-badge-num {
    font-size: 24px;
    line-height: 1.1;
    color: #69A495;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.abt .pg-lead__img-badge-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.7);
}

.abt .pg-lead__corner-shape {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 64px;
    height: 64px;
    border-radius: 2px;
    background: rgba(105, 164, 149, 0.15);
    z-index: 0;
}

.abt .divider-tri {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #063157;
}

.abt .divider-tri svg {
    display: block;
    width: 100%;
    height: 48px;
}

.abt .story {
    background: #FCFCEA;
    padding: 72px 36px;
    position: relative;
}

.abt .story__bg-lines {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 360px;
    height: 360px;
    overflow: hidden;
    pointer-events: none;
}

.abt .story__bg-lines svg {
    width: 100%;
    height: 100%;
    opacity: 0.07;
}

.abt .story__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.abt .story__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-bottom: 72px;
    align-items: start;
}

.abt .story__col-left {
    position: relative;
}

.abt .story__accent-line {
    width: 3px;
    height: 48px;
    background: #69A495;
    border-radius: 2px;
    margin-bottom: 16px;
}

.abt .story__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    font-weight: 700;
    margin-bottom: 36px;
}

.abt .story__body {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin-bottom: 16px;
}

.abt .story__col-right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.abt .story__img-primary {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/10;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.abt .story__img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.9);
    transition: filter 0.7s ease;
}

.abt .story__img-primary:hover img {
    filter: saturate(0);
}

.abt .story__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt .story__img-sm {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
}

.abt .story__img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .story__img-sm:hover img {
    filter: saturate(0);
}

.abt .story__timeline {
    margin-bottom: 72px;
}

.abt .story__timeline-head {
    font-size: 24px;
    line-height: 1.1;
    color: #063157;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.abt .story__timeline-head-line {
    flex: 1;
    height: 1px;
    background: rgba(6, 49, 87, 0.12);
}

.abt .tl {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.abt .tl__track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    width: 2px;
    background: rgba(105, 164, 149, 0.25);
}

.abt .tl__group {
    position: relative;
    padding-left: 72px;
    padding-bottom: 36px;
}

.abt .tl__group:last-child {
    padding-bottom: 0;
}

.abt .tl__dot {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FCFCEA;
    border: 2px solid #69A495;
    z-index: 1;
}

.abt .tl__dot--filled {
    background: #69A495;
}

.abt .tl__period {
    display: inline-block;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.08em;
    color: #69A495;
    font-weight: 600;
    margin-bottom: 8px;
}

.abt .tl__event {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 8px;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    position: relative;
}

.abt .tl__event:last-child {
    margin-bottom: 0;
}

.abt .tl__event-label {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    color: #063157;
}

.abt .tl__event-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #4a6a80;
}

.abt .tl__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #063157;
    color: #FCFCEA;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    border-radius: 22px;
    padding: 4px 8px;
    min-width: 28px;
    text-align: center;
}

.abt .story__person {
    background: #063157;
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: center;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    position: relative;
    overflow: hidden;
}

.abt .story__person-bg {
    position: absolute;
    top: -36px;
    right: -36px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(105, 164, 149, 0.12);
    pointer-events: none;
}

.abt .story__person-portrait {
    width: 96px;
    height: 96px;
    min-width: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(105, 164, 149, 0.4);
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
}

.abt .story__person-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt .story__person-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.abt .story__person-name {
    font-size: 24px;
    line-height: 1.1;
    color: #FCFCEA;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.abt .story__person-role {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.abt .story__person-quote {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.72);
}

.abt .story__img-wide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 21/7;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
    margin-bottom: 72px;
}

.abt .story__img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.88);
    transition: filter 0.65s ease;
}

.abt .story__img-wide:hover img {
    filter: saturate(0);
}

.abt .story__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.abt .pillar {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .pillar:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.abt .pillar__border-top {
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 3px;
    background: #69A495;
    border-radius: 0 0 2px 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .pillar:hover .pillar__border-top {
    transform: scaleX(1);
}

.abt .pillar__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.abt .pillar__h4 {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
    color: #063157;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.abt .pillar__text {
    font-size: 15px;
    line-height: 1.75;
    color: #4a6a80;
}

.abt .divider-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #FCFCEA;
}

.abt .divider-bottom svg {
    display: block;
    width: 100%;
    height: 36px;
}

@keyframes abt-cascade-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.abt .pg-lead__text {
    animation: abt-cascade-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.abt .pg-lead__img-col {
    animation: abt-cascade-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.abt .pillar:nth-child(1) {
    animation: abt-cascade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.abt .pillar:nth-child(2) {
    animation: abt-cascade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.22s both;
}

.abt .pillar:nth-child(3) {
    animation: abt-cascade-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.34s both;
}

@media (max-width: 1024px) {
    .abt .pg-lead__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .abt .pg-lead__h1 {
        font-size: 41px;
    }

    .abt .pg-lead__img-col {
        max-width: 400px;
    }

    .abt .story__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .abt .story__pillars {
        grid-template-columns: 1fr 1fr;
    }

    .abt .story__img-wide {
        aspect-ratio: 16/7;
    }
}

@media (max-width: 640px) {
    .abt .pg-lead {
        padding: 36px 16px;
    }

    .abt .pg-lead__h1 {
        font-size: 41px;
    }

    .abt .pg-lead__meta {
        gap: 16px;
        flex-wrap: wrap;
    }

    .abt .story {
        padding: 36px 16px;
    }

    .abt .story__pillars {
        grid-template-columns: 1fr;
    }

    .abt .story__person {
        flex-direction: column;
        gap: 16px;
        padding: 36px 16px;
    }

    .abt .story__top {
        gap: 36px;
    }

    .abt .story__pair {
        grid-template-columns: 1fr;
    }

    .abt .story__timeline {
        margin-bottom: 36px;
    }

    .abt .story__img-wide {
        aspect-ratio: 4/3;
        margin-bottom: 36px;
    }
}

@media (max-width: 360px) {
    .abt .pg-lead__h1 {
        font-size: 41px;
    }

    .abt .story__h2 {
        font-size: 24px;
    }
}

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

.rt__inner {
    max-width: 1500px;
    margin: 0 auto;
}

/* ── TITLE BLOCK ── */
.tb {
    position: relative;
    padding: 72px 72px 0;
    background: #063157;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .tb {
        padding: 72px 36px 0;
    }
}

@media (max-width: 640px) {
    .tb {
        padding: 36px 16px 0;
    }
}

.tb__decor-ring {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 60px solid rgba(105, 164, 149, 0.1);
    pointer-events: none;
}

.tb__decor-square {
    position: absolute;
    bottom: 120px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 22px;
    border: 2px solid rgba(252, 252, 234, 0.08);
    pointer-events: none;
}

.tb__decor-dot {
    position: absolute;
    top: 36px;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #69A495;
    pointer-events: none;
}

.tb__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: end;
    max-width: 1500px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tb__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.tb__text-col {
    padding-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@media (max-width: 640px) {
    .tb__text-col {
        padding-bottom: 36px;
        gap: 16px;
    }
}

.tb__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: #69A495;
    text-transform: uppercase;
}

.tb__eyebrow-line {
    display: block;
    width: 36px;
    height: 2px;
    background: #69A495;
    border-radius: 2px;
}

.tb__h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FCFCEA;
    margin: 0;
}

@media (max-width: 1280px) {
    .tb__h1 {
        font-size: 41px;
    }
}

@media (max-width: 640px) {
    .tb__h1 {
        font-size: 41px;
    }
}

.tb__h1 span {
    color: #69A495;
}

.tb__sub {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.72);
    max-width: 440px;
    margin: 0;
}

.tb__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.tb__btn--primary {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #063157;
    background: #FCFCEA;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.tb__btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #69A495;
    border-radius: 4px;
    transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.tb__btn--primary:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}

.tb__btn--primary span {
    position: relative;
    z-index: 1;
}

.tb__btn--secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #FCFCEA;
    background: transparent;
    border: 1px solid rgba(252, 252, 234, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.5s ease, color 0.5s ease;
}

.tb__btn--secondary:hover {
    border-color: #69A495;
    color: #69A495;
}

.tb__img-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.tb__img-frame {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 4/3;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    position: relative;
}

.tb__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.3) brightness(0.7);
    transition: filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tb__img-frame:hover img {
    filter: saturate(0.5) brightness(0.85);
}

.tb__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 49, 87, 0.55) 0%, rgba(105, 164, 149, 0.2) 100%);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .tb__img-col {
        align-items: flex-start;
    }

    .tb__img-frame {
        max-width: 100%;
    }
}

/* ── DIVIDER ── */
.div-grad {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #69A495 30%, #063157 70%, transparent 100%);
    border: none;
    margin: 0;
}

/* ── SECTION 2: CLIENTS ── */
.cli {
    padding: 72px 72px;
    background: #FCFCEA;
}

@media (max-width: 1024px) {
    .cli {
        padding: 72px 36px;
    }
}

@media (max-width: 640px) {
    .cli {
        padding: 36px 16px;
    }
}

.cli__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.cli__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 72px;
    max-width: 620px;
    padding-left: 16px;
    border-left: 4px solid #69A495;
}

.cli__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    margin: 0;
}

.cli__lead {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin: 0;
}

.cli__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

@media (max-width: 1024px) {
    .cli__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.cli__card {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cli__card:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.cli__card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 640px) {
    .cli__card--featured {
        grid-template-columns: 1fr;
        grid-column: 1;
    }
}

.cli__portrait {
    width: 120px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
    filter: saturate(0.85) brightness(0.95);
    transition: filter 0.7s ease;
}

.cli__portrait:hover {
    filter: saturate(1) brightness(1.05);
}

.cli__card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cli__quote-mark {
    width: 28px;
    height: 20px;
    flex-shrink: 0;
}

.cli__quote {
    font-size: 15px;
    line-height: 1.75;
    color: #063157;
    margin: 0;
    font-style: italic;
}

.cli__situation {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin: 0;
}

.cli__name {
    font-size: 15px;
    font-weight: 700;
    color: #063157;
    margin: 0;
}

.cli__role {
    font-size: 15px;
    color: #69A495;
    margin: 0;
}

.cli__tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 15px;
    background: rgba(105, 164, 149, 0.12);
    color: #063157;
    font-weight: 600;
}

.cli__img-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 8px;
}

.cli__img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.9);
    transition: filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cli__img-wrap:hover img {
    filter: saturate(1) brightness(1.05);
}

/* ── DIVIDER 2 ── */
.div-dots {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    background: #fff;
}

.div-dots__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #69A495;
    opacity: 0.4;
}

.div-dots__dot--mid {
    opacity: 1;
    width: 10px;
    height: 10px;
}

/* ── SECTION 3: WHO THIS WORKS FOR ── */
.fit {
    padding: 72px 72px;
    background: #063157;
    position: relative;
}

@media (max-width: 1024px) {
    .fit {
        padding: 72px 36px;
    }
}

@media (max-width: 640px) {
    .fit {
        padding: 36px 16px;
    }
}

.fit__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(105, 164, 149, 0.06) 100%);
    pointer-events: none;
}

.fit__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.fit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

@media (max-width: 1024px) {
    .fit__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.fit__left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fit__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    border-left: 4px solid #69A495;
}

.fit__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FCFCEA;
    margin: 0;
}

.fit__lead {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.7);
    margin: 0;
}

.fit__profiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fit__profile {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    background: rgba(252, 252, 234, 0.04);
    border: 1px solid rgba(105, 164, 149, 0.15);
    transition: background 0.6s ease, border-color 0.6s ease;
}

.fit__profile:hover {
    background: rgba(105, 164, 149, 0.1);
    border-color: rgba(105, 164, 149, 0.35);
}

.fit__profile-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(105, 164, 149, 0.15);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.fit__profile-icon svg {
    width: 18px;
    height: 18px;
}

.fit__profile-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fit__profile-name {
    font-size: 15px;
    font-weight: 700;
    color: #FCFCEA;
    margin: 0;
}

.fit__profile-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.65);
    margin: 0;
}

.fit__right {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fit__visual {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
}

.fit__visual img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.5) brightness(0.75);
    transition: filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fit__visual:hover img {
    filter: saturate(0.75) brightness(0.9);
}

.fit__visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(6, 49, 87, 0.85) 0%, transparent 100%);
    border-radius: 0 0 14px 14px;
}

.fit__visual-caption p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.85);
    margin: 0;
}

.fit__legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(252, 252, 234, 0.04);
    border: 1px solid rgba(252, 252, 234, 0.08);
}

.fit__legend-title {
    font-size: 15px;
    font-weight: 700;
    color: #FCFCEA;
    margin: 0 0 8px;
}

.fit__legend-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.fit__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fit__legend-dot--a {
    background: #69A495;
}

.fit__legend-dot--b {
    background: #FCFCEA;
    opacity: 0.5;
}

.fit__legend-dot--c {
    background: rgba(105, 164, 149, 0.4);
}

.fit__legend-label {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(252, 252, 234, 0.7);
    margin: 0;
}

/* ── DIVIDER 3 ── */
.div-line {
    height: 2px;
    background: linear-gradient(90deg, #063157 0%, #69A495 50%, #FCFCEA 100%);
    margin: 0;
    border: none;
}

/* ── SECTION 4: RECOGNITION ── */
.rec {
    padding: 72px 72px;
    background: #fff;
}

@media (max-width: 1024px) {
    .rec {
        padding: 72px 36px;
    }
}

@media (max-width: 640px) {
    .rec {
        padding: 36px 16px;
    }
}

.rec__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.rec__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 72px;
}

@media (max-width: 1024px) {
    .rec__top {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 36px;
    }
}

.rec__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 16px;
    border-left: 4px solid #063157;
}

.rec__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    margin: 0;
}

.rec__lead {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin: 0;
}

.rec__portrait-wrap {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .rec__portrait-wrap {
        flex-direction: column;
        gap: 16px;
    }
}

.rec__portrait {
    width: 160px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
    flex-shrink: 0;
    filter: saturate(0.8) brightness(0.95);
    transition: filter 0.7s ease;
    box-shadow: 0 7px 25px 0 rgba(6, 49, 87, 0.10);
}

.rec__portrait:hover {
    filter: saturate(1) brightness(1.05);
}

.rec__expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.rec__expert-name {
    font-size: 24px;
    line-height: 1.1;
    color: #063157;
    font-weight: 700;
    margin: 0;
}

.rec__expert-title {
    font-size: 15px;
    line-height: 1.75;
    color: #69A495;
    font-weight: 600;
    margin: 0;
}

.rec__expert-bio {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin: 0;
}

.rec__assoc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

@media (max-width: 1024px) {
    .rec__assoc {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .rec__assoc {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.rec__assoc-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 36px;
    border-radius: 14px;
    background: #FCFCEA;
    box-shadow: 0 3px 3px 0 rgba(6, 49, 87, 0.08);
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec__assoc-item:hover {
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    transform: translateY(-4px);
}

.rec__assoc-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(6, 49, 87, 0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.rec__assoc-icon svg {
    width: 22px;
    height: 22px;
}

.rec__assoc-name {
    font-size: 15px;
    font-weight: 700;
    color: #063157;
    margin: 0;
}

.rec__assoc-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2a4a63;
    margin: 0;
}

.rec__cases-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    font-size: 15px;
    font-weight: 600;
    color: #063157;
    text-decoration: none;
    border-bottom: 2px solid #69A495;
    padding-bottom: 4px;
    transition: color 0.6s ease, border-color 0.6s ease;
}

.rec__cases-link:hover {
    color: #69A495;
    border-color: #063157;
}

.rec__cases-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec__cases-link:hover svg {
    transform: translateX(4px);
}

.rec__img-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

@media (max-width: 640px) {
    .rec__img-strip {
        grid-template-columns: 1fr;
    }
}

.rec__img-strip-item {
    border-radius: 8px;
    overflow: hidden;
}

.rec__img-strip-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.6) brightness(0.85);
    transition: filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rec__img-strip-item:hover img {
    filter: saturate(0.9) brightness(1.05);
}

/* ── SLIDE-IN ANIMATIONS ── */
@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(-36px);
    }

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

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(36px);
    }

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

.anim-left {
    animation: slide-left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.anim-right {
    animation: slide-right 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.anim-left-2 {
    animation: slide-left 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}

.anim-right-2 {
    animation: slide-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* Corner decorations */
.tb__corner {
    position: absolute;
    width: 36px;
    height: 36px;
    pointer-events: none;
}

.tb__corner--tl {
    top: 16px;
    left: 16px;
    border-top: 2px solid rgba(105, 164, 149, 0.4);
    border-left: 2px solid rgba(105, 164, 149, 0.4);
    border-radius: 2px 0 0 0;
}

.tb__corner--br {
    bottom: 36px;
    right: 36px;
    border-bottom: 2px solid rgba(105, 164, 149, 0.4);
    border-right: 2px solid rgba(105, 164, 149, 0.4);
    border-radius: 0 0 2px 0;
}

@media (max-width: 360px) {
    .tb__h1 {
        font-size: 41px;
    }

    .cli {
        padding: 36px 16px;
    }

    .fit {
        padding: 36px 16px;
    }

    .rec {
        padding: 36px 16px;
    }

    .cli__grid {
        grid-template-columns: 1fr;
    }

    .cli__card--featured {
        grid-column: 1;
    }
}

.success-pg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 36px;
    background: #FCFCEA;
}

.success-pg__card {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 72px 72px;
    box-shadow: 0 8px 40px 0 rgba(6, 49, 87, 0.11);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.success-pg__icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #063157 0%, #69A495 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    box-shadow: 0 7px 25px 0 rgba(105, 164, 149, 0.10);
}

.success-pg__icon-wrap svg {
    display: block;
}

.success-pg__heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #063157;
    margin-bottom: 16px;
    font-weight: 700;
}

.success-pg__text {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: #2d4a5e;
    margin-bottom: 36px;
    max-width: 420px;
}

.success-pg__divider {
    width: 48px;
    height: 2px;
    background: #69A495;
    border-radius: 2px;
    margin-bottom: 36px;
}

.success-pg__detail {
    font-size: 15px;
    line-height: 1.75;
    color: #4a6a7a;
    margin-bottom: 36px;
}

.success-pg__detail strong {
    color: #063157;
    font-weight: 600;
}

.success-pg__btn {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    background: #063157;
    border-radius: 8px;
    padding: 16px 36px;
    border: 2px solid #063157;
    position: relative;
    overflow: hidden;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.success-pg__btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: #69A495;
    transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    border-radius: 6px;
}

.success-pg__btn:hover::after {
    left: 0;
}

.success-pg__btn:hover {
    border-color: #69A495;
    color: #ffffff;
}

.success-pg__btn-label {
    position: relative;
    z-index: 1;
}

.success-pg__btn:focus-visible {
    outline: 3px solid #69A495;
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .success-pg {
        padding: 36px 16px;
    }

    .success-pg__card {
        padding: 36px 16px;
    }

    .success-pg__heading {
        font-size: 24px;
    }
}