html {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Cormorant', serif;
    font-size: 21px;
    line-height: 1.6;
    color: #1d1d1d;
    background: #fff
}

.top-strip {
    background: linear-gradient(135deg, #FCF157 0%, #F2F2F2 100%);
    padding: 12px 0;
    border-bottom: 2px solid #EE375D
}

.top-strip__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

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

.nav-primary__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    background: #fff9;
    transition: background .15s ease-out, box-shadow .12s ease;
    box-shadow: -1px 2px 4px 0 #fcf15712
}

.nav-primary__link:hover {
    background: #ffffffe6;
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.nav-primary__link:focus {
    box-shadow: 0 0 0 4px #fcf15780
}

.nav-primary__icon {
    font-size: 15px;
    color: #EE375D
}

.brand-row {
    background: #fff;
    padding: 24px 0;
    border-bottom: 2px solid #F2F2F2;
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.brand-row__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #F2F2F2;
    border-top: 2px solid #FCF157;
    border-bottom: 2px solid #FCF157;
    border-radius: 6px;
    box-shadow: -1px 4px 14px 0 #fcf15717
}

.brand-logo__img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block
}

.ft {
    background: #EE375D;
    color: #fff;
    padding: 48px 0 24px
}

.ft__upper {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: start
}

.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-brand__logo-wrap {
    display: inline-flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 4px;
    width: fit-content;
    box-shadow: -1px 2px 4px 0 #fcf15712
}

.ft-brand__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.ft-brand__name {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    color: #FCF157
}

.ft-nav {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-nav__heading {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #FCF157;
    margin: 0 0 8px
}

.ft-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    padding: 4px 0;
    transition: color .12s ease, transform .1s ease-out
}

.ft-nav__link:hover {
    color: #FCF157;
    transform: translateX(4px)
}

.ft-nav__link:focus {
    box-shadow: 0 0 0 4px #fcf15766;
    border-radius: 2px
}

.ft-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-contacts__heading {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #FCF157;
    margin: 0 0 8px
}

.ft-contacts__item {
    display: flex;
    align-items: start;
    gap: 8px;
    font-size: 15px;
    color: #fff;
    line-height: 1.6
}

.ft-contacts__icon {
    font-size: 15px;
    color: #FCF157;
    margin-top: 4px;
    flex-shrink: 0
}

.ft-contacts__link {
    color: #fff;
    text-decoration: none;
    transition: color .12s ease
}

.ft-contacts__link:hover {
    color: #FCF157;
    text-decoration: underline
}

.ft-contacts__link:focus {
    box-shadow: 0 0 0 4px #fcf15766;
    border-radius: 2px
}

.ft__lower {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 2px solid #fcf1574d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
}

.ft-copy {
    font-size: 15px;
    color: #F2F2F2;
    line-height: 1.6
}

.ft-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.ft-legal__link {
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: color .12s ease
}

.ft-legal__link:hover {
    color: #FCF157;
    text-decoration: underline
}

.ft-legal__link:focus {
    box-shadow: 0 0 0 4px #fcf15766;
    border-radius: 2px
}

@media (max-width: 768px) {
    .top-strip__inner {
        gap: 24px
    }

    .nav-primary {
        gap: 12px
    }

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

    .brand-row__inner {
        justify-content: center
    }

    .brand-logo {
        padding: 8px 12px
    }

    .brand-logo__img {
        width: 51px;
        height: 51px
    }

    .ft__upper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px
    }

    .ft__lower {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .ft-legal {
        flex-direction: column;
        gap: 8px
    }
}

@media (max-width: 480px) {
    body {
        font-size: 21px
    }

    .top-strip {
        padding: 8px 0
    }

    .top-strip__inner {
        padding: 0 12px;
        gap: 12px
    }

    .nav-primary {
        flex-direction: column;
        gap: 8px;
        width: 100%
    }

    .nav-primary__link {
        width: 100%;
        justify-content: center;
        padding: 12px
    }

    .brand-row {
        padding: 12px 0
    }

    .brand-row__inner {
        padding: 0 12px
    }

    .brand-logo__img {
        width: 51px;
        height: 51px
    }

    .ft {
        padding: 24px 0 12px
    }

    .ft__upper {
        padding: 0 12px 24px
    }

    .ft__lower {
        padding: 12px 12px 0
    }
}

.agreement-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff
}

.agreement-section p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #2a2a2a
}

.agreement-section p:last-child {
    margin-bottom: 0
}

.agreement-section ul,
.agreement-section ol {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
    padding-left: 24px;
    color: #2a2a2a
}

.agreement-section li {
    margin-bottom: 12px
}

.agreement-section li:last-child {
    margin-bottom: 0
}

.agreement-section strong,
.agreement-section b {
    font-weight: 600;
    color: #1a1a1a
}

.agreement-section a {
    color: #EE375D;
    text-decoration: none;
    transition: opacity .15s ease-out
}

.agreement-section a:hover {
    opacity: .75
}

.agreement-section a:focus {
    outline: 2px solid #FCF157;
    outline-offset: 2px
}

.agreement-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.6
}

.agreement-section thead {
    background: #F2F2F2
}

.agreement-section th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #d4d4d4
}

.agreement-section td {
    padding: 12px;
    color: #2a2a2a;
    border: 1px solid #d4d4d4
}

.agreement-section tbody tr:nth-child(even) {
    background: #fafaf9
}

.agreement-section hr {
    border: none;
    height: 1px;
    background: #d4d4d4;
    margin: 48px 0
}

.agreement-section div {
    margin-bottom: 24px
}

@media (max-width: 768px) {
    .agreement-section {
        padding: 24px 12px
    }

    .agreement-section table {
        font-size: 14px
    }

    .agreement-section th,
    .agreement-section td {
        padding: 8px
    }
}

@media (max-width: 480px) {
    .agreement-section {
        padding: 24px 8px
    }

    .agreement-section p,
    .agreement-section ul,
    .agreement-section ol {
        font-size: 14px
    }

    .agreement-section table {
        display: block;
        overflow-x: auto
    }
}

.svc-dtl {
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.svc-dtl__wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.svc-dtl__banner {
    background: linear-gradient(167deg, #FCF157 0%, #EE375D 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.svc-dtl__banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a
}

.svc-dtl__banner-inner {
    max-width: 1170px;
    margin: 0 auto;
    animation: svc-dtl-reveal .18s ease-out
}

@keyframes svc-dtl-reveal {
    from {
        opacity: 0;
        transform: scale(0.94)
    }

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

.svc-dtl__banner h1 {
    font-size: 68px;
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a;
    font-weight: 700
}

.svc-dtl__banner h1 mark {
    background: transparent;
    color: #fff;
    font-weight: 700
}

.svc-dtl__meta {
    display: flex;
    gap: 48px;
    margin: 48px 0 0;
    flex-wrap: wrap
}

.svc-dtl__meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.svc-dtl__meta-label {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1ab8;
    text-transform: uppercase;
    letter-spacing: .04em
}

.svc-dtl__meta-value {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 600
}

.svc-dtl__content {
    padding: 96px 0;
    background: #fff
}

.svc-dtl__content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 96px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.svc-dtl__main {
    animation: svc-dtl-reveal .15s ease-out .1s backwards
}

.svc-dtl__main h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    padding-top: 24px
}

.svc-dtl__main h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 96px;
    height: 4px;
    background: #EE375D
}

.svc-dtl__main h3 {
    font-size: 27px;
    line-height: 1.6;
    margin: 48px 0 12px;
    color: #1a1a1a;
    font-weight: 700
}

.svc-dtl__main p {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #1a1a1a
}

.svc-dtl__main ul,
.svc-dtl__main ol {
    margin: 0 0 24px;
    padding: 0 0 0 24px
}

.svc-dtl__main li {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 0 12px;
    color: #1a1a1a;
    position: relative;
    padding-left: 12px
}

.svc-dtl__main li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 14px;
    width: 6px;
    height: 6px;
    background: #FCF157;
    border-radius: 10px
}

