* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'Ubuntu', sans-serif
}

.skip-target:focus {
    outline: 3px solid #EB0055;
    outline-offset: 2px
}

.brand-strip {
    background: linear-gradient(135deg, #115665 0%, #0d3f4d 100%);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

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

.brand-strip__logo-pod {
    background: #FDFFE8;
    border-radius: 5px;
    padding: 6px;
    box-shadow: 2px 5px 20px -1px #11566517;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0
}

.brand-strip__logo-pod img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block
}

.brand-strip__name {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FDFFE8;
    line-height: 1.1;
    letter-spacing: 0
}

.brand-strip__tagline {
    font-size: 15px;
    color: #fdffe8bf;
    line-height: 1.35;
    font-weight: 400
}

.brand-strip__address {
    font-size: 15px;
    color: #fdffe8cc;
    line-height: 1.55;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-strip__address svg {
    flex-shrink: 0
}

.brand-strip__address-text {
    font-size: 15px;
    color: #fdffe8cc;
    line-height: 1.55
}

.nav-bar {
    background: #FDFFE8;
    border-bottom: 2px solid #eb005526;
    box-shadow: 2px 2px 6px -1px #eb005512;
    padding: 0 40px;
    position: relative
}

.nav-bar__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #EB0055;
    border-radius: 0 5px 5px 0
}

.nav-bar__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-bar__item {
    display: flex;
    align-items: stretch
}

.nav-bar__link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #115665;
    text-decoration: none;
    line-height: 1.35;
    border-bottom: 3px solid transparent;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .6s ease;
    min-height: 44px;
    white-space: nowrap
}

.nav-bar__link:hover,
.nav-bar__link:focus {
    color: #EB0055;
    border-bottom-color: #EB0055;
    background-color: #eb00550a;
    outline: none
}

.nav-bar__link:focus-visible {
    outline: 3px solid #EB0055;
    outline-offset: -3px
}

.nav-bar__link--active {
    color: #EB0055;
    border-bottom-color: #EB0055
}

.nav-bar__flags {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0
}

.nav-bar__flag {
    width: 24px;
    height: 18px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 2px 2px 6px -1px #11566512;
    transition: box-shadow .5s ease, opacity .6s ease;
    opacity: .8;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-bar__flag:hover {
    opacity: 1;
    box-shadow: 2px 5px 20px -1px #11566517
}

.nav-bar__flag .fi {
    font-size: 20px;
    line-height: 1
}

.site-header {
    position: relative
}

.site-footer {
    background: #115665;
    border-top: 2px solid #eb00554d;
    padding: 40px 40px 24px
}

.footer-deck {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start
}

.footer-brand__logo-pod {
    background: #FDFFE8;
    border-radius: 5px;
    padding: 6px;
    box-shadow: 2px 5px 20px -1px #11566517;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 12px
}

.footer-brand__logo-pod img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block
}

.footer-brand__name {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
    color: #FDFFE8;
    line-height: 1.1;
    display: block;
    margin-bottom: 6px
}

.footer-brand__copy {
    font-size: 15px;
    color: #fdffe899;
    line-height: 1.55;
    display: block;
    margin-bottom: 24px
}

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

.footer-brand__contact-link {
    font-size: 15px;
    color: #fdffe8d9;
    text-decoration: none;
    line-height: 1.55;
    border-bottom: 1px solid #fdffe833;
    padding-bottom: 6px;
    transition: color .6s ease, border-color .5s ease;
    display: inline-block
}

.footer-brand__contact-link:hover,
.footer-brand__contact-link:focus {
    color: #EB0055;
    border-bottom-color: #EB0055;
    outline: none
}

.footer-brand__contact-link:focus-visible {
    outline: 3px solid #FDFFE8;
    outline-offset: 2px
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 6px
}

.footer-nav__label {
    font-family: 'Roboto Slab', serif;
    font-size: 15px;
    font-weight: 700;
    color: #fdffe880;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px;
    display: block
}

.footer-nav__link {
    font-size: 15px;
    color: #fdffe8bf;
    text-decoration: none;
    line-height: 1.55;
    padding: 6px 12px;
    border: 1px solid #fdffe826;
    border-radius: 5px;
    display: block;
    transition: color .6s ease, border-color .5s ease, background-color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap
}

.footer-nav__link:hover,
.footer-nav__link:focus {
    color: #FDFFE8;
    border-color: #eb005580;
    background-color: #eb005514;
    outline: none
}

.footer-nav__link:focus-visible {
    outline: 3px solid #FDFFE8;
    outline-offset: 2px
}

.footer-divider {
    border: none;
    border-top: 1px solid #fdffe81a;
    margin: 24px 0 0
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.footer-bottom__copy {
    font-size: 15px;
    color: #fdffe873;
    line-height: 1.55
}

.footer-bottom__policy {
    font-size: 15px;
    color: #fdffe873;
    line-height: 1.55
}

.footer-bottom__policy-link {
    color: #fdffe88c;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .6s ease
}

.footer-bottom__policy-link:hover,
.footer-bottom__policy-link:focus {
    color: #EB0055;
    outline: none
}

.cookie-tray {
    display: none;
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: auto;
    width: 480px;
    max-width: calc(100vw - 48px);
    z-index: 2000;
    background: #FDFFE8;
    border: 2px solid #115665;
    border-radius: 26px;
    box-shadow: 2px 8px 52px -1px #11566521;
    padding: 24px
}

.cookie-tray__headline {
    font-family: 'Roboto Slab', serif;
    font-size: 17px;
    font-weight: 700;
    color: #115665;
    line-height: 1.35;
    margin: 0 0 12px
}

.cookie-tray__desc {
    font-size: 15px;
    color: #115665;
    line-height: 1.55;
    margin: 0 0 24px
}

.cookie-tray__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.cookie-tray__btn {
    font-family: 'Ubuntu', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 40px;
    border: 2px solid #115665;
    background: transparent;
    color: #115665;
    cursor: pointer;
    line-height: 1.1;
    min-height: 44px;
    transition: background-color .6s ease, color .5s ease, border-color .6s ease, padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cookie-tray__btn:hover {
    background-color: #115665;
    color: #FDFFE8;
    padding-left: 30px;
    padding-right: 30px
}

.cookie-tray__btn:focus-visible {
    outline: 3px solid #EB0055;
    outline-offset: 2px
}

.cookie-tray__btn--accept {
    background: #115665;
    color: #FDFFE8;
    border-color: #115665
}

.cookie-tray__btn--accept:hover {
    background: #EB0055;
    border-color: #EB0055;
    color: #FDFFE8
}

.cookie-tray__policy-note {
    font-size: 15px;
    color: #11566599;
    line-height: 1.55;
    margin: 12px 0 0
}

.cookie-tray__policy-note a {
    color: #EB0055;
    text-underline-offset: 3px;
    transition: color .6s ease
}

.cookie-tray__policy-note a:hover {
    color: #115665
}

@media (max-width: 900px) {
    .brand-strip {
        padding: 12px 24px;
        flex-wrap: wrap;
        gap: 12px
    }

    .brand-strip__address {
        width: 100%;
        text-align: left;
        justify-content: flex-start
    }

    .nav-bar {
        padding: 0 24px
    }

    .nav-bar__link {
        padding: 12px;
        font-size: 15px
    }

    .footer-deck {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px
    }

    .site-footer {
        padding: 40px 24px 24px
    }
}

@media (max-width: 600px) {
    .brand-strip {
        padding: 12px
    }

    .brand-strip__name {
        font-size: 17px
    }

    .nav-bar {
        padding: 0 12px
    }

    .nav-bar__link {
        padding: 12px 6px;
        font-size: 15px
    }

    .nav-bar__flags {
        display: none
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .site-footer {
        padding: 24px 12px
    }
}

.policy-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #fff;
    color: #1b2a2f
}

.policy-area h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #115665;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #EB0055
}

.policy-area h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #115665;
    margin-top: 80px;
    margin-bottom: 24px
}

.policy-area h3 {
    font-size: 26px;
    line-height: 1.35;
    color: #0d3f4a;
    margin-top: 40px;
    margin-bottom: 24px
}

