* {
    box-sizing: border-box;
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Figtree', sans-serif;
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: none;
    border-bottom: 4px solid #0F3C59;
}

::selection {
    background: #8DBBBD;
    color: #0F3C59;
}

input::placeholder,
textarea::placeholder {
    color: rgba(15, 60, 89, 0.35);
}

.page-header {
    position: relative;
    background-color: #0F3C59;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(141, 187, 189, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 187, 189, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -96px;
    right: -48px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(141, 187, 189, 0.08);
    pointer-events: none;
}

.header-layout {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 120px;
}

.header-brand-zone {
    display: flex;
    align-items: center;
    padding: 32px 48px 32px 48px;
    background: rgba(141, 187, 189, 0.1);
    border-right: 2px solid rgba(141, 187, 189, 0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.brand-link {
    display: block;
    text-decoration: none;
}

.logo-ring {
    width: 72px;
    height: 72px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow:
        0 0 0 2px rgba(141, 187, 189, 0.6),
        0 0 0 5px rgba(141, 187, 189, 0.2),
        0 5px 25px 0 rgba(15, 60, 89, 0.11);
}

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

.header-nav-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 48px 16px 48px;
    position: relative;
    z-index: 2;
}

.header-contact-strip {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(141, 187, 189, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(226, 236, 238, 0.85);
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-item:hover {
    color: #8DBBBD;
}

.contact-item:focus {
    color: #8DBBBD;
    border-bottom: 4px solid #8DBBBD;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    color: #E2ECEE;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: color 0.15s ease-in, border-color 0.15s ease-in, background-color 0.1s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff;
    border-color: rgba(141, 187, 189, 0.5);
    background-color: rgba(141, 187, 189, 0.12);
}

.nav-link:focus {
    border-bottom: 4px solid #8DBBBD;
}

.nav-item-parent>.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
    margin-top: -3px;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #ffffff;
    border-radius: 5px;
    min-width: 220px;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11), 0 12px 48px 0 rgba(15, 60, 89, 0.13);
    border: 1px solid rgba(141, 187, 189, 0.3);
    padding: 8px 0;
    display: none;
    z-index: 100;
}

.nav-item-parent:hover .nav-dropdown,
.nav-dropdown:hover {
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #0F3C59;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1), color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.nav-dropdown-link:hover {
    background-color: #E2ECEE;
    color: #0F3C59;
}

.nav-dropdown-link:focus {
    background-color: #E2ECEE;
    border-bottom: 4px solid #0F3C59;
}

.header-accent {
    position: absolute;
    bottom: 16px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
    pointer-events: none;
}

.accent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(141, 187, 189, 0.4);
}

.accent-dot-large {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(141, 187, 189, 0.25);
}

.site-footer {
    background: #0F3C59;
    padding-top: 96px;
}

.footer-upper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 48px 48px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

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

.footer-logo-separator {
    width: 100%;
    height: 1px;
    background: rgba(141, 187, 189, 0.25);
    margin-bottom: 16px;
}

.footer-logo-ring {
    width: 68px;
    height: 68px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow:
        0 0 0 2px rgba(141, 187, 189, 0.5),
        0 0 0 4px rgba(141, 187, 189, 0.15),
        0 3px 2px 0 rgba(15, 60, 89, 0.05);
}

.footer-logo-ring img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
    color: #E2ECEE;
    margin: 0;
}

.footer-brand-description {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.7);
    margin: 0;
}

.footer-address-block {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-address-line {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(226, 236, 238, 0.65);
}

.footer-contact-link {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    text-decoration: none;
    transition: color 0.12s ease-in;
}

.footer-contact-link:hover {
    color: #E2ECEE;
}

.footer-contact-link:focus {
    color: #E2ECEE;
    border-bottom: 4px solid #8DBBBD;
}

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

.footer-column-heading {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #8DBBBD;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(141, 187, 189, 0.2);
}

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

.footer-nav-link {
    display: block;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.75);
    text-decoration: none;
    transition: color 0.12s ease-in;
}

.footer-nav-link:hover {
    color: #E2ECEE;
}

.footer-nav-link:focus {
    color: #E2ECEE;
    border-bottom: 4px solid #8DBBBD;
}

.footer-bottom-strip {
    border-top: 1px solid rgba(141, 187, 189, 0.15);
    margin-top: 48px;
}

.footer-bottom-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(226, 236, 238, 0.5);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal-link {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(226, 236, 238, 0.5);
    text-decoration: none;
    transition: color 0.12s ease-in;
}

.footer-legal-link:hover {
    color: rgba(226, 236, 238, 0.85);
}

.footer-legal-link:focus {
    color: rgba(226, 236, 238, 0.85);
    border-bottom: 4px solid #8DBBBD;
}

.cookie-card {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 520px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 5px;
    padding: 32px;
    z-index: 4000;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13), 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    border: 1px solid rgba(141, 187, 189, 0.35);
    transform: translateX(120%);
    transition: transform 320ms cubic-bezier(0.4, 0, 1, 1);
}

.cookie-card.visible {
    transform: translateX(0);
}

.cookie-description {
    font-size: 16px;
    line-height: 1.75;
    color: #0F3C59;
    margin: 0 0 8px 0;
}

.cookie-headline {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #0F3C59;
    margin: 0 0 16px 0;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 16px;
}

.cookie-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: underline;
    transition: color 0.15s ease-in;
}

.cookie-btn-accept {
    color: #0F3C59;
    font-weight: 700;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
    color: #8DBBBD;
}

.cookie-btn-decline {
    color: rgba(15, 60, 89, 0.6);
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus {
    color: #0F3C59;
}

.content-policy {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 96px;
    color: #0F3C59;
}

.content-policy p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: #0F3C59;
}

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

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

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