.svc-dtl__main blockquote {
    margin: 48px 0;
    padding: 24px;
    background: #F2F2F2;
    border-radius: 4px;
    position: relative
}

.svc-dtl__main blockquote p {
    font-size: 21px;
    line-height: 1.9;
    margin: 0;
    font-style: italic
}

.svc-dtl__main strong {
    font-weight: 700;
    color: #1a1a1a
}

.svc-dtl__main mark {
    background: #FCF157;
    color: #1a1a1a;
    padding: 2px 4px;
    border-radius: 2px
}

.svc-dtl__main figure {
    margin: 48px 0
}

.svc-dtl__main figcaption {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1ab8;
    margin-top: 12px;
    text-align: center
}

.svc-dtl__main abbr {
    text-decoration: none;
    border-bottom: 2px dotted #EE375D;
    cursor: help
}

.svc-dtl__main dl {
    margin: 24px 0
}

.svc-dtl__main dt {
    font-size: 21px;
    line-height: 1.6;
    font-weight: 700;
    margin: 24px 0 8px;
    color: #1a1a1a
}

.svc-dtl__main dd {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 0 12px 24px;
    color: #1a1a1a
}

.svc-dtl__main details {
    margin: 24px 0;
    padding: 24px;
    background: #F2F2F2;
    border-radius: 4px
}

.svc-dtl__main summary {
    font-size: 21px;
    line-height: 1.6;
    font-weight: 700;
    cursor: pointer;
    color: #1a1a1a;
    list-style: none;
    position: relative;
    padding-left: 24px
}

.svc-dtl__main summary::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-left: 6px solid #EE375D;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: transform .12s ease
}

.svc-dtl__main details[open] summary::before {
    transform: rotate(90deg)
}

.svc-dtl__main details> :not(summary) {
    margin-top: 12px
}

.svc-dtl__sidebar {
    animation: svc-dtl-reveal .15s ease-out .2s backwards
}

.svc-dtl__card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: -1px 4px 14px 0 #ee375d17;
    position: sticky;
    top: 24px
}

.svc-dtl__card-img-wrap {
    width: 100%;
    height: 240px;
    background: #F2F2F2;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 24px
}

.svc-dtl__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.svc-dtl__card h3 {
    font-size: 27px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #1a1a1a;
    font-weight: 700
}

.svc-dtl__card-price {
    font-size: 51px;
    line-height: 1.2;
    color: #EE375D;
    font-weight: 700;
    margin: 0 0 24px
}

.svc-dtl__card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px
}

.svc-dtl__card-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a
}

.svc-dtl__card-info-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #FCF157;
    border-radius: 10px;
    flex-shrink: 0
}

.svc-dtl__card-btn {
    display: block;
    width: 100%;
    padding: 24px;
    background: #EE375D;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background .14s ease-out, transform .12s ease;
    text-decoration: none
}

.svc-dtl__card-btn:hover {
    background: #d42e4f;
    transform: translateY(-2px)
}

.svc-dtl__card-btn:active {
    transform: translateY(0)
}

.svc-dtl__funnel {
    background: radial-gradient(ellipse at center, #fcf15714 0%, #fff 70%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.svc-dtl__funnel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 24px;
    background-image: radial-gradient(circle, #EE375D 2px, transparent 2px), radial-gradient(circle, #EE375D 2px, transparent 2px);
    background-size: 12px 12px;
    background-position: 0 0, 0 12px;
    background-repeat: repeat-x
}

.svc-dtl__funnel-inner {
    max-width: 1170px;
    margin: 0 auto;
    animation: svc-dtl-reveal .16s ease-out
}

.svc-dtl__funnel h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 48px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center
}

.svc-dtl__funnel-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto
}

.svc-dtl__funnel-stage {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: -1px 2px 4px 0 #ee375d12;
    position: relative;
    transition: transform .14s ease-out, box-shadow .14s ease-out
}

.svc-dtl__funnel-stage:hover {
    transform: translateY(-4px);
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.svc-dtl__funnel-stage:nth-child(1) {
    width: 100%;
    background: linear-gradient(90deg, #FCF157 0%, #FCF157 50%, #fff 50%)
}

.svc-dtl__funnel-stage:nth-child(2) {
    width: 85%
}

.svc-dtl__funnel-stage:nth-child(3) {
    width: 70%
}

.svc-dtl__funnel-stage:nth-child(4) {
    width: 55%
}

.svc-dtl__funnel-stage:nth-child(5) {
    width: 40%;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #EE375D 50%)
}

.svc-dtl__funnel-stage-txt {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center
}

.svc-dtl__funnel-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #FCF157 0%, #EE375D 100%);
    margin: 0 auto
}

@media (max-width: 1280px) {
    .svc-dtl__content-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .svc-dtl__card {
        position: static
    }
}

@media (max-width: 768px) {
    .svc-dtl__banner {
        padding: 48px 24px
    }

    .svc-dtl__banner h1 {
        font-size: 51px
    }

    .svc-dtl__meta {
        gap: 24px
    }

    .svc-dtl__content {
        padding: 48px 0
    }

    .svc-dtl__content-grid {
        gap: 48px
    }

    .svc-dtl__main h2 {
        font-size: 27px
    }

    .svc-dtl__main h3 {
        font-size: 21px
    }

    .svc-dtl__main p,
    .svc-dtl__main li {
        font-size: 15px
    }

    .svc-dtl__card-price {
        font-size: 27px
    }

    .svc-dtl__funnel {
        padding: 48px 24px
    }

    .svc-dtl__funnel h2 {
        font-size: 27px
    }

    .svc-dtl__funnel-stage-txt {
        font-size: 15px
    }
}

@media (max-width: 480px) {
    .svc-dtl__banner h1 {
        font-size: 27px
    }

    .svc-dtl__meta {
        flex-direction: column;
        gap: 12px
    }

    .svc-dtl__funnel-stage {
        padding: 12px
    }
}

.fin-rep {
    max-width: 1170px;
    margin: 0 auto;
    background: #fff;
    overflow-x: clip
}

.fin-rep .top-strip {
    background: linear-gradient(117deg, #FCF157 0%, #EE375D 100%);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    overflow: hidden
}

.fin-rep .top-strip::before {
    content: '01';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    font-weight: 700;
    color: #ffffff1f;
    line-height: 1;
    pointer-events: none;
    z-index: 0
}

.fin-rep .top-strip__txt {
    flex: 1;
    z-index: 1;
    max-width: 520px
}

.fin-rep .top-strip__h {
    font-size: 51px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 12px;
    font-weight: 700
}

.fin-rep .top-strip__sub {
    font-size: 21px;
    line-height: 1.6;
    color: #2d2d44;
    margin: 0 0 24px
}

.fin-rep .top-strip__link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #1a1a2e;
    transition: border-color .15s ease-out
}

.fin-rep .top-strip__link:hover {
    border-bottom-color: #EE375D
}

.fin-rep .top-strip__visual {
    flex-shrink: 0;
    width: 380px;
    height: 180px;
    z-index: 1
}

.fin-rep .top-strip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    box-shadow: -1px 4px 14px 0 #fcf15717
}