.policy-area h4 {
    font-size: 20px;
    line-height: 1.55;
    color: #0d3f4a;
    margin-top: 40px;
    margin-bottom: 12px
}

.policy-area h5 {
    font-size: 17px;
    line-height: 1.55;
    color: #0d3f4a;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-area h6 {
    font-size: 15px;
    line-height: 1.55;
    color: #115665;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-area p {
    font-size: 17px;
    line-height: 1.8;
    color: #1b2a2f;
    margin-bottom: 24px;
    max-width: 72ch
}

.policy-area em,
.policy-area i {
    font-style: italic;
    color: #115665
}

.policy-area a {
    color: #EB0055;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .6s ease
}

.policy-area a:hover {
    color: #115665;
    text-decoration-color: #115665
}

.policy-area a:visited {
    color: #8a003a
}

.policy-area hr {
    border: none;
    border-top: 1px solid #1156652e;
    margin: 80px 0
}

.policy-area div {
    font-size: 17px;
    line-height: 1.8
}

.policy-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 2px 5px 20px -1px #11566517
}

.policy-area thead {
    background: #115665;
    color: #FDFFE8
}

.policy-area thead th {
    padding: 12px 24px;
    text-align: left;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #FDFFE8;
    border: none
}

.policy-area tbody tr {
    border-bottom: 1px solid #1156651a;
    transition: background .5s ease
}

.policy-area tbody tr:nth-child(even) {
    background: #fdffe880
}

.policy-area tbody tr:hover {
    background: #1156650f
}

.policy-area td {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.55;
    color: #1b2a2f;
    vertical-align: top
}

.policy-area th {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.55;
    vertical-align: top
}

@media (max-width: 900px) {
    .policy-area {
        padding: 40px 24px
    }

    .policy-area h1 {
        font-size: 36px
    }

    .policy-area h2 {
        font-size: 26px;
        margin-top: 40px
    }

    .policy-area h3 {
        font-size: 20px
    }

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

@media (max-width: 600px) {
    .policy-area {
        padding: 40px 12px
    }

    .policy-area h1 {
        font-size: 26px
    }

    .policy-area h2 {
        font-size: 20px
    }

    .policy-area h3 {
        font-size: 17px
    }

    .policy-area p,
    .policy-area div {
        font-size: 15px
    }

    .policy-area td,
    .policy-area th {
        padding: 12px;
        font-size: 15px
    }
}

.gd-post {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip
}

.gd-post .post-hero {
    background: linear-gradient(to bottom, #115665 0%, #11566500 100%);
    padding: 80px 40px 40px;
    position: relative
}

.gd-post .post-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 38px, #fdffe80f 38px, #fdffe80f 39px), repeating-linear-gradient(90deg, transparent, transparent 38px, #fdffe80f 38px, #fdffe80f 39px);
    pointer-events: none
}

.gd-post .post-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.gd-post .post-hero__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.gd-post .post-hero__tag {
    display: inline-block;
    background: #eb00552e;
    color: #FDFFE8;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.gd-post .post-hero__author-label {
    color: #fdffe8b3;
    font-size: 15px
}

.gd-post .post-hero__author-name {
    color: #FDFFE8;
    font-size: 15px;
    font-weight: 600
}

.gd-post .post-hero__heading {
    font-size: 50px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(to bottom, #FDFFE8 0%, #fdffe88c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gd-post .post-hero__desc {
    color: #fdffe8cc;
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 24px
}

.gd-post .post-hero__actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.gd-post .btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid #fdffe866;
    color: #FDFFE8;
    font-size: 15px;
    padding: 6px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd-post .btn-copy:hover {
    border-color: #FDFFE8;
    background: #fdffe81a;
    padding: 6px 32px
}

.gd-post .btn-copy:focus {
    outline: 2px solid #FDFFE8;
    outline-offset: 2px
}

.gd-post .post-hero__likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fdffe8b3;
    font-size: 15px
}

.gd-post .likes-icon {
    width: 18px;
    height: 18px;
    fill: #EB0055
}

.gd-post .post-hero__img-wrap {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 2px 8px 52px -1px #11566521;
    position: relative
}

.gd-post .post-hero__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #11566540 0%, transparent 60%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.gd-post .post-hero__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd-post .post-hero__img-wrap:hover .post-hero__img {
    transform: scale(1.03)
}

.gd-post .post-body-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    padding: 80px 40px;
    background: #fff;
    position: relative
}

.gd-post .post-body-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #1156652e, transparent);
    box-shadow: 0 2px 12px 0 #11566517
}

.gd-post .post-article {
    min-width: 0
}

.gd-post .post-article p {
    font-size: 17px;
    line-height: 1.8;
    color: #1a2e35;
    margin: 0 0 24px
}

.gd-post .post-article h2 {
    font-size: 36px;
    line-height: 1.35;
    margin: 40px 0 24px;
    background: linear-gradient(to bottom, #115665 0%, #EB0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gd-post .post-article h3 {
    font-size: 26px;
    line-height: 1.35;
    color: #115665;
    margin: 40px 0 12px
}

.gd-post .post-article ol {
    padding-left: 24px;
    margin: 0 0 24px
}

.gd-post .post-article li {
    font-size: 17px;
    line-height: 1.8;
    color: #1a2e35;
    margin-bottom: 6px
}

.gd-post .post-article del {
    color: #888;
    text-decoration: line-through
}

.gd-post .post-article figure {
    margin: 40px 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 2px 5px 20px -1px #11566517
}

.gd-post .post-article figure img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center
}

.gd-post .post-article figcaption {
    background: #1156650d;
    padding: 12px 24px;
    font-size: 15px;
    color: #115665;
    line-height: 1.55
}

.gd-post .post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gd-post .sidebar-card {
    background: #FDFFE8;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 2px 2px 6px -1px #11566512
}

.gd-post .sidebar-card__heading {
    font-size: 20px;
    line-height: 1.35;
    color: #115665;
    margin: 0 0 12px;
    font-weight: 700
}

.gd-post .sidebar-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a3e45;
    margin: 0 0 12px
}

.gd-post .sidebar-card__link {
    display: inline-block;
    color: #EB0055;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #eb00554d;
    padding-bottom: 2px;
    transition: border-color .5s ease, color .5s ease
}

.gd-post .sidebar-card__link:hover {
    color: #115665;
    border-color: #115665
}

.gd-post .sidebar-stat {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.gd-post .stat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #1156651a
}

.gd-post .stat-row:last-child {
    border-bottom: none
}

.gd-post .stat-row__label {
    font-size: 15px;
    color: #115665
}

.gd-post .stat-row__val {
    font-size: 20px;
    font-weight: 700;
    color: #EB0055
}

.gd-post .post-mesh {
    padding: 80px 40px;
    background: linear-gradient(135deg, #11566514 0%, #fdffe8e6 40%, #eb00550f 100%);
    position: relative
}

.gd-post .post-mesh__deco {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 220px;
    height: 220px;
    border-radius: 40px;
    border: 2px solid #1156651f;
    pointer-events: none;
    transform: rotate(18deg)
}

.gd-post .post-mesh__deco--sm {
    width: 100px;
    height: 100px;
    top: 120px;
    right: 200px;
    border-radius: 26px;
    border-color: #eb00551f;
    transform: rotate(-10deg)
}

.gd-post .post-mesh__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.gd-post .post-mesh__label {
    font-size: 15px;
    color: #115665;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 40px;
    text-align: center
}

.gd-post .tip-card {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 2px 5px 20px -1px #11566517;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gd-post .tip-card:hover {
    box-shadow: 2px 8px 52px -1px #11566521;
    transform: translateY(-4px)
}

.gd-post .tip-card__num {
    font-size: 36px;
    font-weight: 700;
    color: #eb005526;
    line-height: 1.1;
    margin-bottom: 6px
}

.gd-post .tip-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #115665;
    margin: 0 0 6px;
    line-height: 1.35
}

.gd-post .tip-card__body {
    font-size: 15px;
    color: #2a3e45;
    line-height: 1.55;
    margin: 0
}