.content-policy li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 8px;
    color: #0F3C59;
}

.content-policy li:last-child {
    margin-bottom: 0;
}

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

.content-policy em,
.content-policy i {
    font-style: italic;
    color: #0F3C59;
}

.content-policy a {
    color: #0F3C59;
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    text-decoration-color: #8DBBBD;
    text-underline-offset: 3px;
    transition: color 0.15s cubic-bezier(0.4, 0, 1, 1), text-decoration-color 0.12s ease-in;
}

.content-policy a:hover {
    color: #8DBBBD;
    text-decoration-color: #0F3C59;
}

.content-policy a:focus-visible {
    outline: 2px solid #8DBBBD;
    outline-offset: 2px;
    border-radius: 5px;
}

.content-policy table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    border-radius: 5px;
    overflow: hidden;
}

.content-policy thead {
    background-color: #0F3C59;
    color: #ffffff;
}

.content-policy thead tr {
    border-bottom: none;
}

.content-policy tbody {
    background-color: #ffffff;
}

.content-policy tbody tr {
    border-bottom: 1px solid #E2ECEE;
    transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

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

.content-policy tbody tr:hover {
    background-color: #E2ECEE;
}

.content-policy th {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: left;
    color: #ffffff;
}

.content-policy td {
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    vertical-align: top;
}

.content-policy hr {
    border: none;
    border-top: 2px solid #E2ECEE;
    margin: 48px 0;
}

.content-policy div {
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .content-policy {
        padding: 48px 48px;
    }
}

@media (max-width: 768px) {
    .content-policy {
        padding: 32px 16px;
    }

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

    .content-policy th,
    .content-policy td {
        padding: 8px 16px;
    }
}

.success-stories-page {
    background-color: #ffffff;
    overflow-x: clip;
}

.success-stories-page ::selection {
    background-color: #8DBBBD;
    color: #0F3C59;
}

.success-stories-page .story-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    padding: 96px 48px 48px 48px;
    gap: 48px;
}

.success-stories-page .strip-image-column {
    flex: 0 0 320px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.success-stories-page .strip-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    opacity: 0;
    animation: stripFadeIn 0.18s cubic-bezier(0.4, 0, 1, 1) 0.1s forwards;
}

@keyframes stripFadeIn {
    to {
        opacity: 1;
    }
}

.success-stories-page .strip-image-column::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #ffffff 100%);
    pointer-events: none;
}

.success-stories-page .strip-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 16px;
}

.success-stories-page .strip-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.success-stories-page .strip-heading {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 32px;
}

.success-stories-page .strip-tagline {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
    max-width: 560px;
    margin-bottom: 32px;
}

.success-stories-page .strip-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.success-stories-page .strip-link {
    display: inline-block;
    padding: 16px 32px;
    border: 3px solid #0F3C59;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: color 0.15s cubic-bezier(0.4, 0, 1, 1), background-color 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.success-stories-page .strip-link:hover {
    background-color: #0F3C59;
    color: #ffffff;
}

.success-stories-page .strip-link.secondary {
    border-color: #8DBBBD;
    color: #0F3C59;
}

.success-stories-page .strip-link.secondary:hover {
    background-color: #8DBBBD;
    color: #0F3C59;
}

.success-stories-page .strip-link .ripple-effect {
    position: absolute;
    border-radius: 40px;
    background-color: rgba(141, 187, 189, 0.35);
    transform: scale(0);
    animation: rippleOut 0.18s cubic-bezier(0.4, 0, 1, 1) forwards;
    pointer-events: none;
}

@keyframes rippleOut {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.success-stories-page .rating-band {
    background-color: #0F3C59;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.82;
    }
}

.success-stories-page .rating-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(141, 187, 189, 0.18) 0%, transparent 70%);
    animation: bgPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.success-stories-page .rating-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.success-stories-page .rating-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    min-width: 160px;
}

.success-stories-page .metric-value {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.success-stories-page .metric-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 16px solid #8DBBBD;
    flex-shrink: 0;
}

.success-stories-page .metric-arrow.down {
    border-bottom: none;
    border-top: 16px solid #8DBBBD;
}

.success-stories-page .metric-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
}

.success-stories-page .rating-divider {
    width: 1px;
    height: 64px;
    background-color: rgba(141, 187, 189, 0.3);
    flex-shrink: 0;
}

.success-stories-page .rating-stars {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.success-stories-page .star-shape {
    width: 24px;
    height: 24px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background-color: #8DBBBD;
    flex-shrink: 0;
}

.success-stories-page .rating-text {
    font-size: 19px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 320px;
}

.success-stories-page .curve-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.success-stories-page .curve-divider svg {
    display: block;
    width: 100%;
}

.success-stories-page .stories-grid-area {
    background-color: #E2ECEE;
    padding: 96px 0 48px 0;
    position: relative;
}

.success-stories-page .stories-grid-area .grid-top-curve {
    margin-top: -1px;
}

.success-stories-page .grid-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
}

.success-stories-page .grid-heading-row {
    margin-bottom: 48px;
    border-right: 4px solid #8DBBBD;
    padding-right: 32px;
    display: inline-block;
}

.success-stories-page .grid-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F3C59;
    font-weight: 700;
}

.success-stories-page .grid-subtext {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
    margin-top: 8px;
}

.success-stories-page .story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.success-stories-page .story-card {
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.success-stories-page .story-card:hover {
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.success-stories-page .card-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.success-stories-page .card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 40px;
    background-color: #E2ECEE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 19px;
    font-weight: 700;
    color: #0F3C59;
}

.success-stories-page .card-name {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #0F3C59;
}

.success-stories-page .card-role {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
}

.success-stories-page .card-quote {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
    flex: 1;
}

.success-stories-page .card-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.success-stories-page .card-star {
    width: 16px;
    height: 16px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background-color: #8DBBBD;
}

.success-stories-page .pyramid-area {
    background-color: #ffffff;
    padding: 96px 0;
}

.success-stories-page .pyramid-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: center;
}