.fin-rep .readiness {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.fin-rep .readiness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, #fcf15714 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.fin-rep .readiness__inner {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.fin-rep .readiness__overline {
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin: 0 0 24px
}

.fin-rep .readiness__h {
    font-size: 51px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 48px;
    font-weight: 700
}

.fin-rep .readiness__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px
}

.fin-rep .req-card {
    background: #F2F2F2;
    padding: 24px;
    border-radius: 6px;
    box-shadow: inset -1px 2px 4px 0 #ee375d12;
    transition: transform .12s ease-out
}

.fin-rep .req-card:hover {
    transform: translateY(-4px)
}

.fin-rep .req-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FCF157 0%, #EE375D 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px
}

.fin-rep .req-card__icon svg {
    width: 24px;
    height: 24px;
    fill: #1a1a2e
}

.fin-rep .req-card__title {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0 0 12px;
    font-weight: 600
}

.fin-rep .req-card__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0
}

.fin-rep .credentials {
    padding: 96px 48px;
    background: #F2F2F2;
    position: relative
}

.fin-rep .credentials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FCF157 50%, transparent 100%)
}

.fin-rep .credentials__inner {
    max-width: 940px;
    margin: 0 auto
}

.fin-rep .credentials__overline {
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin: 0 auto 24px
}

.fin-rep .credentials__h {
    font-size: 51px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 48px;
    font-weight: 700;
    text-align: center
}

.fin-rep .credentials__layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start
}

.fin-rep .credentials__visual {
    position: relative
}

.fin-rep .credentials__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.fin-rep .credentials__badges {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.fin-rep .badge-item {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    border-left: 0;
    box-shadow: -1px 4px 14px 0 #fcf15717;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: box-shadow .18s ease
}

.fin-rep .badge-item:hover {
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.fin-rep .badge-item__num {
    font-size: 27px;
    line-height: 1.2;
    color: #EE375D;
    font-weight: 700;
    flex-shrink: 0;
    width: 48px;
    text-align: center
}

.fin-rep .badge-item__content {
    flex: 1
}

.fin-rep .badge-item__label {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0 0 8px;
    font-weight: 600
}

.fin-rep .badge-item__detail {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0
}

.fin-rep .outcomes {
    padding: 96px 48px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.fin-rep .outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 23px, #fcf15708 23px, #fcf15708 24px), repeating-linear-gradient(90deg, transparent, transparent 23px, #fcf15708 23px, #fcf15708 24px);
    pointer-events: none;
    z-index: 0
}

.fin-rep .outcomes__inner {
    max-width: 940px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.fin-rep .outcomes__overline {
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin: 0 0 24px
}

.fin-rep .outcomes__h {
    font-size: 51px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 48px;
    font-weight: 700
}

.fin-rep .case-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.fin-rep .case-box {
    background: #F2F2F2;
    padding: 24px;
    border-radius: 6px;
    box-shadow: inset -1px 2px 4px 0 #ee375d12;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: center;
    opacity: 0;
    animation: reveal-case .14s ease-out forwards
}

.fin-rep .case-box:nth-child(1) {
    animation-delay: .1s
}

.fin-rep .case-box:nth-child(2) {
    animation-delay: .25s
}

.fin-rep .case-box:nth-child(3) {
    animation-delay: .4s
}

@keyframes reveal-case {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.fin-rep .case-box__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.fin-rep .case-box__avatar {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FCF157 0%, #EE375D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    line-height: 1;
    color: #1a1a2e;
    font-weight: 700
}

.fin-rep .case-box__name {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a2e;
    font-weight: 600;
    text-align: center;
    margin: 0
}

.fin-rep .case-box__role {
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a7e;
    text-align: center;
    margin: 0
}

.fin-rep .case-box__story {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.fin-rep .case-box__situation {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0
}

.fin-rep .case-box__result {
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0;
    font-weight: 600
}

.fin-rep .method {
    padding: 96px 48px;
    background: linear-gradient(180deg, #F2F2F2 0%, #fff 100%);
    position: relative
}

.fin-rep .method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #EE375D 0%, transparent 100%)
}

.fin-rep .method__inner {
    max-width: 940px;
    margin: 0 auto
}

.fin-rep .method__overline {
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin: 0 0 24px
}

.fin-rep .method__h {
    font-size: 51px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 48px;
    font-weight: 700
}

.fin-rep .method__layout {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    align-items: start
}

.fin-rep .method__visual-wrap {
    position: relative
}

.fin-rep .method__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.fin-rep .method__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 96px;
    background: linear-gradient(180deg, transparent 0%, #fcf157e6 100%);
    border-radius: 0 0 10px 10px;
    pointer-events: none
}

.fin-rep .method__content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.fin-rep .method__intro {
    font-size: 21px;
    line-height: 1.6;
    color: #1a1a2e;
    margin: 0;
    font-weight: 600
}

.fin-rep .method-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px
}

.fin-rep .method-table__row {
    background: #fff;
    box-shadow: -1px 2px 4px 0 #fcf15712
}

.fin-rep .method-table__cell {
    padding: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a5e;
    border: 0
}

.fin-rep .method-table__cell:first-child {
    font-weight: 600;
    color: #1a1a2e;
    border-radius: 6px 0 0 6px;
    width: 35%
}

.fin-rep .method-table__cell:last-child {
    border-radius: 0 6px 6px 0
}

.fin-rep .method-table__row--high .method-table__cell:first-child {
    background: #fcf15726
}

.fin-rep .method-table__row--medium .method-table__cell:first-child {
    background: #ee375d14
}

.fin-rep .method-table__row--standard .method-table__cell:first-child {
    background: #f2f2f2cc
}

@media (max-width: 1280px) {
    .fin-rep .top-strip {
        padding: 24px;
        gap: 24px
    }

    .fin-rep .top-strip__visual {
        width: 320px;
        height: 160px
    }

    .fin-rep .readiness {
        padding: 48px 24px
    }

    .fin-rep .readiness__grid {
        gap: 24px
    }

    .fin-rep .credentials {
        padding: 48px 24px
    }

    .fin-rep .credentials__layout {
        gap: 24px
    }

    .fin-rep .outcomes {
        padding: 48px 24px
    }

    .fin-rep .method {
        padding: 48px 24px
    }

    .fin-rep .method__layout {
        gap: 24px
    }
}

@media (max-width: 768px) {
    .fin-rep .top-strip {
        flex-direction: column;
        padding: 24px
    }

    .fin-rep .top-strip__txt {
        max-width: 100%
    }

    .fin-rep .top-strip__h {
        font-size: 27px
    }

    .fin-rep .top-strip__sub {
        font-size: 15px
    }

    .fin-rep .top-strip__visual {
        width: 100%;
        height: 200px
    }

    .fin-rep .readiness__h {
        font-size: 27px
    }

    .fin-rep .readiness__grid {
        grid-template-columns: 1fr
    }

    .fin-rep .credentials__h {
        font-size: 27px
    }

    .fin-rep .credentials__layout {
        grid-template-columns: 1fr
    }

    .fin-rep .credentials__img {
        height: 320px
    }

    .fin-rep .outcomes__h {
        font-size: 27px
    }

    .fin-rep .case-box {
        grid-template-columns: 1fr
    }

    .fin-rep .method__h {
        font-size: 27px
    }

    .fin-rep .method__layout {
        grid-template-columns: 1fr
    }

    .fin-rep .method__img {
        height: 280px
    }

    .fin-rep .method__intro {
        font-size: 15px
    }

    .fin-rep .method-table__cell {
        padding: 12px;
        display: block
    }

    .fin-rep .method-table__cell:first-child {
        width: 100%;
        border-radius: 6px 6px 0 0
    }

    .fin-rep .method-table__cell:last-child {
        border-radius: 0 0 6px 6px
    }
}

@media (max-width: 480px) {
    .fin-rep .top-strip {
        padding: 12px
    }

    .fin-rep .top-strip__h {
        font-size: 21px
    }

    .fin-rep .readiness {
        padding: 48px 12px
    }

    .fin-rep .readiness__h {
        font-size: 21px
    }

    .fin-rep .req-card {
        padding: 12px
    }

    .fin-rep .credentials {
        padding: 48px 12px
    }

    .fin-rep .credentials__h {
        font-size: 21px
    }

    .fin-rep .badge-item {
        padding: 12px;
        gap: 12px
    }

    .fin-rep .outcomes {
        padding: 48px 12px
    }

    .fin-rep .outcomes__h {
        font-size: 21px
    }

    .fin-rep .case-box {
        padding: 12px
    }

    .fin-rep .method {
        padding: 48px 12px
    }

    .fin-rep .method__h {
        font-size: 21px
    }
}

.phil {
    max-width: 1170px;
    margin: 0 auto;
    background: #fff;
    color: #1d1d1d
}

.phil__hero {
    padding: 96px 24px 48px;
    text-align: center;
    background: linear-gradient(155deg, #FCF157 0%, #FCF157 50%, #F2F2F2 50%, #F2F2F2 100%);
    position: relative;
    overflow: hidden
}

.phil__hero::before,
.phil__hero::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #EE375D;
    opacity: .15
}

.phil__hero::before {
    top: 48px;
    left: 24px
}

.phil__hero::after {
    top: 48px;
    right: 24px
}

.phil__deco-1,
.phil__deco-2,
.phil__deco-3,
.phil__deco-4 {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #EE375D;
    opacity: .15
}

.phil__deco-1 {
    top: 96px;
    left: 96px
}

.phil__deco-2 {
    top: 96px;
    right: 96px
}

.phil__deco-3 {
    bottom: 48px;
    left: 48px
}

.phil__deco-4 {
    bottom: 48px;
    right: 48px
}

.phil__img-wrap {
    max-width: 480px;
    margin: 0 auto 48px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: -1px 10px 60px 0 #fcf1571c
}

.phil__img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.3)
}

.phil__hero-txt {
    max-width: 720px;
    margin: 0 auto
}

.phil__hero h1 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1d1d1d
}

.phil__hero p {
    font-size: 21px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #2a2a2a
}

.phil__hero-link {
    display: inline-block;
    padding: 12px 24px;
    background: #EE375D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    transition: background .15s ease-out, transform .12s ease;
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.phil__hero-link:hover {
    background: #d42d4f;
    transform: translateY(-2px);
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.phil__hero-link:active {
    transform: translateY(0)
}

.phil__split {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 96px 24px;
    background: #fefdf0
}

.phil__split-side {
    width: 30%;
    flex-shrink: 0
}

.phil__split-main {
    width: 70%;
    flex-grow: 1
}

.phil__split-side h2 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1d1d1d
}

.phil__split-side p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.phil__card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.phil__card {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: inset -1px 2px 4px 0 #fcf15712;
    border: 1px solid #f0f0f0;
    transition: box-shadow .18s ease, transform .15s ease-out
}

.phil__card:hover {
    box-shadow: -1px 4px 14px 0 #fcf15717;
    transform: translateY(-4px)
}

.phil__card h3 {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1d1d1d
}

.phil__card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.phil__metrics {
    padding: 96px 24px;
    background: #fff
}

.phil__metrics-intro {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center
}

.phil__metrics-intro::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin: 0 auto 24px
}

.phil__metrics-intro h2 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1d1d1d
}