.gd-post .post-cta-strip {
    padding: 80px 40px;
    background: #115665;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative
}

.gd-post .post-cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #eb005514 0%, transparent 100%);
    pointer-events: none
}

.gd-post .cta-strip__text {
    position: relative;
    z-index: 1;
    max-width: 600px
}

.gd-post .cta-strip__heading {
    font-size: 36px;
    line-height: 1.35;
    color: #FDFFE8;
    margin: 0 0 12px
}

.gd-post .cta-strip__heading span {
    color: #EB0055
}

.gd-post .cta-strip__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #fdffe8bf;
    margin: 0
}

.gd-post .cta-strip__btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #EB0055;
    color: #FDFFE8;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 2px 5px 20px -1px #eb005540;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .7s ease
}

.gd-post .cta-strip__btn:hover {
    background: #FDFFE8;
    color: #115665;
    padding: 12px 52px;
    box-shadow: 2px 8px 52px -1px #eb00552e
}

.gd-post .cta-strip__btn:focus {
    outline: 2px solid #FDFFE8;
    outline-offset: 3px
}

@media (max-width: 900px) {
    .gd-post .post-hero__grid {
        grid-template-columns: 1fr
    }

    .gd-post .post-hero__heading {
        font-size: 36px
    }

    .gd-post .post-body-wrap {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .gd-post .post-mesh__grid {
        grid-template-columns: 1fr 1fr
    }

    .gd-post .post-cta-strip {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center
    }

    .gd-post .cta-strip__text {
        max-width: 100%
    }

    .gd-post .post-hero {
        padding: 40px 24px 24px
    }

    .gd-post .post-mesh {
        padding: 40px 24px
    }
}

@media (max-width: 600px) {
    .gd-post .post-hero__heading {
        font-size: 26px
    }

    .gd-post .post-mesh__grid {
        grid-template-columns: 1fr
    }

    .gd-post .post-article h2 {
        font-size: 26px
    }

    .gd-post .cta-strip__heading {
        font-size: 26px
    }
}

@keyframes driftShadow {
    0% {
        transform: translate(0, 0);
        opacity: .07
    }

    50% {
        transform: translate(30px, 20px);
        opacity: .1
    }

    100% {
        transform: translate(0, 0);
        opacity: .07
    }
}

.gd-post .post-hero__deco-drift {
    position: absolute;
    bottom: -40px;
    left: 60px;
    width: 300px;
    height: 300px;
    border-radius: 40px;
    background: #EB0055;
    filter: blur(80px);
    animation: driftShadow 8s ease infinite;
    pointer-events: none;
    z-index: 0
}

.frt {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden
}

.frt .pg-open {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 560px;
    background: #FDFFE8;
    position: relative
}

.frt .pg-open__left {
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1
}

.frt .pg-open__right {
    position: relative;
    overflow: hidden
}

.frt .pg-open__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.frt .pg-open__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #EB0055 0%, transparent 70%);
    opacity: .35
}

.frt .pg-open__deco {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    pointer-events: none
}

.frt .pg-open__deco span {
    display: block;
    height: 3px;
    background: #EB0055;
    opacity: .22;
    border-radius: 5px
}

.frt .pg-open__deco span:nth-child(1) {
    width: 40px
}

.frt .pg-open__deco span:nth-child(2) {
    width: 28px
}

.frt .pg-open__deco span:nth-child(3) {
    width: 18px
}

.frt .pg-open__deco span:nth-child(4) {
    width: 32px
}

.frt .pg-open__label {
    font-size: 15px;
    color: #115665;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px
}

.frt .pg-open__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #EB0055;
    border-radius: 5px
}

.frt .pg-open__h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #115665;
    margin: 0 0 24px;
    background: linear-gradient(to bottom, #115665 0%, transparent 200%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: drop-bounce .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes drop-bounce {
    0% {
        transform: translateY(-32px);
        opacity: 0
    }

    70% {
        transform: translateY(4px);
        opacity: 1
    }

    85% {
        transform: translateY(-3px)
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.frt .pg-open__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #115665;
    margin: 0 0 40px;
    max-width: 380px
}

.frt .pg-open__sub strong {
    color: #EB0055
}

.frt .pg-open__cta {
    display: inline-block;
    background: #EB0055;
    color: #FDFFE8;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease;
    box-shadow: 2px 5px 20px -1px #eb005517;
    align-self: flex-start
}

.frt .pg-open__cta:hover {
    background: #115665;
    padding: 12px 56px
}

.frt .audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff
}

.frt .audience__left {
    padding: 80px 40px 80px 80px;
    background: #fff;
    border-right: 1px solid #1156651a
}

.frt .audience__right {
    padding: 80px 80px 80px 40px;
    background: #FDFFE8
}

.frt .audience__h2 {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(to bottom, #EB0055, transparent 280%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.frt .audience__lead {
    font-size: 17px;
    line-height: 1.55;
    color: #115665;
    margin: 0 0 40px
}

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

.frt .audience__list li {
    font-size: 15px;
    line-height: 1.55;
    color: #115665;
    padding: 12px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 6px -1px #eb005512;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.frt .audience__list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #EB0055;
    margin-top: 5px;
    flex-shrink: 0
}

.frt .audience__right .audience__h2 {
    background: linear-gradient(to bottom, #115665, transparent 280%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.frt .audience__right .audience__list li {
    background: #fff
}

.frt .audience__right .audience__list li::before {
    background: #115665
}

.frt .offer {
    padding: 80px;
    background: #115665;
    position: relative;
    overflow: hidden
}

.frt .offer::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    background: #EB0055;
    opacity: .07;
    border-radius: 40px;
    pointer-events: none
}

.frt .offer__top {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px
}

.frt .offer__h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFFE8;
    margin: 0 0 24px
}

.frt .offer__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #fdffe8cc;
    margin: 0
}

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

.frt .offer__card {
    background: #fdffe812;
    border-radius: 26px;
    padding: 40px 24px;
    border: 1px solid #fdffe81f;
    transition: background .6s ease, box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.frt .offer__grid:hover .offer__card {
    filter: blur(1.5px);
    opacity: .6;
    transition: filter .6s ease, opacity .5s ease
}

.frt .offer__grid:hover .offer__card:hover {
    filter: blur(0);
    opacity: 1;
    background: #fdffe821;
    box-shadow: 2px 8px 52px -1px #eb005521
}

.frt .offer__card-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #EB0055;
    opacity: .4;
    margin-bottom: 12px
}

.frt .offer__card-h {
    font-size: 20px;
    line-height: 1.35;
    color: #FDFFE8;
    margin: 0 0 12px
}

.frt .offer__card-p {
    font-size: 15px;
    line-height: 1.55;
    color: #fdffe8b8;
    margin: 0
}

.frt .offer__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px
}

.frt .offer__img-wrap {
    border-radius: 26px;
    overflow: hidden;
    height: 220px;
    position: relative
}

.frt .offer__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt .offer__img-wrap:hover img {
    transform: scale(1.05)
}

.frt .voices {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #fff
}

.frt .voices__sidebar {
    padding: 80px 24px 80px 80px;
    background: #FDFFE8;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.frt .voices__h2 {
    font-size: 36px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to bottom, #EB0055, transparent 280%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.frt .voices__portrait {
    width: 80px;
    height: 103px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 2px 5px 20px -1px #11566517;
    flex-shrink: 0
}