.success-stories-page .pyramid-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.success-stories-page .pyramid-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F3C59;
    font-weight: 700;
}

.success-stories-page .pyramid-body {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
}

.success-stories-page .pyramid-image-wrap {
    flex: 0 0 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    aspect-ratio: 16/9;
}

.success-stories-page .pyramid-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.success-stories-page .pyramid-chart {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.success-stories-page .pyramid-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transition: transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.success-stories-page .pyramid-layer:hover {
    transform: scaleX(1.03);
}

.success-stories-page .pyramid-layer.level-1 {
    width: 100%;
    background-color: #0F3C59;
}

.success-stories-page .pyramid-layer.level-2 {
    width: 85%;
    background-color: #1a5070;
}

.success-stories-page .pyramid-layer.level-3 {
    width: 68%;
    background-color: #4a8fa8;
}

.success-stories-page .pyramid-layer.level-4 {
    width: 50%;
    background-color: #8DBBBD;
    color: #0F3C59;
}

.success-stories-page .pyramid-layer.level-5 {
    width: 32%;
    background-color: #E2ECEE;
    color: #0F3C59;
    font-size: 16px;
}

.success-stories-page .article-area {
    background-color: #0F3C59;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.success-stories-page .article-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(141, 187, 189, 0.12) 0%, transparent 65%);
    animation: bgPulse 6s ease-in-out infinite;
    pointer-events: none;
}

.success-stories-page .article-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.success-stories-page .article-image-col {
    flex: 0 0 440px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 rgba(141, 187, 189, 0.13);
    aspect-ratio: 16/9;
    position: relative;
}

.success-stories-page .article-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.success-stories-page .article-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 55%, rgba(15, 60, 89, 0.6) 100%);
    pointer-events: none;
}

.success-stories-page .article-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.success-stories-page .article-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.success-stories-page .article-heading {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    font-weight: 700;
}

.success-stories-page .article-body {
    font-size: 16px;
    line-height: 1.75;
    color: #c8dde0;
}

.success-stories-page .article-metric-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.success-stories-page .article-metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 5px;
    background-color: rgba(141, 187, 189, 0.12);
    border: 2px solid rgba(141, 187, 189, 0.25);
}

.success-stories-page .article-metric-value {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #8DBBBD;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.success-stories-page .article-metric-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 13px solid #8DBBBD;
}

.success-stories-page .article-metric-label {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(200, 221, 224, 0.8);
}

.success-stories-page .article-link {
    display: inline-block;
    padding: 16px 32px;
    border: 3px solid #8DBBBD;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: background-color 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.success-stories-page .article-link:hover {
    background-color: #8DBBBD;
    color: #0F3C59;
}

@media (max-width: 1100px) {
    .success-stories-page .story-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-stories-page .pyramid-container {
        flex-direction: column;
        gap: 48px;
    }

    .success-stories-page .pyramid-chart {
        flex: none;
        width: 100%;
    }

    .success-stories-page .pyramid-image-wrap {
        flex: none;
        width: 100%;
    }

    .success-stories-page .article-container {
        flex-direction: column;
        gap: 48px;
    }

    .success-stories-page .article-image-col {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .success-stories-page .story-strip {
        flex-direction: column;
        padding: 48px 16px;
    }

    .success-stories-page .strip-image-column {
        flex: none;
        width: 100%;
        height: 220px;
    }

    .success-stories-page .strip-heading {
        font-size: 44px;
    }

    .success-stories-page .story-cards {
        grid-template-columns: 1fr;
    }

    .success-stories-page .rating-inner {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .success-stories-page .rating-divider {
        width: 64px;
        height: 1px;
    }

    .success-stories-page .grid-container {
        padding: 0 16px;
    }

    .success-stories-page .pyramid-container {
        padding: 0 16px;
    }

    .success-stories-page .article-container {
        padding: 0 16px;
    }

    .success-stories-page .grid-heading-row {
        border-right: none;
        padding-right: 0;
    }
}

.front {
    background-color: #ffffff;
    overflow-x: clip;
}

.front .front-schema {
    display: none;
}

.front ::selection {
    background-color: #8DBBBD;
    color: #0F3C59;
}

.front ::-webkit-input-placeholder {
    color: rgba(141, 187, 189, 0.6);
}

.front ::-moz-placeholder {
    color: rgba(141, 187, 189, 0.6);
}

@keyframes brightness-pulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.03);
    }
}

@keyframes ripple-out {
    0% {
        transform: scale(0);
        opacity: 0.35;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.front .ripple-layer {
    position: absolute;
    border-radius: 40px;
    background-color: rgba(141, 187, 189, 0.45);
    width: 60px;
    height: 60px;
    pointer-events: none;
    transform: scale(0);
    animation: ripple-out 0.16s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.front .page-limit {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.front .btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: transparent;
    color: #0F3C59;
    border: 3px solid #0F3C59;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: background-color 0.14s cubic-bezier(0.4, 0, 1, 1), color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.front .btn-primary:hover {
    background-color: #0F3C59;
    color: #ffffff;
}

.front .btn-primary:focus {
    outline: 3px solid #8DBBBD;
    outline-offset: 2px;
}

.front .btn-primary:active {
    background-color: #0a2e44;
}

.front .btn-secondary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.12s ease-in, color 0.12s ease-in;
}

.front .btn-secondary:hover {
    background-color: #ffffff;
    color: #0F3C59;
}

.front .btn-secondary:focus {
    outline: 3px solid #8DBBBD;
    outline-offset: 2px;
}

.front .title-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(105deg, #E2ECEE 0%, #f4f8f9 55%, #ffffff 100%);
    animation: brightness-pulse 6s ease-in infinite;
}

.front .title-block .page-limit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.front .title-text-zone {
    padding: 48px 32px 48px 0;
}

.front .title-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: #8DBBBD;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.front .title-heading {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 32px;
}

.front .title-heading .accent-word {
    color: #8DBBBD;
    display: inline;
}

.front .title-subtext {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
    margin-bottom: 32px;
    max-width: 520px;
}

.front .title-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.front .title-actions .btn-primary {
    color: #0F3C59;
    border-color: #0F3C59;
}

.front .title-actions .btn-primary:hover {
    background-color: #0F3C59;
    color: #ffffff;
}

.front .title-image-zone {
    position: relative;
    padding: 16px;
}

.front .title-image-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-top: 3px solid #0F3C59;
    border-left: 3px solid #0F3C59;
    border-radius: 5px 0 0 0;
    z-index: 1;
}