.phil__metrics-intro p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.phil__data-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
    background: #fff;
    border: 2px dashed #FCF157;
    border-radius: 10px;
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.phil__data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.phil__data-item {
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    animation: phil-reveal .16s ease-out forwards
}

.phil__data-item:nth-child(1) {
    animation-delay: .1s
}

.phil__data-item:nth-child(2) {
    animation-delay: .2s
}

.phil__data-item:nth-child(3) {
    animation-delay: .3s
}

.phil__data-item:nth-child(4) {
    animation-delay: .4s
}

@keyframes phil-reveal {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.phil__data-num {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #EE375D;
    font-weight: 700
}

.phil__data-label {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #3a3a3a
}

.phil__zigzag {
    width: 100%;
    height: 24px;
    overflow: hidden
}

.phil__zigzag svg {
    display: block;
    width: 100%;
    height: 100%
}

.phil__story {
    padding: 96px 24px;
    background: #F2F2F2
}

.phil__story-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto
}

.phil__story-sidebar {
    width: 240px;
    flex-shrink: 0
}

.phil__story-content {
    flex-grow: 1
}

.phil__story-sidebar h2 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1d1d1d
}

.phil__story-content h3 {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1d1d1d
}

.phil__story-content h3::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #FCF157;
    margin-bottom: 12px
}

.phil__story-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #3a3a3a
}

.phil__story-content p:last-child {
    margin-bottom: 0
}

.phil__expand-trigger {
    position: relative;
    padding: 24px;
    background: #fff;
    border-radius: 6px;
    margin-top: 24px;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow .14s ease;
    box-shadow: -1px 2px 4px 0 #ee375d12
}

.phil__expand-trigger:hover {
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.phil__expand-label {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #EE375D;
    font-weight: 700;
    position: relative;
    z-index: 2
}

.phil__expand-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FCF157;
    overflow: hidden;
    white-space: nowrap;
    transition: width .2s ease-out;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-left: 24px
}

.phil__expand-trigger:hover .phil__expand-hidden {
    width: 100%
}

.phil__expand-txt {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #1d1d1d
}

@media (max-width: 1280px) {
    .phil__hero {
        padding: 48px 24px
    }

    .phil__split {
        padding: 48px 24px
    }

    .phil__metrics {
        padding: 48px 24px
    }

    .phil__story {
        padding: 48px 24px
    }

    .phil__data-box {
        padding: 24px
    }

    .phil__data-grid {
        gap: 24px
    }
}

@media (max-width: 768px) {
    .phil__hero h1 {
        font-size: 27px
    }

    .phil__hero p {
        font-size: 15px
    }

    .phil__img-wrap {
        margin-bottom: 24px
    }

    .phil__img-wrap img {
        height: 280px
    }

    .phil__split {
        flex-direction: column;
        gap: 24px
    }

    .phil__split-side,
    .phil__split-main {
        width: 100%
    }

    .phil__card-grid {
        grid-template-columns: 1fr
    }

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

    .phil__data-num {
        font-size: 27px
    }

    .phil__story-layout {
        flex-direction: column;
        gap: 24px
    }

    .phil__story-sidebar {
        width: 100%
    }
}

@media (max-width: 480px) {
    .phil__hero {
        padding: 24px 12px
    }

    .phil__hero h1 {
        font-size: 21px
    }

    .phil__split {
        padding: 24px 12px
    }

    .phil__metrics {
        padding: 24px 12px
    }

    .phil__story {
        padding: 24px 12px
    }

    .phil__data-box {
        padding: 12px
    }

    .phil__card {
        padding: 12px
    }
}

.svc {
    background: #FFF;
    color: #1a1a1a;
    margin: 0;
    padding: 0
}