.frt .voices__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.frt .voices__person {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.frt .voices__name {
    font-size: 17px;
    font-weight: 600;
    color: #115665;
    margin: 0
}

.frt .voices__role {
    font-size: 15px;
    color: #115665a6;
    margin: 0
}

.frt .voices__main {
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center
}

.frt .voices__quote {
    border-radius: 26px;
    padding: 40px;
    background: #FDFFE8;
    box-shadow: 2px 2px 6px -1px #11566512;
    position: relative
}

.frt .voices__quote::before {
    content: '';
    display: block;
    width: 32px;
    height: 4px;
    background: #EB0055;
    border-radius: 5px;
    margin-bottom: 24px
}

.frt .voices__qt {
    font-size: 17px;
    line-height: 1.8;
    color: #115665;
    margin: 0 0 24px;
    font-style: italic
}

.frt .voices__attr {
    font-size: 15px;
    color: #115665a6;
    margin: 0
}

.frt .outcomes {
    padding: 80px;
    background: linear-gradient(to bottom, #eb00550a, #1156650a);
    position: relative
}

.frt .outcomes__top {
    text-align: center;
    margin-bottom: 80px
}

.frt .outcomes__h2 {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(to bottom, #115665, transparent 280%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.frt .outcomes__lead {
    font-size: 17px;
    line-height: 1.55;
    color: #115665;
    max-width: 560px;
    margin: 0 auto
}

.frt .outcomes__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.frt .outcomes__item {
    display: grid;
    grid-template-columns: 60% 40%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 2px 5px 20px -1px #11566517;
    background: #fff;
    min-height: 240px
}

.frt .outcomes__item--wide {
    grid-column: span 2;
    grid-template-columns: 40% 60%
}

.frt .outcomes__text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.frt .outcomes__item-h {
    font-size: 20px;
    line-height: 1.35;
    color: #115665;
    margin: 0 0 12px
}

.frt .outcomes__item-p {
    font-size: 15px;
    line-height: 1.55;
    color: #115665cc;
    margin: 0
}

.frt .outcomes__img {
    overflow: hidden
}

.frt .outcomes__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt .outcomes__item:hover .outcomes__img img {
    transform: scale(1.06)
}

.frt .conditions {
    padding: 80px;
    background: #115665;
    position: relative
}

.frt .conditions__deco {
    position: absolute;
    bottom: 40px;
    left: 80px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none
}

.frt .conditions__deco span {
    display: block;
    height: 3px;
    border-radius: 5px;
    background: #FDFFE8;
    opacity: .12
}

.frt .conditions__deco span:nth-child(1) {
    width: 48px
}

.frt .conditions__deco span:nth-child(2) {
    width: 32px
}

.frt .conditions__deco span:nth-child(3) {
    width: 20px
}

.frt .conditions__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start
}

.frt .conditions__h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFFE8;
    margin: 0 0 24px
}

.frt .conditions__lead {
    font-size: 17px;
    line-height: 1.55;
    color: #fdffe8cc;
    margin: 0
}

.frt .conditions__groups {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.frt .conditions__group-h {
    font-size: 15px;
    font-weight: 700;
    color: #EB0055;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 12px
}

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

.frt .conditions__group-list li {
    font-size: 15px;
    line-height: 1.55;
    color: #fdffe8d9;
    padding: 12px 24px;
    background: #fdffe80f;
    border-radius: 5px;
    border: 1px solid #fdffe81a;
    transition: background .5s ease
}

.frt .conditions__group-list li:hover {
    background: #fdffe81c
}

.frt .frosted-panel {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: #fdffe814;
    border-radius: 26px;
    padding: 24px;
    margin-top: 40px;
    border: 1px solid #fdffe826;
    box-shadow: inset 0 6px 10px #1156652e
}

.frt .frosted-panel__text {
    font-size: 17px;
    line-height: 1.55;
    color: #FDFFE8;
    margin: 0
}

.frt .frosted-panel__text strong {
    color: #EB0055 !important
}

@media (max-width: 1200px) {
    .frt .pg-open__left {
        padding: 80px 24px 80px 40px
    }

    .frt .pg-open__h1 {
        font-size: 36px
    }

    .frt .offer {
        padding: 80px 40px
    }

    .frt .offer__top {
        gap: 40px
    }

    .frt .voices__sidebar {
        padding: 80px 24px 80px 40px
    }

    .frt .voices__main {
        padding: 80px 40px
    }

    .frt .outcomes {
        padding: 80px 40px
    }

    .frt .conditions {
        padding: 80px 40px
    }

    .frt .conditions__inner {
        gap: 40px
    }

    .frt .audience__left {
        padding: 80px 24px 80px 40px
    }

    .frt .audience__right {
        padding: 80px 40px 80px 24px
    }
}

@media (max-width: 900px) {
    .frt .pg-open {
        grid-template-columns: 1fr
    }

    .frt .pg-open__right {
        height: 320px
    }

    .frt .pg-open__left {
        padding: 80px 24px
    }

    .frt .pg-open__h1 {
        font-size: 36px
    }

    .frt .audience {
        grid-template-columns: 1fr
    }

    .frt .audience__left {
        padding: 40px 24px;
        border-right: none;
        border-bottom: 1px solid #1156651a
    }

    .frt .audience__right {
        padding: 40px 24px
    }

    .frt .offer__top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px
    }

    .frt .offer__grid {
        grid-template-columns: 1fr
    }

    .frt .offer__img-row {
        grid-template-columns: 1fr
    }

    .frt .offer {
        padding: 40px 24px
    }

    .frt .voices {
        grid-template-columns: 1fr
    }

    .frt .voices__sidebar {
        padding: 40px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center
    }

    .frt .voices__main {
        padding: 40px 24px
    }

    .frt .outcomes {
        padding: 40px 24px
    }

    .frt .outcomes__grid {
        grid-template-columns: 1fr
    }

    .frt .outcomes__item {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .frt .outcomes__item--wide {
        grid-column: span 1;
        grid-template-columns: 1fr
    }

    .frt .outcomes__img {
        height: 200px
    }

    .frt .conditions {
        padding: 40px 24px
    }

    .frt .conditions__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media (max-width: 600px) {
    .frt .pg-open__h1 {
        font-size: 26px
    }

    .frt .offer__grid {
        grid-template-columns: 1fr
    }

    .frt .voices__sidebar {
        flex-direction: column
    }

    .frt .outcomes__top {
        margin-bottom: 40px
    }

    .frt .outcomes__h2 {
        font-size: 26px
    }

    .frt .conditions__h2 {
        font-size: 26px
    }

    .frt .audience__h2 {
        font-size: 26px
    }

    .frt .offer__h2 {
        font-size: 26px
    }
}

.ab-us {
    overflow-x: hidden
}

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

.ab-us .grad-text {
    background: linear-gradient(to bottom, #115665, #11566500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ab-us .cross-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    overflow: hidden
}

.ab-us .cross-divider__line {
    flex: 1;
    display: flex;
    gap: 12px;
    overflow: hidden
}

.ab-us .cross-divider__line span {
    display: block;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    position: relative
}

.ab-us .cross-divider__line span::before,
.ab-us .cross-divider__line span::after {
    content: "";
    position: absolute;
    background: #115665;
    opacity: .3
}

.ab-us .cross-divider__line span::before {
    width: 8px;
    height: 2px;
    top: 3px;
    left: 0
}

.ab-us .cross-divider__line span::after {
    width: 2px;
    height: 8px;
    top: 0;
    left: 3px
}

.ab-us .dot-accent {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 40px;
    background: #EB0055;
    margin-left: 4px;
    vertical-align: middle;
    flex-shrink: 0
}

.ab-us .hero-band {
    background: linear-gradient(to bottom, #115665 0%, #0a3d47 60%, #FDFFE8 100%);
    padding: 80px 0 0;
    position: relative
}

.ab-us .hero-band__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end
}

.ab-us .hero-band__text {
    padding-bottom: 80px
}

.ab-us .hero-band__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #fdffe8b3;
    border: 1px solid #fdffe833;
    border-radius: 5px;
    padding: 6px 12px;
    margin-bottom: 24px;
    letter-spacing: .04em
}

.ab-us .hero-band__h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #FDFFE8;
    margin-bottom: 24px
}

.ab-us .hero-band__h1 em {
    font-style: normal;
    color: #EB0055
}

.ab-us .hero-band__lead {
    font-size: 20px;
    line-height: 1.55;
    color: #fdffe8d1;
    max-width: 480px;
    margin-bottom: 40px
}

.ab-us .hero-band__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #EB0055;
    color: #FDFFE8;
    font-size: 17px;
    line-height: 1.35;
    padding: 12px 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease;
    box-shadow: 2px 5px 20px -1px #eb005517
}

.ab-us .hero-band__cta:hover {
    background: #c8004a;
    padding-left: 52px;
    padding-right: 52px
}

.ab-us .hero-band__img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.ab-us .hero-band__img-wrap {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
    box-shadow: 2px 8px 52px -1px #11566521;
    position: relative
}

.ab-us .hero-band__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.15) contrast(1.05);
    display: block
}