.front .title-image-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-bottom: 3px solid #8DBBBD;
    border-right: 3px solid #8DBBBD;
    border-radius: 0 0 5px 0;
    z-index: 1;
}

.front .title-image-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.front .title-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front .title-image-frame .image-darken {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 60, 89, 0.45) 0%, rgba(15, 60, 89, 0) 45%);
    pointer-events: none;
}

.front .title-image-frame .color-wash {
    position: absolute;
    inset: 0;
    background-color: rgba(141, 187, 189, 0.45);
    opacity: 0;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.front .title-image-frame:hover .color-wash {
    opacity: 1;
}

.front .support-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(90deg, #E2ECEE 0%, #f0f5f6 50%, #ffffff 100%);
    animation: brightness-pulse 8s ease-in infinite;
}

.front .support-block .page-limit {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 96px;
    align-items: start;
}

.front .support-text {
    max-width: 680px;
}

.front .support-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

.front .support-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 32px;
}

.front .support-body {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
    margin-bottom: 16px;
}

.front .support-aside {
    padding-top: 8px;
}

.front .support-image-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    margin-bottom: 32px;
}

.front .support-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front .support-image-frame .color-wash {
    position: absolute;
    inset: 0;
    background-color: rgba(141, 187, 189, 0.45);
    opacity: 0;
    transition: opacity 0.13s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.front .support-image-frame:hover .color-wash {
    opacity: 1;
}

.front .support-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 32px;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    border-top: 4px solid #8DBBBD;
}

.front .support-card-heading {
    font-size: 16px;
    line-height: 1.2;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .support-card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #2a4a5e;
}

.front .offer-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #0F3C59;
    animation: brightness-pulse 7s ease-in infinite;
    position: relative;
}

.front .offer-block .circles-decor {
    position: absolute;
    bottom: -48px;
    right: -48px;
    width: 240px;
    height: 240px;
    pointer-events: none;
    overflow: hidden;
}

.front .offer-block .circles-decor span {
    position: absolute;
    border-radius: 40px;
    border: 1px solid rgba(226, 236, 238, 0.12);
}

.front .offer-block .circles-decor span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 80px;
    left: 80px;
}

.front .offer-block .circles-decor span:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 50px;
    left: 50px;
}

.front .offer-block .circles-decor span:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 20px;
    left: 20px;
}

.front .offer-block .page-limit {
    position: relative;
    z-index: 2;
}

.front .offer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 48px;
}

.front .offer-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
    font-weight: 700;
    max-width: 520px;
}

.front .offer-intro {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.85);
    max-width: 400px;
}

.front .offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.front .offer-item {
    background: rgba(226, 236, 238, 0.07);
    border-radius: 5px;
    padding: 32px;
    border-top: 4px solid #8DBBBD;
    box-shadow: inset 0 3px 2px 0 rgba(141, 187, 189, 0.05);
    transition: background-color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.front .offer-item:hover {
    background: rgba(226, 236, 238, 0.13);
}

.front .offer-item-number {
    font-size: 44px;
    line-height: 1.2;
    color: rgba(141, 187, 189, 0.35);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.front .offer-item-title {
    font-size: 19px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .offer-item-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.8);
}

.front .team-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #ffffff;
}

.front .team-block .page-limit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.front .team-left {
    padding-right: 32px;
}

.front .team-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 16px;
}

.front .team-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 32px;
}

.front .team-body {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
    margin-bottom: 16px;
}

.front .team-profiles {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.front .team-profile {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

.front .team-profile-image {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 2px 0 rgba(15, 60, 89, 0.05);
}

.front .team-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front .team-profile-image .color-wash {
    position: absolute;
    inset: 0;
    background-color: rgba(141, 187, 189, 0.45);
    opacity: 0;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.front .team-profile-image:hover .color-wash {
    opacity: 1;
}

.front .team-profile-info {
    flex: 1;
}

.front .team-profile-name {
    font-size: 19px;
    line-height: 1.2;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .team-profile-role {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    font-weight: 600;
    margin-bottom: 8px;
}

.front .team-profile-bio {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
}

.front .value-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(105deg, #E2ECEE 0%, #f6f9fa 60%, #ffffff 100%);
    animation: brightness-pulse 9s ease-in infinite;
    position: relative;
}

.front .value-block .circles-decor {
    position: absolute;
    top: -32px;
    left: -32px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden;
}

.front .value-block .circles-decor span {
    position: absolute;
    border-radius: 40px;
    border: 1px solid rgba(15, 60, 89, 0.08);
}

.front .value-block .circles-decor span:nth-child(1) {
    width: 70px;
    height: 70px;
    top: 65px;
    left: 65px;
}

.front .value-block .circles-decor span:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
}

.front .value-block .circles-decor span:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 10px;
}

.front .value-block .page-limit {
    position: relative;
    z-index: 2;
}

.front .value-top {
    max-width: 680px;
    margin-bottom: 48px;
}

.front .value-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 16px;
}

.front .value-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 16px;
}