.svc__gradient-intro {
    background: linear-gradient(127deg, #FCF157 0%, #EE375D 50%, #FCF157 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
    animation: svc__bg-rotate 18s linear infinite
}

@keyframes svc__bg-rotate {
    0% {
        background: linear-gradient(127deg, #FCF157 0%, #EE375D 50%, #FCF157 100%)
    }

    50% {
        background: linear-gradient(217deg, #FCF157 0%, #EE375D 50%, #FCF157 100%)
    }

    100% {
        background: linear-gradient(127deg, #FCF157 0%, #EE375D 50%, #FCF157 100%)
    }
}

.svc__intro-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.svc__giant-letter {
    font-size: 320px;
    font-weight: 900;
    line-height: 1;
    opacity: .08;
    position: absolute;
    top: -80px;
    right: 48px;
    color: #000;
    pointer-events: none;
    user-select: none
}

.svc__intro-h1 {
    font-size: 68px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #000
}

.svc__intro-h1 span {
    text-decoration: underline;
    text-decoration-color: #EE375D;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px
}

.svc__intro-txt {
    font-size: 21px;
    line-height: 1.6;
    margin: 0;
    max-width: 720px;
    color: #000
}

.svc__diamond-divider {
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 12px, #EE375D 12px, #EE375D 16px, transparent 16px, transparent 28px);
    margin: 0
}

.svc__offerings {
    padding: 96px 24px;
    background: #F2F2F2
}

.svc__offerings-container {
    max-width: 1170px;
    margin: 0 auto
}

.svc__offerings-h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 48px;
    color: #1a1a1a
}

.svc__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.svc__card {
    background: #FFF;
    border-radius: 6px;
    padding: 24px;
    box-shadow: -1px 4px 14px 0 #fcf15717;
    transition: transform .15s ease-out, box-shadow .15s ease-out;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.svc__card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 10px 60px 0 #fcf1571c
}

.svc__card-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0 24px;
    filter: grayscale(100%);
    transition: filter .18s ease
}

.svc__card:hover .svc__card-img-wrapper {
    filter: grayscale(0%)
}

.svc__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.svc__card-h3 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1a1a1a
}

.svc__card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #4a4a4a;
    flex-grow: 1
}

.svc__card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 24px;
    padding: 12px 0 0;
    border-top: 1px solid #e3e3e3
}

.svc__meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a6a
}

.svc__meta-label {
    font-weight: 600;
    color: #2a2a2a
}

.svc__card-price {
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    color: #EE375D;
    margin: 0 0 24px
}

.svc__card-btn {
    background: #EE375D;
    color: #FFF;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s ease, transform .12s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center
}

.svc__card-btn:hover {
    background: #d42d4f;
    transform: scale(1.02)
}

.svc__card-btn:active {
    transform: scale(0.98)
}

.svc__split-bg {
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(152deg, #FFF 0%, #FFF 48%, #FCF157 48%, #FCF157 100%)
}

.svc__split-container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.svc__split-h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1a1a1a
}

.svc__split-txt {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #2a2a2a;
    max-width: 680px
}

.svc__split-txt:last-child {
    margin: 0
}

.svc__icon-feature {
    padding: 96px 24px;
    background: #FFF
}

.svc__icon-container {
    max-width: 1170px;
    margin: 0 auto
}

.svc__icon-h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 48px;
    color: #1a1a1a;
    text-align: center
}

.svc__icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px
}

.svc__icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.svc__icon-svg-wrapper {
    width: 96px;
    height: 96px;
    margin: 0 0 24px;
    position: relative
}

.svc__icon-svg {
    width: 100%;
    height: 100%
}

.svc__icon-circle {
    fill: none;
    stroke: #EE375D;
    stroke-width: 2;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: svc__trace-outline 3s ease-in-out infinite
}

@keyframes svc__trace-outline {
    0% {
        stroke-dashoffset: 283
    }

    50% {
        stroke-dashoffset: 0
    }

    100% {
        stroke-dashoffset: 283
    }
}

.svc__icon-shape {
    fill: #FCF157
}

.svc__icon-h3 {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1a1a1a
}

.svc__icon-txt {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.svc__metrics {
    padding: 96px 24px;
    background: #F2F2F2;
    position: relative
}

.svc__metrics-abbr {
    position: absolute;
    top: 24px;
    left: 48px;
    font-size: 280px;
    font-weight: 900;
    line-height: 1;
    color: #ee375d0f;
    pointer-events: none;
    user-select: none
}

.svc__metrics-container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.svc__metrics-overline {
    width: 80px;
    height: 4px;
    background: #EE375D;
    margin: 0 0 12px
}

.svc__metrics-h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 48px;
    color: #1a1a1a
}

.svc__metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.svc__metric-card {
    background: #FFF;
    border-radius: 10px;
    padding: 24px;
    box-shadow: inset -1px 2px 4px 0 #ee375d12;
    transition: transform .14s ease
}

.svc__metric-card:hover {
    transform: scale(1.03)
}

.svc__metric-number {
    font-size: 51px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 8px;
    color: #EE375D;
    animation: svc__pulse-number 2s ease-in-out infinite
}

@keyframes svc__pulse-number {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .7
    }
}

.svc__metric-label {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.svc__cta-block {
    padding: 96px 24px;
    background: #FFF;
    text-align: center
}

.svc__cta-container {
    max-width: 1170px;
    margin: 0 auto
}

.svc__cta-h2 {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1a1a1a
}

.svc__cta-txt {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 0 48px;
    color: #2a2a2a;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.svc__cta-btn {
    background: #FCF157;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 24px 48px;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    transition: background .16s ease-out, transform .16s ease-out;
    text-decoration: none;
    display: inline-block
}

.svc__cta-btn:hover {
    background: #ebe443;
    transform: scale(1.05)
}

.svc__cta-btn:active {
    transform: scale(0.97)
}

@media (max-width: 768px) {
    .svc__intro-h1 {
        font-size: 51px
    }

    .svc__giant-letter {
        font-size: 180px;
        top: -40px;
        right: 24px
    }

    .svc__offerings-h2,
    .svc__split-h2,
    .svc__icon-h2,
    .svc__metrics-h2,
    .svc__cta-h2 {
        font-size: 27px
    }

    .svc__intro-txt,
    .svc__split-txt,
    .svc__cta-txt {
        font-size: 15px
    }

    .svc__card-grid {
        grid-template-columns: 1fr
    }

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

    .svc__metrics-grid {
        grid-template-columns: 1fr
    }

    .svc__metrics-abbr {
        font-size: 140px;
        top: 12px;
        left: 24px
    }

    .svc__gradient-intro,
    .svc__offerings,
    .svc__split-bg,
    .svc__icon-feature,
    .svc__metrics,
    .svc__cta-block {
        padding: 48px 24px
    }
}

@media (max-width: 480px) {
    .svc__intro-h1 {
        font-size: 27px
    }

    .svc__giant-letter {
        font-size: 120px
    }

    .svc__card-h3,
    .svc__card-price {
        font-size: 21px
    }

    .svc__metric-number {
        font-size: 27px
    }

    .svc__cta-btn {
        padding: 12px 24px;
        font-size: 15px
    }
}

.reach {
    background: #fff;
    color: #1d1d1d;
    overflow-x: clip
}

.reach__intro {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px 96px;
    overflow: hidden
}

.reach__intro-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle at 100% 0%, #FCF157 0%, #fcf15708 68%);
    pointer-events: none;
    z-index: 1
}

.reach__intro-circles {
    position: absolute;
    top: 48px;
    right: 96px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 2
}