.ab-us .hero-band__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #115665eb;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 5px;
    padding: 12px;
    color: #FDFFE8;
    font-size: 15px;
    line-height: 1.35
}

.ab-us .hero-band__badge strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    color: #FDFFE8
}

.ab-us .hero-band__wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px
}

.ab-us .hero-band__wave svg {
    display: block;
    width: 100%
}

.ab-us .story-band {
    background: #FDFFE8;
    padding: 80px 0
}

.ab-us .story-band__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px
}

.ab-us .story-band__top {
    text-align: center;
    margin-bottom: 80px
}

.ab-us .story-band__eyebrow {
    font-size: 15px;
    line-height: 1.35;
    color: #EB0055;
    margin-bottom: 12px;
    display: block
}

.ab-us .story-band__h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #115665;
    margin-bottom: 24px
}

.ab-us .story-band__intro {
    font-size: 20px;
    line-height: 1.55;
    color: #115665;
    max-width: 600px;
    margin: 0 auto
}

.ab-us .story-band__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 24px;
    align-items: start
}

.ab-us .story-band__col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab-us .story-band__col--mid {
    padding-top: 40px
}

.ab-us .story-card {
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 2px 2px 6px -1px #11566512;
    transition: box-shadow .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ab-us .story-card:hover {
    box-shadow: 2px 8px 52px -1px #11566521;
    transform: translateY(-4px)
}

.ab-us .story-card__num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #EB0055;
    margin-bottom: 6px
}

.ab-us .story-card__label {
    font-size: 15px;
    line-height: 1.35;
    color: #115665;
    opacity: .7;
    margin-bottom: 12px
}

.ab-us .story-card__body {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a35
}

.ab-us .story-card--img {
    padding: 0;
    overflow: hidden;
    border-radius: 26px
}

.ab-us .story-card--img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
    display: block
}

.ab-us .story-card--dark {
    background: #115665
}

.ab-us .story-card--dark .story-card__body {
    color: #FDFFE8
}

.ab-us .story-card--dark .story-card__label {
    color: #fdffe899
}

.ab-us .story-card--dark .story-card__num {
    color: #EB0055
}

.ab-us .story-card--accent {
    background: #EB0055
}

.ab-us .story-card--accent .story-card__body {
    color: #fff
}

.ab-us .story-card--accent .story-card__label {
    color: #ffffffbf
}

.ab-us .metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px
}

.ab-us .metric-blk {
    background: #1156650f;
    border-radius: 5px;
    padding: 24px;
    text-align: center
}

.ab-us .metric-blk__val {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #115665;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.ab-us .metric-blk__arrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px
}

.ab-us .metric-blk__arrow svg {
    display: block
}

.ab-us .metric-blk__desc {
    font-size: 15px;
    line-height: 1.35;
    color: #115665;
    opacity: .7;
    margin-top: 6px
}

.ab-us .team-band {
    background: #fff;
    padding: 80px 0;
    position: relative
}

.ab-us .team-band::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #EB0055, #115665)
}

.ab-us .team-band__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.ab-us .team-band__left {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ab-us .team-band__h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #115665
}

.ab-us .team-band__body {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a35
}

.ab-us .team-band__body+.team-band__body {
    margin-top: -16px
}

.ab-us .portrait-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start
}

.ab-us .portrait-card {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .portrait-card:nth-child(2) {
    margin-top: 40px
}

.ab-us .portrait-card__img {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 2px 5px 20px -1px #11566517
}

.ab-us .portrait-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.ab-us .portrait-card__name {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #115665
}

.ab-us .portrait-card__role {
    font-size: 15px;
    line-height: 1.35;
    color: #EB0055
}

.ab-us .portrait-card__quote {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a35;
    font-style: italic
}

.ab-us .focus-panel {
    background: #eb00550d;
    border-radius: 26px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab-us .focus-panel__h3 {
    font-size: 26px;
    line-height: 1.35;
    color: #115665
}

.ab-us .focus-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ab-us .focus-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #115665;
    display: flex;
    align-items: center;
    justify-content: center
}

.ab-us .focus-item__icon svg {
    display: block
}

.ab-us .focus-item__text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a35
}

.ab-us .focus-item__text strong {
    color: #115665
}

.ab-us .brace-wrap {
    position: relative;
    padding: 0 40px
}

.ab-us .brace-wrap__brace {
    position: absolute;
    top: 0;
    font-size: 120px;
    line-height: 1;
    color: #11566514;
    font-weight: 300;
    pointer-events: none;
    user-select: none
}

.ab-us .brace-wrap__brace--left {
    left: 0
}

.ab-us .brace-wrap__brace--right {
    right: 0
}

.ab-us .lang-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px
}

.ab-us .lang-strip__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: #fff;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.35;
    color: #115665;
    box-shadow: 2px 2px 6px -1px #11566512
}

.ab-us .lang-strip__item .fi {
    font-size: 20px
}

@media (max-width: 900px) {
    .ab-us .hero-band__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ab-us .hero-band__img-col {
        align-items: stretch
    }

    .ab-us .hero-band__img-wrap {
        max-width: 100%;
        border-radius: 26px 26px 0 0
    }

    .ab-us .hero-band__h1 {
        font-size: 50px
    }

    .ab-us .story-band__grid {
        grid-template-columns: 1fr 1fr
    }

    .ab-us .story-band__col--mid {
        padding-top: 0
    }

    .ab-us .story-band__col:last-child {
        grid-column: 1 / -1
    }

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

    .ab-us .metrics-row {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 600px) {
    .ab-us .hero-band__h1 {
        font-size: 36px
    }

    .ab-us .hero-band__lead {
        font-size: 17px
    }

    .ab-us .story-band__grid {
        grid-template-columns: 1fr
    }

    .ab-us .story-band__h2 {
        font-size: 36px
    }

    .ab-us .portrait-pair {
        grid-template-columns: 1fr
    }

    .ab-us .portrait-card:nth-child(2) {
        margin-top: 0
    }

    .ab-us .metrics-row {
        grid-template-columns: 1fr
    }

    .ab-us .team-band__h2 {
        font-size: 36px
    }

    .ab-us .brace-wrap {
        padding: 0 12px
    }
}

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

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

.stproj .grad-text {
    background: linear-gradient(to bottom, #115665, #11566500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stproj .divider-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0
}

.stproj .divider-cross__line {
    height: 1px;
    width: 60px;
    background: #115665;
    opacity: .3
}

.stproj .divider-cross__icon {
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0
}

.stproj .divider-cross__icon::before,
.stproj .divider-cross__icon::after {
    content: "";
    position: absolute;
    background: #EB0055;
    border-radius: 5px
}

.stproj .divider-cross__icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0
}

.stproj .divider-cross__icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px
}

.stproj .tb {
    background: linear-gradient(135deg, #115665 0%, #0d3f4a 60%, #0a2e38 100%);
    position: relative;
    padding: 80px 0 0
}

.stproj .tb__dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.stproj .tb__dot-grid svg {
    width: 100%;
    height: 100%;
    opacity: .12
}

.stproj .tb__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch
}

.stproj .tb__text-zone {
    padding: 40px 40px 80px 0;
    position: relative;
    z-index: 1
}

.stproj .tb__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.stproj .tb__eyebrow-line {
    width: 32px;
    height: 2px;
    background: #EB0055;
    border-radius: 5px
}

.stproj .tb__eyebrow-label {
    font-size: 15px;
    color: #fdffe8b3;
    letter-spacing: .08em;
    text-transform: uppercase
}

.stproj .tb__h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #FDFFE8;
    margin-bottom: 24px
}

.stproj .tb__h1-outline {
    -webkit-text-stroke: 2px #EB0055;
    color: transparent
}

.stproj .tb__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #fdffe8d1;
    max-width: 420px;
    margin-bottom: 40px
}