.front .value-intro {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
}

.front .value-steps {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.front .value-step-list {
    flex: 1;
    position: relative;
    padding-left: 32px;
}

.front .value-step-list::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #8DBBBD, rgba(141, 187, 189, 0.2));
}

.front .value-step {
    position: relative;
    margin-bottom: 32px;
    padding-left: 16px;
}

.front .value-step:last-child {
    margin-bottom: 0;
}

.front .value-step::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 40px;
    background-color: #8DBBBD;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #8DBBBD;
}

.front .value-step-num {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    font-weight: 700;
    margin-bottom: 8px;
}

.front .value-step-title {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .value-step-text {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
}

.front .value-image-col {
    flex: 0 0 420px;
}

.front .value-image-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13);
    border-top: 4px solid #8DBBBD;
}

.front .value-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.front .value-image-frame .color-wash {
    position: absolute;
    inset: 0;
    background-color: rgba(141, 187, 189, 0.45);
    opacity: 0;
    transition: opacity 0.13s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.front .value-image-frame:hover .color-wash {
    opacity: 1;
}

.front .graduation-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #0F3C59;
}

.front .graduation-block .page-limit {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: center;
}

.front .graduation-left {}

.front .graduation-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    color: rgba(141, 187, 189, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 16px;
}

.front .graduation-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 32px;
}

.front .graduation-body {
    font-size: 19px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.85);
    margin-bottom: 16px;
}

.front .graduation-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8DBBBD;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(141, 187, 189, 0.4);
    padding-bottom: 4px;
    transition: border-color 0.12s ease-in, color 0.12s ease-in;
    margin-top: 16px;
}

.front .graduation-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.front .graduation-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.front .grad-card {
    background: rgba(226, 236, 238, 0.07);
    border-radius: 5px;
    padding: 32px;
    border-top: 4px solid #8DBBBD;
    box-shadow: inset 0 3px 2px 0 rgba(141, 187, 189, 0.05);
    transition: background-color 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.front .grad-card:hover {
    background: rgba(226, 236, 238, 0.13);
}

.front .grad-card-title {
    font-size: 19px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .grad-card-text {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(226, 236, 238, 0.8);
}

.front .conditions-block {
    padding-top: 96px;
    padding-bottom: 96px;
    background-color: #ffffff;
    position: relative;
}

.front .conditions-block .circles-decor {
    position: absolute;
    bottom: -32px;
    right: 48px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    overflow: hidden;
}

.front .conditions-block .circles-decor span {
    position: absolute;
    border-radius: 40px;
    border: 1px solid rgba(15, 60, 89, 0.07);
}

.front .conditions-block .circles-decor span:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 60px;
    left: 60px;
}

.front .conditions-block .circles-decor span:nth-child(2) {
    width: 110px;
    height: 110px;
    top: 35px;
    left: 35px;
}

.front .conditions-block .circles-decor span:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 10px;
    left: 10px;
}

.front .conditions-block .page-limit {
    position: relative;
    z-index: 2;
}

.front .conditions-top {
    max-width: 620px;
    margin-bottom: 48px;
}

.front .conditions-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    color: #8DBBBD;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 16px;
}

.front .conditions-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 16px;
}

.front .conditions-intro {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
}

.front .conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.front .condition-item {
    background: #ffffff;
    border-radius: 5px;
    padding: 32px;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    border-top: 4px solid #E2ECEE;
    transition: border-top-color 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1);
}

.front .condition-item:hover {
    border-top-color: #8DBBBD;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.front .condition-item.fits {
    border-top-color: #8DBBBD !important;
}

.front .condition-title {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.front .condition-text {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4a5e;
}

@media (max-width: 1100px) {
    .front .title-heading {
        font-size: 44px;
    }

    .front .offer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .front .value-steps {
        flex-direction: column;
    }

    .front .value-image-col {
        flex: unset;
        width: 100%;
    }
}

@media (max-width: 800px) {
    .front .title-block .page-limit {
        grid-template-columns: 1fr;
    }

    .front .title-image-zone {
        display: none;
    }

    .front .title-heading {
        font-size: 32px;
    }

    .front .support-block .page-limit {
        grid-template-columns: 1fr;
    }

    .front .offer-grid {
        grid-template-columns: 1fr;
    }

    .front .offer-top {
        flex-direction: column;
    }

    .front .team-block .page-limit {
        grid-template-columns: 1fr;
    }

    .front .graduation-block .page-limit {
        grid-template-columns: 1fr;
    }

    .front .conditions-grid {
        grid-template-columns: 1fr;
    }

    .front .page-limit {
        padding-left: 16px;
        padding-right: 16px;
    }

    .front .support-heading,
    .front .offer-heading,
    .front .team-heading,
    .front .value-heading,
    .front .graduation-heading,
    .front .conditions-heading {
        font-size: 32px;
    }
}

.contact-us-page {
    background-color: #f4f8f9;
    overflow-x: clip;
}

.contact-us-page .reach-panel {
    max-width: 1600px;
    margin: 0 auto;
    padding: 96px 48px 96px;
}

.contact-us-page .reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-us-page .reach-label {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.contact-us-page .reach-heading {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0F3C59;
    font-weight: 800;
    margin-bottom: 32px;
}

.contact-us-page .reach-sub {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4f63;
    margin-bottom: 32px;
}

.contact-us-page .info-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-us-page .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us-page .info-item-number {
    width: 32px;
    height: 32px;
    background-color: #0F3C59;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.contact-us-page .info-item-number span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.contact-us-page .info-item-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-us-page .info-item-value {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 500;
    text-decoration: none;
}

.contact-us-page .info-item-value:hover {
    color: #8DBBBD;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 48px;
}

.contact-us-page .divider-wave svg {
    display: block;
    width: 100%;
}

.contact-us-page .form-panel {
    background-color: #ffffff;
    position: relative;
}

.contact-us-page .form-panel-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 96px 48px 96px !important;
}

.contact-us-page .form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 96px;
    align-items: start;
}