.reach__intro-circle {
    position: absolute;
    border: 1px solid #ee375d1c;
    border-radius: 999px;
    animation: reach-breathe 8s ease-in-out infinite
}

.reach__intro-circle:nth-child(1) {
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    animation-delay: 0s
}

.reach__intro-circle:nth-child(2) {
    top: 80px;
    right: 20px;
    width: 180px;
    height: 180px;
    animation-delay: 2s
}

.reach__intro-circle:nth-child(3) {
    bottom: 40px;
    left: 60px;
    width: 100px;
    height: 100px;
    animation-delay: 4s
}

@keyframes reach-breathe {

    0%,
    100% {
        opacity: .08;
        transform: scale(1)
    }

    50% {
        opacity: .16;
        transform: scale(1.12)
    }
}

.reach__intro-content {
    position: relative;
    z-index: 3;
    max-width: 580px
}

.reach__intro-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    margin-bottom: 24px;
    filter: grayscale(100%);
    border-radius: 4px
}

.reach__intro-h {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.reach__intro-desc {
    font-size: 21px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #3d3d3d
}

.reach__intro-desc:last-child {
    margin-bottom: 0
}

.reach__form-wrap {
    background: linear-gradient(173deg, #F2F2F2 0%, #fff 50%);
    position: relative;
    padding: 96px 24px
}

.reach__form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1170px;
    height: 1px;
    background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x
}

.reach__form-inner {
    max-width: 1170px;
    margin: 0 auto;
    position: relative
}

.reach__form-abbr {
    position: absolute;
    top: -48px;
    right: 24px;
    font-size: 240px;
    line-height: 1;
    font-weight: 700;
    color: #fcf15717;
    pointer-events: none;
    user-select: none
}

.reach__form-top {
    max-width: 680px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2
}

.reach__form-overline {
    display: inline-block;
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin-bottom: 12px
}

.reach__form-h {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.reach__form-note {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4d4d4d
}

.reach__form {
    max-width: 780px;
    position: relative;
    z-index: 2
}

.reach__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.reach__form-field {
    display: flex;
    flex-direction: column
}

.reach__form-label {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1d1d1d
}

.reach__form-input {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease
}

.reach__form-input:focus {
    outline: none;
    border-color: #FCF157;
    box-shadow: -1px 2px 4px 0 #fcf15712
}

.reach__form-input::placeholder {
    color: #8d8d8d
}

.reach__form-select {
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.6;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231d1d1d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px
}

.reach__form-select:focus {
    outline: none;
    border-color: #FCF157;
    box-shadow: -1px 2px 4px 0 #fcf15712
}

.reach__form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px
}

.reach__form-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #d0d0d0;
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #EE375D
}

.reach__form-privacy-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4d4d4d
}

.reach__form-privacy-text a {
    color: #EE375D;
    text-decoration: none;
    transition: color .12s ease
}

.reach__form-privacy-text a:hover {
    color: #c72a4a
}

.reach__form-submit {
    padding: 12px 48px;
    background: #EE375D;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.reach__form-submit:hover {
    background: #d63152;
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.reach__form-submit:active {
    transform: translateY(1px)
}

.reach__form-submit:focus {
    outline: 2px solid #FCF157;
    outline-offset: 2px
}

.reach__details {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.reach__details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1170px;
    height: 1px;
    background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x
}

.reach__details-inner {
    max-width: 1170px;
    margin: 0 auto
}

.reach__details-h {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 48px;
    font-weight: 700;
    position: relative
}

.reach__details-h::before {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: #EE375D;
    margin-bottom: 12px
}

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

.reach__info-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 24px;
    position: relative;
    box-shadow: inset -1px 2px 4px 0 #ee375d08;
    transition: box-shadow .18s ease
}

.reach__info-card:hover {
    box-shadow: inset -1px 4px 14px 0 #ee375d0f
}

.reach__info-card:hover .reach__info-icon {
    animation: reach-icon-bounce .4s ease
}

@keyframes reach-icon-bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.reach__info-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: #FCF157;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: #1d1d1d
}

.reach__info-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    transition: transform .18s ease
}

.reach__info-icon svg {
    width: 100%;
    height: 100%
}

.reach__info-label {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 8px;
    font-weight: 600;
    color: #1d1d1d
}

.reach__info-value {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4d4d4d;
    word-break: break-word
}

.reach__info-value a {
    color: #EE375D;
    text-decoration: none;
    transition: color .12s ease
}

.reach__info-value a:hover {
    color: #c72a4a
}

.reach__info-value a::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #EE375D;
    border-radius: 999px;
    margin-left: 4px;
    vertical-align: middle
}

@media (min-width: 768px) {
    .reach__intro {
        padding: 96px 24px
    }

    .reach__intro-content {
        max-width: 680px
    }

    .reach__intro-h {
        font-size: 68px
    }

    .reach__form-grid {
        grid-template-columns: 1fr 1fr
    }

    .reach__form-field.full {
        grid-column: 1 / -1
    }

    .reach__details-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width: 1280px) {
    .reach__details-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.lrn-prog {
    background: #fff;
    color: #1d1d1d;
    overflow-x: clip
}

.lrn-prog__scan {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: .03;
    overflow: hidden
}

.lrn-prog__scan::before,
.lrn-prog__scan::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #1d1d1d 50%, transparent 100%);
    animation: scanDrift 8s linear infinite
}

.lrn-prog__scan::before {
    top: 20%
}

.lrn-prog__scan::after {
    top: 60%;
    animation-delay: 4s
}

@keyframes scanDrift {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(100vh)
    }
}

.lrn-prog__anchor {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.lrn-prog__anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #F2F2F2
}

.lrn-prog__anchor-txt {
    order: 2;
    padding: 24px 0
}

.lrn-prog__anchor-vis {
    order: 1;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: -1px 4px 14px 0 #fcf15717
}

.lrn-prog__anchor-vis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, #1d1d1d73 0%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.lrn-prog__anchor-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: blur(3px);
    transition: filter .18s ease-out
}

.lrn-prog__anchor-vis:hover .lrn-prog__anchor-img {
    filter: blur(0)
}

.lrn-prog__anchor-label {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #EE375D;
    margin: 0 0 12px
}