.stproj .tb__stats {
    display: flex;
    flex-direction: row;
    gap: 40px
}

.stproj .tb__stat-num {
    font-size: 36px;
    line-height: 1.1;
    color: #EB0055
}

.stproj .tb__stat-label {
    font-size: 15px;
    line-height: 1.35;
    color: #fdffe8a6
}

.stproj .tb__img-zone {
    position: relative;
    min-height: 480px
}

.stproj .tb__img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.stproj .tb__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #115665 0%, #1156654d 60%, transparent 100%)
}

.stproj .proj-grid-sec {
    background: #FDFFE8;
    padding: 80px 0;
    position: relative
}

.stproj .proj-grid-sec__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.stproj .proj-grid-sec__bg-pattern svg {
    width: 100%;
    height: 100%;
    opacity: .04
}

.stproj .proj-grid-sec__header {
    text-align: center;
    margin-bottom: 40px
}

.stproj .proj-grid-sec__h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(to bottom, #115665, #11566500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stproj .proj-grid-sec__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #115665;
    opacity: .75;
    max-width: 520px;
    margin: 0 auto
}

.stproj .proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.stproj .proj-card {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 2px 2px 6px -1px #11566512;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: default
}

.stproj .proj-card:hover {
    box-shadow: 2px 8px 52px -1px #11566521;
    transform: translateY(-4px)
}

.stproj .proj-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eb005514;
    border-radius: 5px;
    padding: 6px 12px;
    font-size: 15px;
    color: #EB0055;
    width: fit-content
}

.stproj .proj-card__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #EB0055;
    flex-shrink: 0
}

.stproj .proj-card__title {
    font-size: 20px;
    line-height: 1.35;
    color: #115665;
    margin: 0
}

.stproj .proj-card__author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 6px
}

.stproj .proj-card__portrait {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.stproj .proj-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.stproj .proj-card__avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #115665, #11566566);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.stproj .proj-card__avatar-initials {
    font-size: 15px;
    color: #FDFFE8;
    line-height: 1
}

.stproj .proj-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 0
}

.stproj .proj-card__author-name {
    font-size: 15px;
    line-height: 1.35;
    color: #115665
}

.stproj .proj-card__author-role {
    font-size: 15px;
    line-height: 1.35;
    color: #1156658c
}

.stproj .proj-card__desc {
    font-size: 15px;
    line-height: 1.55;
    color: #115665cc;
    margin: 0
}

.stproj .proj-card__result {
    border-radius: 5px;
    background: #1156650f;
    padding: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: #115665;
    margin-top: auto
}

.stproj .proj-card__result strong {
    color: #EB0055
}

.stproj .proj-card--featured {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    background: linear-gradient(135deg, #115665 0%, #0d3f4a 100%)
}

.stproj .proj-card--featured .proj-card__tag {
    background: #fdffe81f;
    color: #FDFFE8
}

.stproj .proj-card--featured .proj-card__tag-dot {
    background: #EB0055
}

.stproj .proj-card--featured .proj-card__title {
    color: #FDFFE8;
    font-size: 26px
}

.stproj .proj-card--featured .proj-card__author-name {
    color: #fdffe8e6
}

.stproj .proj-card--featured .proj-card__author-role {
    color: #fdffe88c
}

.stproj .proj-card--featured .proj-card__desc {
    color: #fdffe8c7
}

.stproj .proj-card--featured .proj-card__result {
    background: #fdffe81a;
    color: #FDFFE8
}

.stproj .proj-card--featured .proj-card__result strong {
    color: #EB0055
}

.stproj .proj-card__feat-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.stproj .proj-card__feat-img {
    width: 220px;
    min-height: 200px;
    border-radius: 26px;
    overflow: hidden;
    flex-shrink: 0
}

.stproj .proj-card__feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.stproj .approach-sec {
    background: #fff;
    padding: 80px 0
}

.stproj .approach-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start
}

.stproj .approach-sec__left {
    position: relative
}

.stproj .approach-sec__img-wrap {
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
    box-shadow: 2px 5px 20px -1px #eb005517
}

.stproj .approach-sec__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.stproj .approach-sec__badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: #EB0055;
    border-radius: 26px;
    padding: 12px 24px;
    box-shadow: 2px 5px 20px -1px #eb005517
}

.stproj .approach-sec__badge-text {
    font-size: 15px;
    color: #FDFFE8;
    line-height: 1.35
}

.stproj .approach-sec__badge-num {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFFE8
}

.stproj .approach-sec__right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.stproj .approach-sec__h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to bottom, #115665, #11566500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stproj .approach-sec__lead {
    font-size: 17px;
    line-height: 1.55;
    color: #115665cc;
    max-width: 540px
}

.stproj .approach-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px
}

.stproj .approach-item {
    border-radius: 26px;
    padding: 24px;
    background: #FDFFE8;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 2px 2px 6px -1px #11566512;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease
}

.stproj .approach-item:hover {
    background: linear-gradient(135deg, #11566514 0%, #fdffe899 100%);
    box-shadow: 2px 5px 20px -1px #11566517
}

.stproj .approach-item__num {
    font-size: 36px;
    line-height: 1.1;
    color: #eb005533
}

.stproj .approach-item__title {
    font-size: 17px;
    line-height: 1.35;
    color: #115665;
    margin: 0
}

.stproj .approach-item__text {
    font-size: 15px;
    line-height: 1.55;
    color: #115665b8;
    margin: 0
}

.stproj .approach-sec__cta {
    margin-top: 12px
}

.stproj .btn-primary {
    display: inline-block;
    background: #EB0055;
    color: #FDFFE8;
    font-size: 17px;
    line-height: 1.35;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s ease;
    box-shadow: 2px 2px 6px -1px #eb005512
}

.stproj .btn-primary:hover {
    padding: 12px 56px;
    box-shadow: 2px 5px 20px -1px #eb005517
}

@media (max-width: 1200px) {
    .stproj .tb__h1 {
        font-size: 50px
    }

    .stproj .proj-grid {
        grid-template-columns: 1fr 1fr
    }

    .stproj .proj-card--featured {
        grid-column: span 2
    }

    .stproj .approach-sec__inner {
        grid-template-columns: 320px 1fr;
        gap: 40px
    }
}

@media (max-width: 900px) {
    .stproj .tb__inner {
        grid-template-columns: 1fr
    }

    .stproj .tb__img-zone {
        min-height: 320px
    }

    .stproj .tb__text-zone {
        padding: 40px 0
    }

    .stproj .tb__h1 {
        font-size: 50px
    }

    .stproj .proj-grid {
        grid-template-columns: 1fr
    }

    .stproj .proj-card--featured {
        grid-column: span 1;
        flex-direction: column
    }

    .stproj .proj-card__feat-img {
        width: 100%;
        min-height: 180px
    }

    .stproj .approach-sec__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .stproj .approach-sec__badge {
        right: 12px
    }

    .stproj .approach-sec__img-wrap {
        aspect-ratio: 16/9
    }

    .stproj .approach-sec__h2 {
        font-size: 36px
    }

    .stproj .proj-grid-sec__h2 {
        font-size: 36px
    }
}

@media (max-width: 600px) {
    .stproj .tb__h1 {
        font-size: 36px
    }

    .stproj .tb__stats {
        flex-direction: column;
        gap: 12px
    }

    .stproj .approach-items {
        grid-template-columns: 1fr
    }

    .stproj .proj-grid-sec__h2 {
        font-size: 26px
    }

    .stproj .approach-sec__h2 {
        font-size: 26px
    }
}

.ctus {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden
}

.ctus .pg-title {
    position: relative;
    padding: 80px;
    background: linear-gradient(135deg, #11566514 0%, #fdffe899 60%, #fff 100%);
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: end
}

.ctus .pg-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 5% 15%, #eb005517 0%, transparent 55%);
    pointer-events: none
}

.ctus .pg-title__bracket {
    position: absolute;
    width: 32px;
    height: 32px;
    pointer-events: none
}

.ctus .pg-title__bracket--tl {
    top: 24px;
    left: 24px;
    border-top: 2px solid #EB0055;
    border-left: 2px solid #EB0055;
    border-radius: 5px 0 0 0
}

.ctus .pg-title__bracket--br {
    bottom: 24px;
    right: 24px;
    border-bottom: 2px solid #115665;
    border-right: 2px solid #115665;
    border-radius: 0 0 5px 0
}

.ctus .pg-title__left {
    position: relative;
    z-index: 1
}

.ctus .pg-title__label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #EB0055;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 12px;
    background: #eb005512;
    border-radius: 5px
}