.contact-us-page .form-description {
    position: sticky;
    top: 32px;
}

.contact-us-page .form-heading {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-us-page .form-sub {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4f63;
    margin-bottom: 32px;
}

.contact-us-page .dashed-accent {
    border: 2px dashed #8DBBBD;
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 32px;
}

.contact-us-page .dashed-accent-text {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
}

.contact-us-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-us-page .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-us-page .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-us-page .field-label {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 600;
}

.contact-us-page .field-input {
    border: 2px solid #E2ECEE;
    border-radius: 5px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    background-color: #f4f8f9;
    outline: none;
    transition: border-color 0.15s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
    width: 100%;
    box-sizing: border-box;
}

.contact-us-page .field-input::placeholder {
    color: rgba(141, 187, 189, 0.6);
}

.contact-us-page .field-input:focus {
    border-color: #0F3C59;
    box-shadow: 0 3px 2px 0 rgba(15, 60, 89, 0.05);
}

.contact-us-page .field-input:invalid:not(:placeholder-shown) {
    border-color: #c0392b;
}

.contact-us-page .checkbox-group-label {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-us-page .checkbox-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-us-page .checkbox-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid #E2ECEE;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), background-color 0.12s cubic-bezier(0.4, 0, 1, 1);
    background-color: #f4f8f9;
}

.contact-us-page .checkbox-item:hover {
    border-color: #8DBBBD;
    background-color: #E2ECEE;
}

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

.contact-us-page .checkbox-item-text {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
}

.contact-us-page .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: #E2ECEE;
    border-radius: 5px;
}

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

.contact-us-page .privacy-text {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
}

.contact-us-page .privacy-text a {
    color: #0F3C59;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-us-page .privacy-text a:hover {
    color: #8DBBBD;
    transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .submit-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.contact-us-page .submit-button {
    position: relative;
    overflow: hidden;
    border: 3px solid #0F3C59;
    border-radius: 5px;
    background-color: transparent;
    color: #0F3C59;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    padding: 16px 48px;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color 0.13s cubic-bezier(0.4, 0, 1, 1), color 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.contact-us-page .submit-button:hover {
    background-color: #0F3C59;
    color: #ffffff;
}

.contact-us-page .submit-button:focus {
    outline: 3px solid #8DBBBD;
    outline-offset: 3px;
}

.contact-us-page .submit-button:active {
    background-color: #0a2d44;
    border-color: #0a2d44;
    color: #ffffff;
}

.contact-us-page .ripple-layer {
    position: absolute;
    border-radius: 40px;
    background-color: rgba(141, 187, 189, 0.35);
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-us-page .submit-button:active .ripple-layer {
    width: 300px;
    height: 300px;
    transition: width 0.18s cubic-bezier(0.4, 0, 1, 1), height 0.18s cubic-bezier(0.4, 0, 1, 1), opacity 0.18s cubic-bezier(0.4, 0, 1, 1);
    opacity: 0;
}

.contact-us-page .submit-note {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
}

.contact-us-page .frosted-aside {
    background: rgba(226, 236, 238, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(141, 187, 189, 0.3);
    border-radius: 5px;
    padding: 32px;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    margin-top: 32px;
}

.contact-us-page .frosted-aside-heading {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-us-page .frosted-aside-text {
    font-size: 16px;
    line-height: 1.75;
    color: #2a4f63;
}

.contact-us-page .image-block {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13);
    margin-top: 32px;
}

.contact-us-page .image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border-color 0.15s cubic-bezier(0.4, 0, 1, 1);
    box-sizing: border-box;
}

.contact-us-page .image-block:hover img {
    border-color: #8DBBBD;
}

.contact-us-page .cycle-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.contact-us-page .cycle-item {
    font-size: 16px;
    line-height: 1.5;
    color: #2a4f63;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.contact-us-page .cycle-item:nth-child(1) {
    animation: cycle-glow 3s 0s infinite;
}

.contact-us-page .cycle-item:nth-child(2) {
    animation: cycle-glow 3s 1s infinite;
}

.contact-us-page .cycle-item:nth-child(3) {
    animation: cycle-glow 3s 2s infinite;
}

@keyframes cycle-glow {

    0%,
    100% {
        background-color: transparent;
        border-color: transparent;
        color: #2a4f63;
    }

    20%,
    80% {
        background-color: #E2ECEE;
        border-color: #8DBBBD;
        color: #0F3C59;
    }
}

.contact-us-page .col-reveal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.contact-us-page .col-reveal-grid .info-column:nth-child(1) {
    animation: col-appear 0.16s cubic-bezier(0.4, 0, 1, 1) 0.05s both;
}

.contact-us-page .col-reveal-grid .info-column:nth-child(2) {
    animation: col-appear 0.16s cubic-bezier(0.4, 0, 1, 1) 0.13s both;
}

.contact-us-page .col-reveal-grid .form-right-col:nth-child(3) {
    animation: col-appear 0.16s cubic-bezier(0.4, 0, 1, 1) 0.21s both;
}

@keyframes col-appear {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.contact-us-page .form-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (max-width: 1100px) {

    .contact-us-page .reach-grid,
    .contact-us-page .col-reveal-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-us-page .form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-us-page .form-description {
        position: static;
    }
}

@media (max-width: 720px) {

    .contact-us-page .reach-grid,
    .contact-us-page .col-reveal-grid {
        grid-template-columns: 1fr;
    }

    .contact-us-page .reach-panel {
        padding: 48px 16px 48px;
    }

    .contact-us-page .form-panel-inner {
        padding: 48px 16px 48px !important;
    }

    .contact-us-page .reach-heading {
        font-size: 32px;
    }

    .contact-us-page .checkbox-options {
        grid-template-columns: 1fr;
    }

    .contact-us-page .field-row {
        grid-template-columns: 1fr;
    }

    .contact-us-page .submit-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.about-us-page .page-max {
    max-width: 1600px;
    margin: 0 auto;
}

.about-us-page ::selection {
    background-color: #8DBBBD;
    color: #0F3C59;
}

.about-us-page input::placeholder,
.about-us-page textarea::placeholder {
    color: rgba(141, 187, 189, 0.6);
}

.about-us-page .identity-block {
    background-color: #ffffff;
    padding: 96px 48px;
    position: relative;
}

.about-us-page .identity-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg,
            rgba(141, 187, 189, 0.07) 0px,
            rgba(141, 187, 189, 0.07) 1px,
            transparent 1px,
            transparent 18px);
    pointer-events: none;
    z-index: 0;
}

.about-us-page .identity-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-us-page .identity-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.about-us-page .identity-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-us-page .identity-image-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    position: relative;
}

.about-us-page .identity-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05);
    animation: slow-zoom 14s cubic-bezier(0.4, 0, 1, 1) infinite alternate;
}