.lrn-prog__anchor-hd {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.lrn-prog__anchor-hd span {
    background: linear-gradient(135deg, #FCF157 0%, #EE375D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn-prog__anchor-desc {
    font-size: 21px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

@media (max-width: 768px) {
    .lrn-prog__anchor {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .lrn-prog__anchor-txt {
        order: 1
    }

    .lrn-prog__anchor-vis {
        order: 2
    }

    .lrn-prog__anchor-img {
        height: 320px
    }

    .lrn-prog__anchor-hd {
        font-size: 27px
    }

    .lrn-prog__anchor-desc {
        font-size: 15px
    }
}

.lrn-prog__structure {
    background: #F2F2F2;
    padding: 96px 0;
    position: relative
}

.lrn-prog__structure::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 0 0 50% 50%
}

.lrn-prog__structure-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.lrn-prog__structure-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start
}

.lrn-prog__structure-aside {
    position: sticky;
    top: 96px
}

.lrn-prog__structure-hd {
    font-size: 27px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 700;
    position: relative;
    padding-top: 12px
}

.lrn-prog__structure-hd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: #EE375D
}

.lrn-prog__structure-intro {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.lrn-prog__structure-main {
    background: #fff;
    border-radius: 6px;
    padding: 48px;
    box-shadow: inset -1px 2px 4px 0 #ee375d12
}

.lrn-prog__diagram {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog__diagram-row {
    display: flex;
    align-items: center;
    gap: 24px
}

.lrn-prog__diagram-box {
    flex: 1;
    background: linear-gradient(135deg, #FCF157 0%, #F2F2F2 100%);
    border-radius: 4px;
    padding: 24px;
    position: relative;
    transition: transform .15s ease
}

.lrn-prog__diagram-box:hover {
    transform: translateY(-4px)
}

.lrn-prog__diagram-box.accent {
    background: linear-gradient(135deg, #EE375D 0%, #F2F2F2 100%)
}

.lrn-prog__diagram-ttl {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 700;
    color: #1d1d1d
}

.lrn-prog__diagram-txt {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.lrn-prog__diagram-arrow {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative
}

.lrn-prog__diagram-arrow svg {
    width: 100%;
    height: 100%;
    fill: #EE375D
}

.lrn-prog__diagram-connector {
    width: 2px;
    height: 24px;
    background: #EE375D;
    margin: 0 auto
}

.lrn-prog__img-block {
    margin: 48px 0 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.lrn-prog__img-block img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter .12s ease
}

.lrn-prog__img-block:hover img {
    filter: blur(0)
}

.lrn-prog__callout {
    background: #FCF157;
    padding: 24px;
    border-radius: 6px;
    margin: 48px 0 0;
    position: relative
}

.lrn-prog__callout::before {
    content:'{';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 68px;
    line-height: 1;
    color: #EE375D;
    font-weight: 700
}

.lrn-prog__callout::after {
    content: '}';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 68px;
    line-height: 1;
    color: #EE375D;
    font-weight: 700
}

.lrn-prog__callout-txt {
    font-size: 21px;
    line-height: 1.6;
    margin: 0;
    color: #1d1d1d;
    font-weight: 600
}

.lrn-prog__callout-txt mark {
    background: #EE375D;
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px
}

@media (max-width: 1280px) {
    .lrn-prog__structure-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .lrn-prog__structure-aside {
        position: static
    }

    .lrn-prog__callout::before,
    .lrn-prog__callout::after {
        display: none
    }
}

@media (max-width: 768px) {
    .lrn-prog__structure {
        padding: 48px 0
    }

    .lrn-prog__structure-main {
        padding: 24px
    }

    .lrn-prog__diagram-row {
        flex-direction: column;
        gap: 12px
    }

    .lrn-prog__diagram-arrow {
        transform: rotate(90deg)
    }

    .lrn-prog__structure-hd {
        font-size: 21px
    }

    .lrn-prog__diagram-ttl {
        font-size: 15px
    }

    .lrn-prog__img-block img {
        height: 240px
    }
}

@media (max-width: 480px) {
    .lrn-prog__anchor {
        padding: 24px 12px
    }

    .lrn-prog__structure-wrap {
        padding: 0 12px
    }

    .lrn-prog__structure-main {
        padding: 12px
    }

    .lrn-prog__diagram-box {
        padding: 12px
    }

    .lrn-prog__callout {
        padding: 12px;
        margin: 24px 0 0
    }

    .lrn-prog__img-block {
        margin: 24px 0 0
    }
}

.abt {
    max-width: 1170px;
    margin: 0 auto;
    background: #fff
}

.abt__intro {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 96px 24px;
    background: linear-gradient(127deg, #FCF157 0%, #FCF157 50%, #F2F2F2 50%, #F2F2F2 100%);
    position: relative;
    overflow: hidden
}

.abt__intro::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background: #ee375d1f;
    top: 24px;
    left: 48px
}

.abt__intro::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #ee375d17;
    bottom: 48px;
    right: 96px
}

.abt__intro-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

.abt__intro-dots span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: #ee375d14
}

.abt__intro-dots span:nth-child(1) {
    top: 15%;
    left: 12%
}

.abt__intro-dots span:nth-child(2) {
    top: 28%;
    right: 18%
}

.abt__intro-dots span:nth-child(3) {
    bottom: 22%;
    left: 25%
}

.abt__intro-dots span:nth-child(4) {
    top: 42%;
    right: 35%
}

.abt__intro-dots span:nth-child(5) {
    bottom: 38%;
    right: 8%
}

.abt__intro-dots span:nth-child(6) {
    top: 68%;
    left: 42%
}

.abt__intro-img-col {
    flex: 0 0 280px;
    position: relative
}

.abt__intro-img-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 4px 14px 0 #fcf15717
}

.abt__intro-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ee375d52 0%, transparent 65%);
    z-index: 1;
    pointer-events: none
}

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

.abt__intro-content {
    flex: 1;
    padding: 0 24px
}

.abt__intro-h {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #1a1a2e;
    font-weight: 700
}

.abt__intro-tag {
    font-size: 21px;
    line-height: 1.6;
    color: #2d2d44;
    margin: 0 0 24px
}

.abt__intro-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.abt__intro-link {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    border-radius: 2px;
    transition: transform .15s ease-out, box-shadow .12s ease
}

.abt__intro-link.primary {
    background: #EE375D;
    color: #fff;
    box-shadow: -1px 2px 4px 0 #ee375d12
}

.abt__intro-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: -1px 4px 14px 0 #ee375d17
}

.abt__intro-link.secondary {
    background: #fff;
    color: #2d2d44;
    border: 1px solid #d4d4d8
}

.abt__intro-link.secondary:hover {
    background: #F2F2F2;
    border-color: #b8b8c2
}

.abt__story {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.abt__story::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e4e4e7
}

.abt__story-inner {
    max-width: 920px;
    margin: 0 auto
}

.abt__story-h {
    font-size: 27px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 8px;
    font-weight: 600;
    position: relative;
    padding-top: 24px
}

.abt__story-h::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: #FCF157
}

.abt__story-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #3f3f52;
    margin: 0 0 24px
}

.abt__story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.abt__story-box {
    background: #F2F2F2;
    padding: 24px;
    border-radius: 4px;
    box-shadow: inset -1px 2px 4px 0 #fcf15712
}

.abt__story-box-h {
    font-size: 21px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 12px;
    font-weight: 600
}

.abt__story-box-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #3f3f52;
    margin: 0
}

.abt__team {
    padding: 96px 24px;
    background: #EE375D;
    position: relative;
    overflow: hidden
}

.abt__team-bg-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcf15714;
    opacity: 0;
    animation: abt-fade-cycle 8s ease-in-out infinite;
    pointer-events: none
}

@keyframes abt-fade-cycle {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.abt__team-inner {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt__team-h {
    font-size: 27px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 48px;
    font-weight: 600;
    text-align: center
}

.abt__team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.abt__team-card {
    background: #fffffff2;
    border-radius: 6px;
    padding: 24px;
    box-shadow: -1px 4px 14px 0 #ee375d17;
    transition: transform .18s ease, box-shadow .15s ease-out
}

.abt__team-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 10px 60px 0 #ee375d1c
}

.abt__team-card-name {
    font-size: 21px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 4px;
    font-weight: 600
}

.abt__team-card-role {
    font-size: 15px;
    line-height: 1.6;
    color: #EE375D;
    margin: 0 0 12px;
    font-weight: 500
}

.abt__team-card-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #3f3f52;
    margin: 0
}

.abt__approach {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.abt__approach-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
    opacity: .06
}

.abt__approach-deco svg {
    width: 100%;
    height: 100%
}

.abt__approach-inner {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt__approach-h {
    font-size: 27px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 8px;
    font-weight: 600;
    position: relative;
    padding-top: 24px
}

.abt__approach-h::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: #EE375D
}

.abt__approach-lead {
    font-size: 15px;
    line-height: 1.9;
    color: #3f3f52;
    margin: 0 0 48px
}