.ctus .pg-title__h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 24px;
    background: linear-gradient(180deg, #115665 0%, #11566500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ctus .pg-title__desc {
    font-size: 20px;
    line-height: 1.55;
    color: #1a3a42;
    max-width: 560px;
    margin: 0
}

.ctus .pg-title__right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
}

.ctus .contact-chip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 5px 20px -1px #11566517;
    width: 100%;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus .contact-chip:hover {
    box-shadow: 2px 8px 52px -1px #11566521;
    transform: rotate(-1deg)
}

.ctus .contact-chip__label {
    font-size: 15px;
    color: #115665;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em
}

.ctus .contact-chip__val {
    font-size: 17px;
    color: #1a3a42;
    line-height: 1.35;
    word-break: break-all
}

.ctus .contact-chip__val a {
    color: #EB0055;
    text-decoration: none;
    transition: color .5s ease
}

.ctus .contact-chip__val a:hover {
    color: #115665
}

.ctus .divider-double {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 80px
}

.ctus .divider-double span {
    display: block;
    height: 1px;
    background: #1156652e
}

.ctus .form-area {
    padding: 80px;
    background: linear-gradient(90deg, #fdffe8b3 0%, #fff 100%);
    position: relative
}

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

.ctus .form-area__heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 6px;
    background: linear-gradient(180deg, #EB0055 0%, #eb005500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ctus .form-area__accent-line {
    width: 48px;
    height: 2px;
    background: #EB0055;
    margin-bottom: 24px;
    border-radius: 5px
}

.ctus .form-area__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #2a4a52;
    margin: 0 0 40px
}

.ctus .req-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .req-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.ctus .field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .field__label {
    font-size: 15px;
    font-weight: 600;
    color: #115665
}

.ctus .field__input,
.ctus .field__select,
.ctus .field__textarea {
    padding: 12px;
    border: 1.5px solid #11566538;
    border-radius: 5px;
    font-size: 17px;
    color: #1a3a42;
    background: #fff;
    outline: none;
    transition: border-color .55s ease, box-shadow .55s ease;
    width: 100%;
    box-sizing: border-box
}

.ctus .field__input::placeholder,
.ctus .field__textarea::placeholder {
    color: #11566559;
    font-weight: 300
}

.ctus .field__input:focus,
.ctus .field__select:focus,
.ctus .field__textarea:focus {
    border-color: #EB0055;
    box-shadow: 2px 2px 6px -1px #eb005512
}

.ctus .field__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23115665' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer
}

.ctus .field__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus .privacy-row__check {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #EB0055;
    cursor: pointer
}

.ctus .privacy-row__text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a4a52
}

.ctus .privacy-row__text a {
    color: #EB0055;
    text-decoration: underline;
    transition: color .5s ease
}

.ctus .privacy-row__text a:hover {
    color: #115665
}

.ctus .submit-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #EB0055;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    transition: background .55s ease, width .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    outline: 2px solid transparent;
    outline-offset: 3px
}

.ctus .submit-btn:hover {
    background: #115665;
    padding: 12px 56px
}

.ctus .submit-btn:focus-visible {
    outline: 2px solid #EB0055
}

.ctus .submit-btn:active {
    background: #0d4050
}

.ctus .form-area__side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 80px
}

.ctus .side-block {
    position: relative;
    padding: 24px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 5px 20px -1px #11566517
}

.ctus .side-block__quote-mark {
    font-size: 68px;
    line-height: 1;
    color: #eb00551f;
    font-weight: 900;
    position: absolute;
    top: 6px;
    left: 12px;
    pointer-events: none;
    user-select: none;
    font-family: Georgia, serif
}

.ctus .side-block__body {
    position: relative;
    z-index: 1;
    padding-top: 24px
}

.ctus .side-block__heading {
    font-size: 17px;
    font-weight: 700;
    color: #115665;
    margin: 0 0 12px
}

.ctus .side-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ctus .side-block__list li {
    font-size: 15px;
    line-height: 1.55;
    color: #2a4a52;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .side-block__list details {
    width: 100%
}

.ctus .side-block__list summary {
    font-size: 15px;
    font-weight: 600;
    color: #115665;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    transition: color .5s ease;
    outline: none
}

.ctus .side-block__list summary::-webkit-details-marker {
    display: none
}

.ctus .side-block__list summary::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #EB0055;
    border-bottom: 1.5px solid #EB0055;
    transform: rotate(-45deg);
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0
}

.ctus .side-block__list details[open] summary::before {
    transform: rotate(45deg)
}

.ctus .side-block__list summary:hover {
    color: #EB0055
}

.ctus .side-block__list .detail-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2a4a52;
    padding: 6px 0 6px 14px
}

.ctus .badge-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px
}

.ctus .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    background: #11566512;
    color: #115665;
    transition: background .6s ease, color .6s ease;
    cursor: default
}

.ctus .badge:hover {
    background: #eb005517;
    color: #EB0055
}

.ctus .badge--active {
    background: #eb005517;
    color: #EB0055
}

.ctus .flag-mini {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    flex-shrink: 0
}

@media (max-width: 1200px) {
    .ctus .pg-title {
        grid-template-columns: 1fr;
        padding: 80px 40px
    }

    .ctus .pg-title__right {
        flex-direction: row;
        flex-wrap: wrap
    }

    .ctus .contact-chip {
        width: auto;
        min-width: 180px
    }

    .ctus .form-area {
        padding: 80px 40px
    }

    .ctus .form-area__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ctus .form-area__side {
        padding-top: 0;
        flex-direction: row;
        flex-wrap: wrap
    }

    .ctus .side-block {
        flex: 1 1 260px
    }

    .ctus .divider-double {
        padding: 0 40px
    }
}

@media (max-width: 900px) {
    .ctus .pg-title__h1 {
        font-size: 50px
    }

    .ctus .req-form__row {
        grid-template-columns: 1fr
    }

    .ctus .pg-title {
        padding: 80px 24px 40px
    }

    .ctus .form-area {
        padding: 40px 24px
    }

    .ctus .divider-double {
        padding: 0 24px
    }
}

@media (max-width: 600px) {
    .ctus .pg-title__h1 {
        font-size: 36px
    }

    .ctus .form-area__heading {
        font-size: 26px
    }

    .ctus .pg-title__right {
        flex-direction: column
    }

    .ctus .contact-chip {
        width: 100%
    }

    .ctus .form-area__side {
        flex-direction: column
    }
}

.gds {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden
}

.gds .pg-band {
    background: linear-gradient(to bottom, transparent, #115665);
    padding: 40px 40px 24px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    position: relative
}

.gds .pg-band__img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 140px;
    border-radius: 5px;
    overflow: hidden
}

.gds .pg-band__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #11566573 0%, #eb005540 100%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.gds .pg-band__img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, #11566514 3px, #11566514 4px);
    z-index: 1;
    pointer-events: none
}

.gds .pg-band__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(0.4) contrast(1.1) brightness(0.9) saturate(0.8);
    display: block
}

.gds .pg-band__dots {
    position: absolute;
    bottom: 6px;
    right: 6px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    z-index: 2;
    pointer-events: none
}

.gds .pg-band__dot {
    border-radius: 40px;
    background: #FDFFE8;
    opacity: .55
}

.gds .pg-band__dot--lg {
    width: 10px;
    height: 10px
}

.gds .pg-band__dot--md {
    width: 7px;
    height: 7px;
    margin-top: 3px
}

.gds .pg-band__dot--sm {
    width: 4px;
    height: 4px;
    margin-top: 6px
}