@keyframes slow-zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.07);
    }
}

.about-us-page .identity-texture-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: 5px;
}

.about-us-page .identity-right {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-us-page .identity-heading {
    font-size: 70px;
    line-height: 1.2;
    color: #0F3C59;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin: 0;
}

.about-us-page .identity-lead {
    font-size: 19px;
    line-height: 1.75;
    color: #2a4a5e;
    max-width: 680px;
    margin: 0;
}

.about-us-page .identity-body {
    font-size: 16px;
    line-height: 1.75;
    color: #3d5a6e;
    max-width: 640px;
    margin: 0;
}

.about-us-page .identity-stat-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding-top: 16px;
    border-top: 2px solid #E2ECEE;
}

.about-us-page .identity-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-us-page .identity-stat-number {
    font-size: 44px;
    line-height: 1.2;
    color: #0F3C59;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-us-page .identity-stat-label {
    font-size: 16px;
    line-height: 1.5;
    color: #6a8a9a;
}

.about-us-page .divider-convex {
    display: block;
    width: 100%;
    height: 64px;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.about-us-page .divider-convex svg {
    display: block;
    width: 100%;
    height: 100%;
}

.about-us-page .approach-block {
    background-color: #E2ECEE;
    padding: 96px 48px;
    position: relative;
}

.about-us-page .approach-block::after {
    content: "";
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    height: 32px;
    background: inherit;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.about-us-page .approach-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-us-page .approach-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
}

.about-us-page .approach-heading {
    font-size: 44px;
    line-height: 1.2;
    color: #0F3C59;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    flex: 0 0 auto;
}

.about-us-page .approach-subtext {
    font-size: 16px;
    line-height: 1.75;
    color: #3d5a6e;
    margin: 0;
    max-width: 480px;
    padding-bottom: 8px;
}

.about-us-page .approach-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.about-us-page .approach-col {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us-page .approach-col.primary {
    background-color: #0F3C59;
}

.about-us-page .approach-col.secondary {
    background-color: #1a5278;
}

.about-us-page .approach-col.tertiary {
    background-color: #8DBBBD;
}

.about-us-page .approach-col-number {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.about-us-page .approach-col.primary .approach-col-number,
.about-us-page .approach-col.secondary .approach-col-number {
    color: rgba(141, 187, 189, 0.5);
}

.about-us-page .approach-col.tertiary .approach-col-number {
    color: rgba(15, 60, 89, 0.3);
}

.about-us-page .approach-col-heading {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
}

.about-us-page .approach-col.primary .approach-col-heading,
.about-us-page .approach-col.secondary .approach-col-heading {
    color: #ffffff;
}

.about-us-page .approach-col.tertiary .approach-col-heading {
    color: #0F3C59;
}

.about-us-page .approach-col-text {
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

.about-us-page .approach-col.primary .approach-col-text,
.about-us-page .approach-col.secondary .approach-col-text {
    color: rgba(226, 236, 238, 0.85);
}

.about-us-page .approach-col.tertiary .approach-col-text {
    color: #2a4a5e;
}

.about-us-page .approach-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-us-page .approach-img-frame {
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    position: relative;
}

.about-us-page .approach-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.about-us-page .approach-img-frame:hover img {
    transform: scale(1.04);
}

.about-us-page .approach-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 60, 89, 0.55) 100%);
    pointer-events: none;
}

.about-us-page .approach-img-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 600;
}

.about-us-page .divider-arc {
    display: block;
    width: 100%;
    height: 64px;
    background-color: #E2ECEE;
    position: relative;
    z-index: 2;
}

.about-us-page .divider-arc svg {
    display: block;
    width: 100%;
    height: 100%;
}

.about-us-page .team-block {
    background: linear-gradient(160deg, #ffffff 0%, #E2ECEE 100%);
    padding: 96px 48px;
    position: relative;
}

.about-us-page .team-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.about-us-page .team-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px;
}