.abt__approach-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start
}

.abt__approach-img-col {
    flex: 0 0 360px
}

.abt__approach-img-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #FCF157;
    box-shadow: -1px 4px 14px 0 #fcf15717
}

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

.abt__approach-content {
    flex: 1
}

.abt__approach-checklist {
    background: #F2F2F2;
    padding: 24px;
    border-radius: 6px;
    box-shadow: inset -1px 2px 4px 0 #ee375d12
}

.abt__approach-checklist-h {
    font-size: 21px;
    line-height: 1.2;
    color: #1a1a2e;
    margin: 0 0 12px;
    font-weight: 600
}

.abt__approach-checklist-progress {
    font-size: 15px;
    line-height: 1.6;
    color: #EE375D;
    margin: 0 0 24px;
    font-weight: 500
}

.abt__approach-checklist-items {
    list-style: none;
    padding: 0;
    margin: 0
}

.abt__approach-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #3f3f52
}

.abt__approach-checklist-item:last-child {
    margin-bottom: 0
}

.abt__approach-checklist-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px
}

.abt__approach-checklist-item.done .abt__approach-checklist-check {
    background: #FCF157
}

.abt__approach-checklist-item.done .abt__approach-checklist-check::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #1a1a2e;
    border-bottom: 2px solid #1a1a2e;
    transform: rotate(-45deg) translateY(-1px)
}

.abt__approach-checklist-item.pending .abt__approach-checklist-check {
    background: #d4d4d8
}

.abt__approach-txt-block {
    margin-top: 24px
}

.abt__approach-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #3f3f52;
    margin: 0 0 12px
}

.abt__approach-txt:last-child {
    margin-bottom: 0
}

.abt__hover-chars {
    display: inline
}

.abt__hover-chars span {
    display: inline-block;
    transition: color .12s ease
}

.abt__hover-chars:hover span:nth-child(1) {
    color: #EE375D;
    transition-delay: 0s
}

.abt__hover-chars:hover span:nth-child(2) {
    color: #EE375D;
    transition-delay: .02s
}

.abt__hover-chars:hover span:nth-child(3) {
    color: #EE375D;
    transition-delay: .04s
}

.abt__hover-chars:hover span:nth-child(4) {
    color: #EE375D;
    transition-delay: .06s
}

.abt__hover-chars:hover span:nth-child(5) {
    color: #EE375D;
    transition-delay: .08s
}

.abt__hover-chars:hover span:nth-child(6) {
    color: #EE375D;
    transition-delay: .1s
}

.abt__hover-chars:hover span:nth-child(7) {
    color: #EE375D;
    transition-delay: .12s
}

.abt__hover-chars:hover span:nth-child(8) {
    color: #EE375D;
    transition-delay: .14s
}

.abt__hover-chars:hover span:nth-child(9) {
    color: #EE375D;
    transition-delay: .16s
}

.abt__hover-chars:hover span:nth-child(10) {
    color: #EE375D;
    transition-delay: .18s
}

@media (max-width: 1280px) {
    .abt__intro {
        padding: 48px 24px
    }

    .abt__intro-img-col {
        flex: 0 0 240px
    }

    .abt__intro-img-wrap {
        height: 360px
    }

    .abt__intro-h {
        font-size: 51px
    }

    .abt__team-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .abt__approach-flex {
        gap: 24px
    }

    .abt__approach-img-col {
        flex: 0 0 300px
    }

    .abt__approach-img-wrap {
        height: 400px
    }
}

@media (max-width: 768px) {
    .abt__intro {
        flex-direction: column;
        padding: 48px 24px
    }

    .abt__intro-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .abt__intro-img-wrap {
        height: 320px
    }

    .abt__intro-content {
        padding: 0
    }

    .abt__intro-h {
        font-size: 27px
    }

    .abt__intro-tag {
        font-size: 15px
    }

    .abt__story {
        padding: 48px 24px
    }

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

    .abt__team {
        padding: 48px 24px
    }

    .abt__team-grid {
        grid-template-columns: 1fr
    }

    .abt__approach {
        padding: 48px 24px
    }

    .abt__approach-flex {
        flex-direction: column
    }

    .abt__approach-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .abt__approach-img-wrap {
        height: 280px
    }

    .abt__approach-h {
        font-size: 21px
    }
}

@media (max-width: 480px) {
    .abt__intro {
        padding: 24px 12px
    }

    .abt__intro-img-wrap {
        height: 240px
    }

    .abt__intro-h {
        font-size: 21px
    }

    .abt__intro-links {
        flex-direction: column
    }

    .abt__intro-link {
        text-align: center
    }

    .abt__story {
        padding: 24px 12px
    }

    .abt__story-h {
        font-size: 21px
    }

    .abt__team {
        padding: 24px 12px
    }

    .abt__team-h {
        font-size: 21px
    }

    .abt__approach {
        padding: 24px 12px
    }

    .abt__approach-h {
        font-size: 21px
    }

    .abt__approach-img-wrap {
        height: 220px
    }
}

.success-page {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-page .confirm-wrap {
    text-align: center;
    max-width: 580px
}

.success-page .icon-check {
    width: 88px;
    height: 88px;
    margin: 0 auto 48px;
    border: 4px solid #FCF157;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FCF157 0%, #FCF157 50%, #F2F2F2 50%, #F2F2F2 100%);
    box-shadow: -1px 4px 14px 0 #fcf15717;
    animation: checkAppear .15s ease-out
}

@keyframes checkAppear {
    from {
        transform: scale(0.85);
        opacity: 0
    }

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

.success-page .icon-check svg {
    width: 44px;
    height: 44px;
    stroke: #EE375D;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success-page .confirm-title {
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1a1a2e
}

.success-page .confirm-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0 0 48px
}

.success-page .action-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-page .btn-primary {
    display: inline-block;
    padding: 12px 48px;
    font-size: 21px;
    background: #EE375D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background .12s ease-out, transform .1s ease;
    box-shadow: -1px 2px 4px 0 #ee375d12
}

.success-page .btn-primary:hover {
    background: #d62e50;
    transform: translateY(-1px)
}

.success-page .btn-primary:active {
    transform: translateY(0)
}

.success-page .btn-secondary {
    display: inline-block;
    padding: 12px 48px;
    font-size: 21px;
    background: #F2F2F2;
    color: #2a2a3e;
    text-decoration: none;
    border-radius: 4px;
    transition: background .15s ease, transform .1s ease
}

.success-page .btn-secondary:hover {
    background: #e5e5e5;
    transform: translateY(-1px)
}

.success-page .btn-secondary:active {
    transform: translateY(0)
}

.success-page .meta-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #F2F2F2
}

.success-page .meta-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #6a6a7e;
    margin: 0
}

.success-page .meta-info a {
    color: #EE375D;
    text-decoration: none;
    border-bottom: 1px solid #EE375D;
    transition: border-color .12s ease
}

.success-page .meta-info a:hover {
    border-bottom-color: transparent
}

@media (max-width: 768px) {
    .success-page {
        padding: 48px 24px
    }

    .success-page .confirm-title {
        font-size: 27px
    }

    .success-page .confirm-text {
        font-size: 15px
    }

    .success-page .action-group {
        flex-direction: column;
        align-items: stretch
    }

    .success-page .btn-primary,
    .success-page .btn-secondary {
        width: 100%;
        text-align: center
    }

    .success-page .icon-check {
        width: 68px;
        height: 68px;
        margin-bottom: 24px
    }

    .success-page .icon-check svg {
        width: 34px;
        height: 34px
    }
}