.gds .pg-band__text {
    padding-bottom: 12px
}

.gds .pg-band__label {
    font-size: 15px;
    color: #fdffe8b3;
    line-height: 1.35;
    margin-bottom: 6px
}

.gds .pg-band__h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #FDFFE8;
    margin: 0;
    background: linear-gradient(to bottom, #FDFFE8, #fdffe899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: inset(0 0 0 0);
    animation: clip-reveal .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes clip-reveal {
    from {
        clip-path: inset(0 0 100% 0);
        opacity: .4
    }

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

.gds .divider--dot {
    border: none;
    border-top: 2px dotted #1156652e;
    margin: 0
}

.gds .guides-strip {
    background: #EB0055;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.gds .guides-strip__stat {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.gds .guides-strip__num {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFFE8;
    font-weight: 700
}

.gds .guides-strip__desc {
    font-size: 15px;
    color: #fdffe8d1;
    line-height: 1.35
}

.gds .guides-strip__sep {
    width: 1px;
    height: 40px;
    background: #fdffe84d;
    flex-shrink: 0
}

.gds .guides-strip__body {
    flex: 1;
    min-width: 200px
}

.gds .guides-strip__body p {
    font-size: 15px;
    color: #fdffe8e6;
    line-height: 1.55;
    margin: 0
}

.gds .card-grid {
    padding: 80px 40px;
    background: #fff
}

.gds .card-grid__heading {
    font-size: 36px;
    line-height: 1.35;
    margin: 0 0 40px;
    background: linear-gradient(to bottom, #115665, #EB0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: clip-reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s both
}

.gds .card-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.gds .post-card {
    border-radius: 5px;
    background: #FDFFE8;
    box-shadow: 2px 2px 6px -1px #11566512;
    display: flex;
    flex-direction: column;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit
}

.gds .post-card:hover {
    box-shadow: 2px 8px 52px -1px #11566521;
    transform: translateY(-3px)
}

.gds .post-card__img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    flex-shrink: 0;
    background: #e4e8e0
}

.gds .post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.gds .post-card:hover .post-card__img {
    transform: scale(1.04)
}

.gds .post-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.gds .post-card__tag {
    display: inline-block;
    font-size: 15px;
    color: #EB0055;
    background: #eb005514;
    border-radius: 5px;
    padding: 6px 12px;
    line-height: 1.35;
    align-self: flex-start
}

.gds .post-card__h {
    font-size: 20px;
    line-height: 1.35;
    margin: 0;
    color: #115665
}

.gds .post-card__desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2a3a3e;
    margin: 0;
    flex: 1
}

.gds .post-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dotted #1156652e
}

.gds .post-card__author {
    font-size: 15px;
    color: #115665;
    line-height: 1.35
}

.gds .post-card__likes {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #EB0055;
    line-height: 1.35
}

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

.gds .post-card__cta {
    display: inline-block;
    font-size: 15px;
    color: #FDFFE8;
    background: #115665;
    border-radius: 5px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    margin-top: 6px
}

.gds .post-card__cta:hover {
    background: #EB0055;
    padding-left: 30px;
    padding-right: 30px
}

.gds .two-col-info {
    padding: 80px 40px;
    background: #1156650a;
    position: relative
}

.gds .two-col-info__heading {
    font-size: 36px;
    line-height: 1.35;
    margin: 0 0 12px;
    background: linear-gradient(to bottom, #115665, #EB0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gds .two-col-info__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #2a3a3e;
    margin: 0 0 40px;
    max-width: 560px
}

.gds .two-col-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.gds .info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: 2px 2px 6px -1px #eb005512;
    transition: box-shadow .55s ease
}

.gds .info-row:hover {
    box-shadow: 2px 5px 20px -1px #eb005517
}

.gds .info-row__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #EB0055;
    display: flex;
    align-items: center;
    justify-content: center
}

.gds .info-row__body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.gds .info-row__label {
    font-size: 17px;
    line-height: 1.35;
    color: #115665;
    font-weight: 600
}

.gds .info-row__desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2a3a3e;
    margin: 0
}

.gds .two-col-info__dots {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none
}

.gds .two-col-info__dot {
    border-radius: 40px;
    background: #EB0055
}

.gds .two-col-info__dot--a {
    width: 14px;
    height: 14px;
    opacity: .18
}

.gds .two-col-info__dot--b {
    width: 9px;
    height: 9px;
    opacity: .12;
    margin-left: 5px
}

.gds .two-col-info__dot--c {
    width: 5px;
    height: 5px;
    opacity: .09;
    margin-left: 9px
}

.gds .newsletter-band {
    padding: 80px 40px;
    background: #115665;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.gds .newsletter-band__deco {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 260px;
    height: 260px;
    border-radius: 40px;
    background: #eb00551f;
    pointer-events: none
}

.gds .newsletter-band__text {
    flex: 1;
    min-width: 220px
}

.gds .newsletter-band__h {
    font-size: 36px;
    line-height: 1.35;
    color: #FDFFE8;
    margin: 0 0 12px
}

.gds .newsletter-band__p {
    font-size: 17px;
    line-height: 1.55;
    color: #fdffe8cc;
    margin: 0
}

.gds .newsletter-band__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 340px
}

.gds .newsletter-band__input {
    border-radius: 5px;
    border: 1.5px solid #fdffe84d;
    background: #fdffe814;
    color: #FDFFE8;
    font-size: 15px;
    padding: 12px 24px;
    outline: none;
    transition: border-color .5s ease
}

.gds .newsletter-band__input::placeholder {
    color: #fdffe866;
    font-weight: 300
}

.gds .newsletter-band__input:focus {
    border-color: #EB0055
}

.gds .newsletter-band__btn {
    border-radius: 5px;
    background: #EB0055;
    color: #FDFFE8;
    border: none;
    font-size: 17px;
    padding: 12px 40px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start
}

.gds .newsletter-band__btn:hover {
    background: #FDFFE8;
    color: #EB0055;
    padding-left: 50px;
    padding-right: 50px
}

.gds .newsletter-band__btn:focus {
    outline: 2px solid #FDFFE8;
    outline-offset: 2px
}

@media (max-width: 1200px) {
    .gds .card-grid__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 900px) {
    .gds .pg-band__h1 {
        font-size: 50px
    }

    .gds .two-col-info__grid {
        grid-template-columns: 1fr
    }

    .gds .newsletter-band {
        gap: 40px
    }

    .gds .newsletter-band__form {
        width: 100%
    }
}

@media (max-width: 600px) {
    .gds .pg-band {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start
    }

    .gds .pg-band__img-wrap {
        width: 100%;
        height: 120px
    }

    .gds .pg-band__h1 {
        font-size: 36px
    }

    .gds .card-grid {
        padding: 40px 24px
    }

    .gds .card-grid__grid {
        grid-template-columns: 1fr
    }

    .gds .two-col-info {
        padding: 40px 24px
    }

    .gds .newsletter-band {
        padding: 40px 24px
    }

    .gds .guides-strip {
        padding: 24px
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-color: #FDFFE8
}

.success-page .success-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 2px 8px 52px -1px #11566521;
    text-align: center
}

.success-page .success-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: #FDFFE8;
    box-shadow: inset 2px 6px 10px -2px #11566521
}

.success-page .success-card__icon svg {
    display: block
}

.success-page .success-card__heading {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 12px;
    background: linear-gradient(to bottom, #115665, #EB0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.success-page .success-card__text {
    font-size: 17px;
    line-height: 1.55;
    color: #115665;
    margin: 0 0 40px
}

.success-page .success-card__link {
    display: inline-block;
    padding: 12px 40px;
    background: #EB0055;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    border-radius: 5px;
    text-decoration: none;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease
}

.success-page .success-card__link:hover {
    padding: 12px 52px;
    background: #115665
}

.success-page .success-card__link:focus {
    outline: 2px solid #EB0055;
    outline-offset: 3px
}

@media (max-width: 600px) {
    .success-page {
        padding: 40px 12px
    }

    .success-page .success-card {
        padding: 40px 24px
    }

    .success-page .success-card__heading {
        font-size: 26px
    }
}