.about-us-page .team-label {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-us-page .team-heading {
    font-size: 32px;
    line-height: 1.2;
    color: #0F3C59;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-us-page .team-description {
    font-size: 16px;
    line-height: 1.75;
    color: #3d5a6e;
    margin: 0;
}

.about-us-page .team-img-frame {
    aspect-ratio: 16/9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(141, 187, 189, 0.11);
}

.about-us-page .team-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-us-page .team-right {
    flex: 1 1 70%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-us-page .team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.about-us-page .member-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    border: 2px solid #E2ECEE;
    transition: border-color 0.15s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.about-us-page .member-card:hover {
    border-color: #8DBBBD;
    box-shadow: inset 0 3px 2px 0 rgba(15, 60, 89, 0.05), 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.about-us-page .member-name {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 700;
    margin: 0;
}

.about-us-page .member-role {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    font-weight: 600;
}

.about-us-page .member-bio {
    font-size: 16px;
    line-height: 1.75;
    color: #3d5a6e;
    margin: 0;
}

.about-us-page .activity-feed {
    background-color: #0F3C59;
    border-radius: 5px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 48px 0 rgba(15, 60, 89, 0.13);
}

.about-us-page .feed-heading {
    font-size: 16px;
    line-height: 1.5;
    color: #8DBBBD;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.about-us-page .feed-entry {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(141, 187, 189, 0.15);
}

.about-us-page .feed-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-us-page .feed-icon {
    width: 36px;
    height: 36px;
    border-radius: 40px;
    background-color: rgba(141, 187, 189, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-us-page .feed-icon svg {
    width: 16px;
    height: 16px;
    fill: #8DBBBD;
}

.about-us-page .feed-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-us-page .feed-text {
    font-size: 16px;
    line-height: 1.5;
    color: #E2ECEE;
    margin: 0;
}

.about-us-page .feed-time {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(141, 187, 189, 0.6);
}

.about-us-page .cta-strip {
    background-color: #E2ECEE;
    border-radius: 5px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 3px 2px 0 rgba(15, 60, 89, 0.05);
}

.about-us-page .cta-strip-text {
    font-size: 19px;
    line-height: 1.5;
    color: #0F3C59;
    font-weight: 600;
    margin: 0;
}

.about-us-page .btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: transparent;
    color: #0F3C59;
    border: 3px solid #0F3C59;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap;
}

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

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

.about-us-page .btn-primary:hover {
    color: #ffffff;
}

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

.about-us-page .btn-primary:focus {
    outline: 3px solid #8DBBBD;
    outline-offset: 3px;
}

.about-us-page .btn-primary:active {
    transform: scale(0.98);
}

@media (max-width: 1200px) {
    .about-us-page .identity-inner {
        gap: 48px;
    }

    .about-us-page .identity-heading {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .about-us-page .identity-inner {
        flex-direction: column;
        gap: 32px;
    }

    .about-us-page .identity-left {
        flex: none;
        width: 100%;
    }

    .about-us-page .identity-heading {
        font-size: 32px;
    }

    .about-us-page .approach-columns {
        grid-template-columns: 1fr;
    }

    .about-us-page .approach-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-us-page .approach-image-row {
        grid-template-columns: 1fr;
    }

    .about-us-page .team-inner {
        flex-direction: column;
    }

    .about-us-page .team-left {
        position: static;
        flex: none;
        width: 100%;
    }

    .about-us-page .team-members {
        grid-template-columns: 1fr;
    }

    .about-us-page .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-us-page .identity-stat-row {
        flex-wrap: wrap;
        gap: 32px;
    }
}

@media (max-width: 600px) {

    .about-us-page .identity-block,
    .about-us-page .approach-block,
    .about-us-page .team-block {
        padding: 48px 16px;
    }

    .about-us-page .identity-heading {
        font-size: 32px;
    }

    .about-us-page .approach-heading {
        font-size: 32px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #ffffff;
}

.success-page .confirmation-wrapper {
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.success-page .icon-frame {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: #E2ECEE;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px 0 rgba(15, 60, 89, 0.11);
    flex-shrink: 0;
}

.success-page .icon-frame .checkmark {
    width: 36px;
    height: 36px;
}

.success-page .message-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.success-page .message-block .heading-main {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0F3C59;
    font-weight: 700;
    margin: 0;
}

.success-page .message-block .subtext {
    font-size: 19px;
    line-height: 1.75;
    color: #0F3C59;
    opacity: 0.75;
    margin: 0;
    max-width: 480px;
}

.success-page .divider-line {
    width: 64px;
    height: 3px;
    background: #8DBBBD;
    border-radius: 5px;
}

.success-page .detail-block {
    background: #E2ECEE;
    border-radius: 5px;
    padding: 32px;
    width: 100%;
    box-shadow: inset 0 3px 2px 0 rgba(141, 187, 189, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.success-page .detail-block .detail-heading {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #0F3C59;
    letter-spacing: -0.01em;
    margin: 0;
}

.success-page .detail-block .detail-text {
    font-size: 16px;
    line-height: 1.75;
    color: #0F3C59;
    opacity: 0.8;
    margin: 0;
}

.success-page .detail-block .contact-link {
    color: #0F3C59;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.success-page .detail-block .contact-link:hover {
    opacity: 0.65;
}

.success-page .action-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-page .button-primary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #0F3C59;
    background: transparent;
    border: 3px solid #0F3C59;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: background 0.15s cubic-bezier(0.4, 0, 1, 1), color 0.15s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
    overflow: hidden;
}

.success-page .button-primary:hover {
    background: #0F3C59;
    color: #ffffff;
}

.success-page .button-primary:focus-visible {
    outline: 3px solid #8DBBBD;
    outline-offset: 3px;
}

.success-page .button-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #0F3C59;
    background: transparent;
    border: 2px solid #8DBBBD;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.success-page .button-secondary:hover {
    background: #E2ECEE;
    border-color: #0F3C59;
}

.success-page .button-secondary:focus-visible {
    outline: 3px solid #8DBBBD;
    outline-offset: 3px;
}

.success-page .brand-label {
    font-size: 16px;
    line-height: 1.5;
    color: #0F3C59;
    opacity: 0.45;
    margin: 0;
    letter-spacing: 0.01em;
}