html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: break-word
}

.site-header {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    z-index: 100;
    overflow: hidden
}

.site-header::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F34D3C 0%, #07BCC1 100%)
}

.hdr-top {
    background: linear-gradient(100deg, #F34D3C 0%, #e03a2a 60%, #07BCC1 100%);
    padding: 8px 0
}

.hdr-top__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.hdr-top__contact {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.hdr-top__contact li {
    display: flex;
    align-items: center;
    gap: 8px
}

.hdr-top__contact a {
    color: #fff;
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.hdr-top__contact a:hover {
    opacity: .8
}

.hdr-top__contact a:focus {
    outline: 2px dashed #fff;
    outline-offset: 3px
}

.hdr-top__contact .pe-icon {
    color: #ffffffd9;
    font-size: 15px
}

.hdr-top__region {
    display: flex;
    align-items: center;
    gap: 8px
}

.region-label {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffffe6;
    letter-spacing: 0
}

.region-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 16px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0
}

.region-flag svg {
    width: 100%;
    height: 100%
}

.hdr-main {
    padding: 16px 0 0
}

.hdr-main__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    order: 2
}

.brand-block__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 4px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px 0 #f34d3c12 0 0 0 2px #07bcc12e
}

.brand-block__logo-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.brand-block__name {
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b1b1b;
    letter-spacing: 0
}

.brand-block__name span {
    color: #F34D3C
}

.hdr-nav {
    order: 1;
    flex: 1
}

.hdr-nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.hdr-nav__item {
    position: relative
}

.hdr-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    font-family: "Cormorant", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 20px;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), background .45s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px
}

.hdr-nav__link:hover {
    color: #F34D3C;
    background: #f34d3c0f
}

.hdr-nav__link:focus {
    outline: 2px dashed #F34D3C;
    outline-offset: 2px
}

.hdr-nav__link--active {
    color: #F34D3C
}

.hdr-bottom-bar {
    margin-top: 16px;
    height: 4px;
    background: linear-gradient(90deg, #f34d3c1f 0%, #07bcc11f 100%)
}

.site-footer {
    background: #1b2e30;
    position: relative
}

.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #07BCC1 0%, #F34D3C 100%)
}

.ftr-upper {
    padding: 64px 0 32px
}

.ftr-upper__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 220px;
    flex: 1
}

.ftr-brand__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 4px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px 0 #07bcc11a
}

.ftr-brand__logo-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.ftr-brand__name {
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff
}

.ftr-brand__name em {
    color: #07BCC1;
    font-style: normal
}

.ftr-brand__tagline {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffa6;
    font-style: italic;
    max-width: 260px
}

.ftr-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 200px
}

.ftr-col-head {
    font-family: "Cormorant", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #07BCC1;
    padding-bottom: 8px;
    border-bottom: 1px solid #07bcc140
}

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

.ftr-contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.ftr-contact__list .pe-icon {
    color: #07BCC1;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.ftr-contact__list a {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #fffc;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ftr-contact__list a:hover {
    color: #07BCC1
}

.ftr-contact__list a:focus {
    outline: 2px dashed #07BCC1;
    outline-offset: 2px
}

.ftr-contact__list span {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #fffc
}

.ftr-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 180px
}

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

.ftr-links__list a {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffbf;
    text-decoration: none;
    transition: color .55s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px
}

.ftr-links__list a:hover {
    color: #F34D3C
}

.ftr-links__list a:focus {
    outline: 2px dashed #F34D3C;
    outline-offset: 2px
}

.ftr-lower {
    border-top: 1px solid #ffffff14;
    padding: 24px 0
}

.ftr-lower__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.ftr-copy {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff73
}

.ftr-legal {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ftr-legal a {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff73;
    text-decoration: none;
    transition: color .6s ease-in-out
}

.ftr-legal a:hover {
    color: #ffffffd9
}

.ftr-legal a:focus {
    outline: 2px dashed #fff9;
    outline-offset: 2px
}

.consent-box {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    max-width: 340px;
    width: calc(100vw - 48px);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    padding: 24px;
    border-top: 3px solid #07BCC1
}

.consent-box__text {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0 0 16px
}

.consent-box__actions {
    display: flex;
    gap: 16px;
    align-items: center
}

.consent-btn {
    font-family: "Cormorant", serif;
    font-size: 15px;
    line-height: 1.2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.consent-btn--ok {
    color: #F34D3C
}

.consent-btn--ok:hover {
    color: #c73325
}

.consent-btn--ok:focus {
    outline: 2px dashed #F34D3C;
    outline-offset: 3px
}

.consent-btn--no {
    color: #555
}

.consent-btn--no:hover {
    color: #1b1b1b
}

.consent-btn--no:focus {
    outline: 2px dashed #555;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .hdr-main__inner {
        padding: 0 24px;
        flex-wrap: wrap;
        gap: 16px
    }

    .hdr-nav {
        order: 2;
        width: 100%
    }

    .brand-block {
        order: 1
    }

    .hdr-top__inner {
        padding: 0 24px
    }

    .ftr-upper__inner {
        padding: 0 24px
    }

    .ftr-lower__inner {
        padding: 0 24px
    }
}

@media (max-width: 768px) {
    .hdr-top__contact {
        gap: 16px
    }

    .hdr-nav__link {
        font-size: 15px;
        padding: 10px 12px
    }

    .ftr-upper__inner {
        flex-direction: column;
        gap: 32px
    }

    .ftr-lower__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .hdr-main__inner {
        padding: 0 16px
    }

    .hdr-top__inner {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px
    }

    .ftr-upper__inner {
        padding: 0 16px
    }

    .ftr-lower__inner {
        padding: 0 16px
    }
}

@media (max-width: 480px) {
    .hdr-top__contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px
    }

    .brand-block__name {
        font-size: 18px
    }

    .consent-box {
        left: 16px;
        bottom: 16px;
        width: calc(100vw - 32px)
    }
}

.policy-box {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 32px
}

.policy-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 24px
}

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

.policy-box ul {
    list-style-type: disc
}

.policy-box ol {
    list-style-type: decimal
}

.policy-box li {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 8px
}

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

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

.policy-box em,
.policy-box i {
    font-style: italic;
    color: #2a2a2a
}

.policy-box a {
    color: #07BCC1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.policy-box a:hover {
    color: #F34D3C;
    text-decoration-color: #F34D3C
}

.policy-box a:focus-visible {
    outline: 2px solid #07BCC1;
    outline-offset: 2px;
    border-radius: 0
}

.policy-box div {
    margin-bottom: 24px
}

@media (max-width: 1024px) {
    .policy-box {
        padding: 64px 24px
    }
}

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

    .policy-box p {
        font-size: 15px
    }

    .policy-box li {
        font-size: 15px
    }

    .policy-box ul,
    .policy-box ol {
        padding-left: 24px
    }
}

@media (max-width: 480px) {
    .policy-box {
        padding: 24px 16px
    }
}

.lpd {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.lpd .divider-grad {
    height: 2px;
    background: linear-gradient(90deg, #F34D3C 0%, #07BCC1 100%);
    border: none;
    margin: 0
}

.lpd .hero-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 64px 64px 32px;
    position: relative
}

.lpd .hero-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-right: 64px;
    position: relative;
    z-index: 1
}

.lpd .hero-right {
    flex: 0 0 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.lpd .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block
}

.lpd .hero-img-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, #ffffffb8 0%, #fff0 100%);
    pointer-events: none
}

.lpd .hero-circles {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0
}

.lpd .hero-circles span {
    position: absolute;
    border-radius: 36px;
    border: 1.5px solid #07BCC1;
    opacity: .13
}

.lpd .hero-circles span:nth-child(1) {
    inset: 0
}

.lpd .hero-circles span:nth-child(2) {
    inset: 24px
}

.lpd .hero-circles span:nth-child(3) {
    inset: 48px
}

.lpd .hero-circles span:nth-child(4) {
    inset: 72px
}

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

.lpd .tag {
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    background: #07bcc117;
    border-radius: 20px;
    padding: 4px 16px;
    font-weight: 600;
    letter-spacing: 0
}

.lpd .tag-level {
    font-size: 15px;
    line-height: 1.2;
    color: #F34D3C;
    background: #f34d3c17;
    border-radius: 20px;
    padding: 4px 16px;
    font-weight: 600
}

.lpd .hero-h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0
}

.lpd .hero-h1 em {
    font-style: normal;
    color: #F34D3C
}

.lpd .hero-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.lpd .hero-meta-item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    line-height: 1.2;
    color: #444
}

.lpd .hero-meta-item i {
    font-size: 18px;
    color: #07BCC1
}

.lpd .geo-shape {
    position: absolute;
    bottom: 32px;
    left: -24px;
    width: 80px;
    height: 80px;
    border: 2px solid #F34D3C;
    border-radius: 20px;
    opacity: .09;
    pointer-events: none;
    transform: rotate(18deg)
}

.lpd .geo-shape2 {
    position: absolute;
    top: 16px;
    left: 40%;
    width: 48px;
    height: 48px;
    border: 2px solid #07BCC1;
    border-radius: 0;
    opacity: .08;
    pointer-events: none;
    transform: rotate(32deg)
}

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

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

.lpd .hero-left {
    animation: scale-in .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.lpd .hero-right {
    animation: scale-in .7s cubic-bezier(0.22, 1, 0.36, 1) .12s both
}

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

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

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

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

.lpd .detail-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 64px;
    background: linear-gradient(180deg, #07bcc10d 0%, #fff 100%);
    align-items: flex-start
}

.lpd .detail-main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lpd .detail-aside {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lpd .price-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.lpd .price-card-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    font-weight: 600
}

.lpd .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 36px;
    background: #07BCC1;
    flex-shrink: 0
}

.lpd .price-big {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e
}

.lpd .price-big em {
    font-style: normal;
    font-size: 22px;
    color: #07BCC1;
    font-weight: 600
}

.lpd .price-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.lpd .price-note {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    border-left: 3px solid #07BCC1;
    border-top: 1px solid #07bcc12e;
    border-bottom: 1px solid #07bcc12e;
    border-right: none;
    padding: 8px 16px;
    border-radius: 0 20px 20px 0;
    background: #07bcc10a
}

.lpd .price-rows {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lpd .price-row-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    padding: 4px 0;
    border-bottom: 1px solid #07bcc11a
}

.lpd .price-row-item strong {
    color: #1b1b2e;
    font-weight: 700
}

.lpd .btn-enroll {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-radius: 20px;
    border: none;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, #F34D3C 0%, #c93327 100%);
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), color .45s ease-in-out
}

.lpd .btn-enroll::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: linear-gradient(180deg, #07BCC1 0%, #059ea3 100%);
    border-radius: 20px;
    transition: height .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.lpd .btn-enroll:hover::after {
    height: 100%
}

.lpd .btn-enroll span {
    position: relative;
    z-index: 1
}

.lpd .btn-enroll:hover {
    box-shadow: 0 10px 52px 0 #07bcc121
}

.lpd .btn-enroll:focus {
    outline: 3px solid #07BCC1;
    outline-offset: 2px
}

.lpd .btn-enroll:active {
    box-shadow: inset 0 2px 4px 0 #f34d3c2e
}

.lpd .desc-block {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lpd .desc-block h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0
}

.lpd .desc-block h2 em {
    font-style: normal;
    color: #07BCC1
}

.lpd .desc-body {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.lpd .desc-body-main {
    flex: 1 1 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333
}

.lpd .desc-body-main p {
    margin: 0 0 16px
}

.lpd .desc-body-main p:last-child {
    margin-bottom: 0
}

.lpd .desc-body-main h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b2e;
    margin: 24px 0 8px
}

.lpd .desc-body-main ul {
    margin: 0 0 16px;
    padding-left: 24px
}

.lpd .desc-body-main li {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px
}

.lpd .desc-body-main mark {
    background: #f34d3c1f;
    color: #c93327;
    border-radius: 0;
    padding: 0 4px
}

.lpd .desc-body-main figure {
    margin: 24px 0
}

.lpd .desc-body-main figcaption {
    font-size: 15px;
    color: #888;
    margin-top: 8px
}

.lpd .desc-body-main details {
    border: 1px solid #07bcc12e;
    border-radius: 20px;
    padding: 16px 24px;
    margin-bottom: 16px;
    background: #07bcc108
}

.lpd .desc-body-main summary {
    font-size: 18px;
    font-weight: 600;
    color: #1b1b2e;
    cursor: pointer
}

.lpd .side-note {
    flex: 0 0 160px;
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    padding: 16px;
    background: #f34d3c0a;
    border-radius: 20px;
    border-top: 2px solid #F34D3C;
    border-right: 2px solid #F34D3C;
    border-bottom: none;
    border-left: none;
    box-shadow: inset 2px 2px 4px 0 #f34d3c12
}

.lpd .prog-section {
    padding: 64px;
    background: #fff;
    position: relative
}

.lpd .prog-section-inner {
    position: relative
}

.lpd .prog-corner-circles {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0
}

.lpd .prog-corner-circles span {
    position: absolute;
    border-radius: 36px;
    border: 1.5px solid #F34D3C;
    opacity: .1
}

.lpd .prog-corner-circles span:nth-child(1) {
    inset: 0
}

.lpd .prog-corner-circles span:nth-child(2) {
    inset: 20px
}

.lpd .prog-corner-circles span:nth-child(3) {
    inset: 40px
}

.lpd .prog-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px
}

.lpd .prog-head h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0
}

.lpd .prog-head h2 em {
    font-style: normal;
    color: #F34D3C
}

.lpd .prog-head-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    max-width: 280px;
    text-align: right
}

.lpd .prog-cols {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.lpd .prog-text {
    flex: 1 1 0;
    font-size: 18px;
    line-height: 1.7;
    color: #333
}

.lpd .prog-text h2 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b2e;
    margin: 24px 0 8px
}

.lpd .prog-text p {
    margin: 0 0 16px
}

.lpd .prog-text p:last-child {
    margin-bottom: 0
}

.lpd .prog-text ul {
    margin: 0 0 16px;
    padding-left: 24px
}

.lpd .prog-text li {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 8px
}

.lpd .prog-text blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-radius: 20px;
    background: #07bcc10f;
    border-left: 4px solid #07BCC1;
    border-top: 1px solid #07bcc11f;
    border-bottom: 1px solid #07bcc11f;
    font-size: 18px;
    line-height: 1.7;
    color: #1b1b2e
}

.lpd .prog-text cite {
    display: block;
    font-size: 15px;
    color: #888;
    font-style: italic;
    margin-top: 8px
}

.lpd .prog-text dl {
    margin: 0 0 16px
}

.lpd .prog-text dt {
    font-size: 18px;
    font-weight: 700;
    color: #1b1b2e;
    margin-top: 16px
}

.lpd .prog-text dd {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-left: 24px
}

.lpd .prog-visual {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lpd .prog-stage-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s ease-in-out;
    animation: slide-right .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.lpd .prog-stage-card:hover {
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transform: translateX(-4px)
}

.lpd .stage-num {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #F34D3C;
    min-width: 32px
}

.lpd .stage-label {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    font-weight: 600
}

.lpd .metrics-section {
    padding: 64px;
    background: linear-gradient(180deg, #f34d3c0f 0%, #07bcc10f 100%);
    position: relative
}

.lpd .metrics-head {
    margin-bottom: 32px
}

.lpd .metrics-head h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0 0 8px
}

.lpd .metrics-head h2 em {
    font-style: normal;
    color: #07BCC1
}

.lpd .metrics-head p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
    margin: 0
}

.lpd .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px
}

.lpd .metric-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 14px 0 #07bcc11a;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scale-in .65s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.lpd .metric-card:hover {
    box-shadow: 0 10px 52px 0 #07bcc121
}

.lpd .metric-val {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #F34D3C
}

.lpd .metric-val.teal {
    color: #07BCC1
}

.lpd .metric-label {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-weight: 600
}

.lpd .floating-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.lpd .floating-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 20px;
    background: linear-gradient(180deg, #07BCC1 0%, #059ea3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lpd .floating-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.lpd .floating-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0
}

.lpd .floating-card-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b2e
}

.lpd .floating-rows {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lpd .floating-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 4px 0;
    border-bottom: 1px solid #07bcc11a
}

.lpd .floating-row:last-child {
    border-bottom: none
}

.lpd .floating-row strong {
    color: #1b1b2e;
    font-weight: 700
}

.lpd .floating-status {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #07BCC1;
    font-weight: 600
}

.lpd .dot-status {
    width: 8px;
    height: 8px;
    border-radius: 36px;
    background: #07BCC1
}

@media (max-width: 1024px) {
    .lpd .hero-row {
        padding: 32px 32px 24px;
        flex-direction: column
    }

    .lpd .hero-left {
        padding-right: 0
    }

    .lpd .hero-right {
        flex: 0 0 auto;
        height: 280px
    }

    .lpd .detail-row {
        flex-direction: column;
        padding: 32px
    }

    .lpd .detail-aside {
        flex: 0 0 auto;
        width: 100%
    }

    .lpd .prog-section {
        padding: 32px
    }

    .lpd .prog-cols {
        flex-direction: column
    }

    .lpd .prog-visual {
        flex: 0 0 auto;
        width: 100%
    }

    .lpd .metrics-section {
        padding: 32px
    }

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

    .lpd .floating-card {
        flex-direction: column
    }

    .lpd .desc-body {
        flex-direction: column
    }

    .lpd .side-note {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (max-width: 768px) {
    .lpd .hero-row {
        padding: 24px 16px 16px
    }

    .lpd .hero-h1 {
        font-size: 28px
    }

    .lpd .detail-row {
        padding: 24px 16px
    }

    .lpd .prog-section {
        padding: 24px 16px
    }

    .lpd .metrics-section {
        padding: 24px 16px
    }

    .lpd .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .lpd .prog-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .lpd .prog-head-sub {
        text-align: left;
        max-width: 100%
    }

    .lpd .price-big {
        font-size: 28px
    }
}

@media (max-width: 480px) {
    .lpd .metrics-grid {
        grid-template-columns: 1fr
    }

    .lpd .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .lpd .hero-right {
        height: 200px
    }
}

.opn {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.opn .drw-line {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.opn .drw-line svg {
    width: 100%;
    height: 32px
}

.opn .pitch {
    padding: 64px;
    position: relative
}

.opn .pitch-grid {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto
}

.opn .pitch-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1
}

.opn .pitch-ghost {
    position: absolute;
    top: -16px;
    left: -24px;
    font-size: 200px;
    line-height: 1.2;
    font-weight: 900;
    color: #07BCC1;
    opacity: .06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap
}

.opn .pitch-label {
    font-size: 15px;
    line-height: 1.7;
    color: #07BCC1;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600
}

.opn .pitch-h1 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0
}

.opn .pitch-h1 .accent {
    color: #F34D3C
}

.opn .pitch-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 520px
}

.opn .pitch-desc+.pitch-desc {
    margin-top: 0
}

.opn .pitch-right {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opn .pitch-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    position: relative
}

.opn .pitch-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: filter .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .pitch-card:hover img {
    filter: saturate(1)
}

.opn .pitch-card-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, transparent 40%, #07bcc12e 100%);
    pointer-events: none;
    border-radius: 20px
}

.opn .pitch-stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.opn .pitch-stat {
    flex: 1 1 0;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 2px 6px 0 #07bcc112;
    border-top: 3px solid #07BCC1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.opn .pitch-stat-num {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #F34D3C
}

.opn .pitch-stat-lbl {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

@keyframes clr-arrive {
    from {
        color: #07BCC1;
        opacity: 0
    }

    to {
        color: #F34D3C;
        opacity: 1
    }
}

.opn .pitch-h1 .accent {
    animation: clr-arrive .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.opn .invest {
    background: linear-gradient(0deg, #fff 0%, #07bcc112 100%);
    padding: 64px
}

.opn .invest-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.opn .invest-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.opn .invest-h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 900;
    color: #222;
    margin: 0
}

.opn .invest-h2 .accent {
    color: #07BCC1
}

.opn .invest-body {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a
}

.opn .invest-aside {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opn .invest-note {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    border-left: 3px solid #F34D3C;
    border-top: 1px solid #f34d3c26;
    border-right: 1px solid #f34d3c14;
    padding: 16px;
    border-radius: 0 20px 20px 0;
    background: #fff;
    box-shadow: 0 2px 6px 0 #f34d3c12
}

.opn .invest-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.opn .invest-tier {
    background: #fff;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-shadow: 0 5px 14px 0 #07bcc11a;
    transition: box-shadow .5s ease-in-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .invest-tier:hover {
    box-shadow: 0 10px 52px 0 #07bcc121;
    transform: translateY(-2px)
}

.opn .invest-tier-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(0deg, #07BCC1 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.opn .invest-tier-icon svg {
    width: 20px;
    height: 20px
}

.opn .invest-tier-body {
    flex: 1 1 0
}

.opn .invest-tier-name {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #222
}

.opn .invest-tier-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666
}

.opn .mthd {
    padding: 64px;
    background: #fff;
    position: relative
}

.opn .mthd-bg-img {
    position: absolute;
    inset: 0;
    background-image: url(/feature_images/DSCN4310.jpg);
    background-size: cover;
    background-position: center;
    opacity: .06;
    pointer-events: none;
    border-radius: 0
}

.opn .mthd-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.opn .mthd-top {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.opn .mthd-head {
    flex: 0 0 420px
}

.opn .mthd-h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 900;
    color: #222;
    margin: 0 0 24px
}

.opn .mthd-h2 .accent {
    color: #F34D3C
}

.opn .mthd-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a
}

.opn .mthd-trust {
    flex: 1 1 0;
    background: linear-gradient(0deg, #F34D3C 0%, #fff 100%);
    border-radius: 36px;
    padding: 32px;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opn .mthd-trust-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff
}

.opn .mthd-review {
    background: #ffffffeb;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 6px 0 #f34d3c12
}

.opn .mthd-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333
}

.opn .mthd-review-author {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #F34D3C
}

.opn .mthd-review-role {
    font-size: 15px;
    line-height: 1.2;
    color: #888
}

.opn .mthd-cards {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.opn .mthd-card {
    flex: 1 1 0;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 5px 14px 0 #07bcc11a;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid #07BCC1;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .mthd-card:hover {
    box-shadow: 0 10px 52px 0 #07bcc121;
    transform: translateY(-3px)
}

.opn .mthd-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
}

.opn .mthd-card-h {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #222
}

.opn .mthd-card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.opn .mthd-img-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.opn .mthd-img-wrap {
    flex: 0 0 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.opn .mthd-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .mthd-img-wrap:hover img {
    filter: saturate(1)
}

.opn .mthd-quote-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.opn .mthd-quote {
    font-size: 22px;
    line-height: 1.7;
    color: #222;
    font-weight: 700;
    border-left: 4px solid #07BCC1;
    border-bottom: 1px solid #07bcc133;
    padding: 16px 24px;
    border-radius: 0 0 20px 0;
    background: #07bcc10a
}

.opn .mthd-quote-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #666
}

.opn .journey {
    padding: 64px;
    background: linear-gradient(0deg, #f34d3c0d 0%, #fff 100%)
}

.opn .journey-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.opn .journey-head {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-end
}

.opn .journey-h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 900;
    color: #222;
    margin: 0;
    flex: 0 0 500px
}

.opn .journey-h2 .accent {
    color: #07BCC1
}

.opn .journey-head-note {
    flex: 1 1 0;
    font-size: 18px;
    line-height: 1.7;
    color: #555
}

.opn .journey-phases {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.opn .journey-phase {
    background: #fff;
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    transition: box-shadow .55s ease-in-out, background .55s ease-in-out
}

.opn .journey-phase:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21;
    background: #07bcc108
}

.opn .journey-phase-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 900;
    color: #f34d3c1f;
    flex-shrink: 0;
    width: 64px;
    text-align: center
}

.opn .journey-phase-body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px
}

.opn .journey-phase-h {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    color: #222
}

.opn .journey-phase-p {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.opn .journey-phase-aside {
    flex: 0 0 220px;
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    padding-top: 8px;
    text-align: right
}

.opn .journey-bottom {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch
}

.opn .journey-img-wrap {
    flex: 0 0 380px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #07bcc121
}

.opn .journey-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: filter .7s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .journey-img-wrap:hover img {
    filter: saturate(1)
}

.opn .journey-closing {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.opn .journey-closing-h {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #222
}

.opn .journey-closing-p {
    font-size: 18px;
    line-height: 1.7;
    color: #444
}

.opn .journey-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(0deg, #F34D3C 0%, #ff7a6e 100%);
    padding: 16px 32px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.opn .journey-cta-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background: linear-gradient(0deg, #07BCC1 0%, #5de8eb 100%);
    transition: bottom .5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 20px
}

.opn .journey-cta-link:hover::before {
    bottom: 0
}

.opn .journey-cta-link span {
    position: relative;
    z-index: 1
}

@keyframes draw-outline {
    from {
        stroke-dashoffset: 800
    }

    to {
        stroke-dashoffset: 0
    }
}

.opn .mthd-trust {
    position: relative
}

.opn .mthd-trust-outline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 36px
}

.opn .mthd-trust-outline svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.opn .mthd-trust-outline svg rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: draw-outline 1.2s cubic-bezier(0.22, 1, 0.36, 1) .3s forwards;
    rx: 36;
    ry: 36
}

@media (max-width: 1024px) {
    .opn .pitch {
        padding: 64px 32px
    }

    .opn .pitch-grid {
        gap: 32px
    }

    .opn .pitch-right {
        flex: 0 0 280px
    }

    .opn .pitch-h1 {
        font-size: 52px
    }

    .opn .invest {
        padding: 64px 32px
    }

    .opn .invest-inner {
        gap: 32px
    }

    .opn .invest-aside {
        flex: 0 0 240px
    }

    .opn .mthd {
        padding: 64px 32px
    }

    .opn .mthd-head {
        flex: 0 0 320px
    }

    .opn .mthd-h2 {
        font-size: 38px
    }

    .opn .mthd-cards {
        flex-wrap: wrap
    }

    .opn .mthd-card {
        flex: 0 0 calc(50% - 8px)
    }

    .opn .journey {
        padding: 64px 32px
    }

    .opn .journey-h2 {
        font-size: 38px;
        flex: 0 0 360px
    }

    .opn .journey-img-wrap {
        flex: 0 0 280px
    }
}

@media (max-width: 768px) {
    .opn .pitch {
        padding: 32px 24px
    }

    .opn .pitch-grid {
        flex-direction: column;
        gap: 32px
    }

    .opn .pitch-right {
        flex: none;
        width: 100%
    }

    .opn .pitch-h1 {
        font-size: 52px
    }

    .opn .pitch-ghost {
        font-size: 120px
    }

    .opn .invest {
        padding: 32px 24px
    }

    .opn .invest-inner {
        flex-direction: column;
        gap: 32px
    }

    .opn .invest-aside {
        flex: none;
        width: 100%
    }

    .opn .mthd {
        padding: 32px 24px
    }

    .opn .mthd-top {
        flex-direction: column;
        gap: 32px
    }

    .opn .mthd-head {
        flex: none;
        width: 100%
    }

    .opn .mthd-h2 {
        font-size: 38px
    }

    .opn .mthd-cards {
        flex-direction: column
    }

    .opn .mthd-card {
        flex: none
    }

    .opn .mthd-img-row {
        flex-direction: column
    }

    .opn .mthd-img-wrap {
        flex: none;
        width: 100%
    }

    .opn .journey {
        padding: 32px 24px
    }

    .opn .journey-head {
        flex-direction: column;
        gap: 16px
    }

    .opn .journey-h2 {
        flex: none;
        font-size: 38px
    }

    .opn .journey-phase {
        flex-wrap: wrap
    }

    .opn .journey-phase-aside {
        flex: none;
        width: 100%;
        text-align: left
    }

    .opn .journey-bottom {
        flex-direction: column
    }

    .opn .journey-img-wrap {
        flex: none;
        width: 100%
    }
}

@media (max-width: 480px) {
    .opn .pitch-h1 {
        font-size: 38px
    }

    .opn .invest-h2 {
        font-size: 38px
    }

    .opn .mthd-h2 {
        font-size: 28px
    }

    .opn .journey-h2 {
        font-size: 28px
    }

    .opn .pitch {
        padding: 24px 16px
    }

    .opn .invest {
        padding: 24px 16px
    }

    .opn .mthd {
        padding: 24px 16px
    }

    .opn .journey {
        padding: 24px 16px
    }

    .opn .journey-phase {
        padding: 16px
    }

    .opn .mthd-trust {
        padding: 24px
    }
}

.abt-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.abt-pg .blur-load {
    animation: blurIn .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.abt-pg .blur-load-2 {
    animation: blurIn .7s .15s cubic-bezier(0.22, 1, 0.36, 1) both
}

.abt-pg .blur-load-3 {
    animation: blurIn .65s .28s cubic-bezier(0.22, 1, 0.36, 1) both
}

.abt-pg .blur-load-4 {
    animation: blurIn .6s .42s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes blurIn {
    from {
        filter: blur(8px);
        opacity: 0
    }

    to {
        filter: blur(0);
        opacity: 1
    }
}

.abt-pg .stripe-bg {
    position: relative
}

.abt-pg .stripe-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-52deg, transparent, transparent 18px, #f34d3c0a 18px, #f34d3c0a 20px);
    pointer-events: none;
    z-index: 0
}

.abt-pg .intro-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
    position: relative;
    z-index: 1;
    padding: 64px;
    gap: 64px;
    background: #fff
}

.abt-pg .intro-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    max-width: 680px
}

.abt-pg .intro-label {
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600
}

.abt-pg .intro-h1 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
    color: #1b1b1b
}

.abt-pg .intro-h1 .accent-half {
    color: #F34D3C
}

.abt-pg .intro-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #2e2e2e;
    margin: 0;
    max-width: 520px
}

.abt-pg .intro-desc-note {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    max-width: 420px
}

.abt-pg .intro-img-col {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: stretch;
    position: relative
}

.abt-pg .intro-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.abt-pg .intro-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.15);
    transition: filter .55s cubic-bezier(0.22, 1, 0.36, 1);
    aspect-ratio: 4/3
}

.abt-pg .intro-img-wrap:hover img {
    filter: grayscale(100%) contrast(1.15) brightness(0.7)
}

.abt-pg .intro-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, #f34d3c2e 0%, transparent 65%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 20px
}

.abt-pg .intro-img-wrap:hover::after {
    opacity: 1
}

.abt-pg .dashed-frame {
    border: 2px dashed #07bcc14d;
    border-radius: 36px;
    padding: 8px
}

.abt-pg .divider-thick-thin {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 64px
}

.abt-pg .divider-thick-thin .d-thick {
    height: 3px;
    background: #F34D3C;
    border-radius: 0;
    opacity: .18
}

.abt-pg .divider-thick-thin .d-thin {
    height: 1px;
    background: #07BCC1;
    border-radius: 0;
    opacity: .22
}

.abt-pg .about-deep {
    background: linear-gradient(180deg, #1a0a08 0%, #2b0c09 100%);
    position: relative;
    padding: 64px;
    overflow: hidden
}

.abt-pg .about-deep::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(ellipse at 60% 40%, #07bcc11a 0%, transparent 70%);
    pointer-events: none
}

.abt-pg .about-deep::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(ellipse at 40% 60%, #f34d3c17 0%, transparent 70%);
    pointer-events: none
}

.abt-pg .deep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 1
}

.abt-pg .deep-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-pg .deep-h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0
}

.abt-pg .deep-h2 .accent-half {
    color: #07BCC1
}

.abt-pg .deep-body {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffffd1;
    margin: 0
}

.abt-pg .deep-note {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff8c;
    margin: 0
}

.abt-pg .metric-row {
    display: flex;
    flex-direction: row;
    gap: 24px
}

.abt-pg .metric-card {
    flex: 1 1 0;
    background: #ffffff0d;
    border: 1px solid #ffffff1a;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-pg .metric-card:hover {
    background: #ffffff17;
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.abt-pg .metric-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #F34D3C
}

.abt-pg .metric-label {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffa6
}

.abt-pg .deep-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .team-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-pg .team-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #ffffff0d;
    border-radius: 20px;
    padding: 16px 24px;
    border: 1px solid #ffffff14;
    box-shadow: 0 2px 6px 0 #07bcc112;
    transition: background .45s ease-in-out
}

.abt-pg .team-card:hover {
    background: #ffffff17
}

.abt-pg .team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 36px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 6px 0 #f34d3c12
}

.abt-pg .team-avatar img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%)
}

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

.abt-pg .team-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.abt-pg .team-role {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.2
}

.abt-pg .sub-form-wrap {
    margin-top: 32px;
    background: #07bcc112;
    border: 1px solid #07bcc12e;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-pg .sub-label {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.abt-pg .sub-note {
    font-size: 15px;
    color: #ffffff8c;
    line-height: 1.7;
    margin: 0
}

.abt-pg .sub-form {
    display: flex;
    flex-direction: row;
    gap: 8px
}

.abt-pg .sub-form input[type="email"] {
    flex: 1 1 0;
    background: #ffffff12;
    border: 1px solid #ffffff26;
    border-radius: 20px;
    padding: 16px 24px;
    font-size: 15px;
    color: #fff;
    outline: none;
    box-shadow: inset 0 2px 4px 0 #f34d3c12;
    transition: border-color .45s ease-in-out, box-shadow .45s ease-in-out
}

.abt-pg .sub-form input[type="email"]::placeholder {
    color: #ffffff80;
    font-style: italic;
    opacity: .55
}

.abt-pg .sub-form input[type="email"]:focus {
    border-color: #07bcc18c;
    box-shadow: inset 0 2px 4px 0 #07bcc11a
}

.abt-pg .sub-btn {
    background: linear-gradient(180deg, #F34D3C 0%, #c93226 100%);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-pg .sub-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #07BCC1 0%, #059ea3 100%);
    transition: bottom .55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 20px;
    z-index: 0
}

.abt-pg .sub-btn:hover::before {
    bottom: 0
}

.abt-pg .sub-btn:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.abt-pg .sub-btn span {
    position: relative;
    z-index: 1
}

.abt-pg .sub-btn:focus {
    outline: 2px solid #07BCC1;
    outline-offset: 2px
}

.abt-pg .img-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px
}

.abt-pg .img-thumb {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 14px 0 #07bcc11a;
    position: relative
}

.abt-pg .img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(80%) contrast(1.08);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1), transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-pg .img-thumb:hover img {
    filter: grayscale(20%) contrast(1.1);
    transform: scale(1.03)
}

.abt-pg .img-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, #07bcc12e 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-pg .img-thumb:hover::after {
    opacity: 1
}

.abt-pg .deep-h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0
}

@media (max-width: 1024px) {
    .abt-pg .intro-row {
        padding: 64px 32px;
        gap: 32px
    }

    .abt-pg .intro-img-col {
        flex: 0 0 240px
    }

    .abt-pg .intro-h1 {
        font-size: 52px
    }

    .abt-pg .about-deep {
        padding: 64px 32px
    }

    .abt-pg .deep-grid {
        gap: 32px
    }

    .abt-pg .divider-thick-thin {
        padding: 0 32px
    }
}

@media (max-width: 768px) {
    .abt-pg .intro-row {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        min-height: unset
    }

    .abt-pg .intro-img-col {
        flex: 0 0 auto;
        width: 100%;
        align-items: center
    }

    .abt-pg .intro-img-wrap {
        min-height: 260px;
        width: 100%
    }

    .abt-pg .intro-h1 {
        font-size: 52px
    }

    .abt-pg .about-deep {
        padding: 32px 24px
    }

    .abt-pg .deep-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-pg .metric-row {
        flex-direction: column;
        gap: 16px
    }

    .abt-pg .sub-form {
        flex-direction: column
    }

    .abt-pg .divider-thick-thin {
        padding: 0 24px
    }

    .abt-pg .img-grid-row {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .abt-pg .intro-h1 {
        font-size: 28px
    }

    .abt-pg .deep-h2 {
        font-size: 28px
    }

    .abt-pg .metric-num {
        font-size: 28px
    }

    .abt-pg .intro-row {
        padding: 24px 16px
    }

    .abt-pg .about-deep {
        padding: 24px 16px
    }

    .abt-pg .divider-thick-thin {
        padding: 0 16px
    }
}

.phil-root {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.phil-root .divider-dot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 32px;
    width: fit-content
}

.phil-root .divider-dot span {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #F34D3C;
    display: block
}

.phil-root .divider-dot em {
    display: block;
    width: 64px;
    height: 1px;
    background: #07BCC1
}

.phil-root .two-tone span {
    color: #F34D3C
}

.phil-root .two-tone-b span {
    color: #07BCC1
}

.phil-root .title-blk {
    position: relative;
    background: #f5f3ef;
    padding: 64px
}

.phil-root .title-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #07bcc11f 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none
}

.phil-root .title-blk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1
}

.phil-root .title-blk-text {
    padding-top: 32px
}

.phil-root .title-blk-label {
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block
}

.phil-root .title-blk-h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #1a2636;
    font-weight: 800;
    margin-bottom: 32px
}

.phil-root .title-blk-h1 span {
    color: #F34D3C
}

.phil-root .title-blk-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 440px
}

.phil-root .title-blk-desc p {
    margin-bottom: 16px
}

.phil-root .title-blk-img-col {
    position: relative
}

.phil-root .title-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.phil-root .title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.phil-root .title-img-wrap:hover img {
    transform: scale(1.04)
}

.phil-root .title-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #f34d3c73 0%, #07bcc14d 55%, transparent 100%);
    mix-blend-mode: multiply;
    pointer-events: none
}

.phil-root .title-blk-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px
}

.phil-root .title-metric {
    background: #fff;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-shadow: 0 5px 14px 0 #07bcc11a;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.phil-root .title-metric:hover {
    box-shadow: 0 10px 52px 0 #07bcc121
}

.phil-root .title-metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.phil-root .title-metric-icon svg {
    width: 24px;
    height: 24px
}

.phil-root .title-metric-val {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a2636
}

.phil-root .title-metric-lbl {
    font-size: 15px;
    line-height: 1.2;
    color: #555;
    border-top: 1px solid #07bcc133;
    padding-top: 4px;
    margin-top: 4px
}

.phil-root .act-blk {
    padding: 64px;
    background: #fff;
    position: relative
}

.phil-root .act-blk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #F34D3C, #07BCC1);
    pointer-events: none
}

.phil-root .act-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px
}

.phil-root .act-eyebrow {
    font-size: 15px;
    color: #F34D3C;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    display: block
}

.phil-root .act-h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2636;
    margin-bottom: 24px
}

.phil-root .act-h2 span {
    color: #07BCC1
}

.phil-root .act-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 16px
}

.phil-root .act-aside-note {
    background: #f34d3c0f;
    border-radius: 20px;
    padding: 24px;
    border-left: 4px solid #F34D3C;
    border-top: 1px solid #f34d3c26
}

.phil-root .act-aside-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 8px
}

.phil-root .act-aside-note p:last-child {
    margin-bottom: 0
}

.phil-root .act-aside-note strong {
    color: #F34D3C;
    font-weight: 700
}

.phil-root .act-flow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    position: relative;
    margin-bottom: 64px
}

.phil-root .act-flow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(66.66% - 12px);
    right: 0;
    height: 2px;
    background: #07bcc133;
    pointer-events: none;
    transform: translateY(-50%)
}

.phil-root .act-card {
    border-radius: 20px;
    padding: 32px 24px;
    background: #f5f3ef;
    position: relative;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), background .45s ease-in-out;
    overflow: hidden
}

.phil-root .act-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, #07bcc114 0%, transparent 100%);
    transition: height .5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.phil-root .act-card:hover::before {
    height: 100%
}

.phil-root .act-card:hover {
    box-shadow: 0 10px 52px 0 #07bcc121
}

.phil-root .act-card.dominant {
    background: #1a2636;
    color: #fff
}

.phil-root .act-card.dominant::before {
    background: linear-gradient(to top, #f34d3c26 0%, transparent 100%)
}

.phil-root .act-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.phil-root .act-card-icon svg {
    width: 32px;
    height: 32px
}

.phil-root .act-card-h {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2636
}

.phil-root .act-card.dominant .act-card-h {
    color: #fff
}

.phil-root .act-card-body {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.phil-root .act-card.dominant .act-card-body {
    color: #ffffffbf
}

.phil-root .act-card-strip {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #07BCC1;
    border-radius: 20px 0 0 20px;
    transition: width .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.phil-root .act-card:hover .act-card-strip {
    width: 8px
}

.phil-root .act-card.dominant .act-card-strip {
    background: #F34D3C
}

.phil-root .act-infographic {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: #07bcc10d;
    border-radius: 20px;
    padding: 24px 32px;
    flex-wrap: wrap
}

.phil-root .act-info-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 160px
}

.phil-root .act-info-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px 0 #07bcc112;
    flex-shrink: 0
}

.phil-root .act-info-icon svg {
    width: 22px;
    height: 22px
}

.phil-root .act-info-val {
    font-size: 22px;
    font-weight: 700;
    color: #1a2636;
    line-height: 1.2
}

.phil-root .act-info-sep {
    width: 1px;
    height: 32px;
    background: #07bcc140;
    flex-shrink: 0
}

.phil-root .act-info-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    border-top: 1px solid #07bcc133;
    padding-top: 4px;
    margin-top: 4px
}

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

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

.phil-root .title-blk-text {
    animation: slideFromLeft .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

.phil-root .title-blk-img-col {
    animation: slideFromLeft .7s cubic-bezier(0.22, 1, 0.36, 1) .1s both
}

.phil-root .act-top-text {
    animation: slideFromLeft .6s cubic-bezier(0.22, 1, 0.36, 1) .05s both
}

.phil-root .act-card:nth-child(1) {
    animation: slideFromLeft .55s cubic-bezier(0.22, 1, 0.36, 1) .08s both
}

.phil-root .act-card:nth-child(2) {
    animation: slideFromLeft .55s cubic-bezier(0.22, 1, 0.36, 1) .16s both
}

.phil-root .act-card:nth-child(3) {
    animation: slideFromLeft .55s cubic-bezier(0.22, 1, 0.36, 1) .24s both
}

@media (max-width: 1024px) {
    .phil-root .title-blk {
        padding: 64px 32px
    }

    .phil-root .title-blk-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .phil-root .title-blk-h1 {
        font-size: 52px
    }

    .phil-root .act-blk {
        padding: 64px 32px
    }

    .phil-root .act-top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .phil-root .act-h2 {
        font-size: 28px
    }

    .phil-root .act-flow {
        grid-template-columns: 1fr 1fr
    }

    .phil-root .act-flow::after {
        display: none
    }
}

@media (max-width: 768px) {
    .phil-root .title-blk {
        padding: 32px 16px
    }

    .phil-root .title-blk-h1 {
        font-size: 28px
    }

    .phil-root .act-blk {
        padding: 32px 16px
    }

    .phil-root .act-flow {
        grid-template-columns: 1fr
    }

    .phil-root .act-h2 {
        font-size: 22px
    }

    .phil-root .act-infographic {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px
    }

    .phil-root .act-info-sep {
        width: 32px;
        height: 1px
    }
}

@media (max-width: 480px) {
    .phil-root .title-blk-h1 {
        font-size: 22px
    }

    .phil-root .title-blk-desc {
        font-size: 15px
    }

    .phil-root .act-card {
        padding: 24px 16px
    }
}

.lrn-prog {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.lrn-prog .reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    animation: slideFromLeft .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn-prog .reveal-right {
    opacity: 0;
    transform: translateX(48px);
    animation: slideFromRight .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.lrn-prog .reveal-left.delay-1 {
    animation-delay: .1s
}

.lrn-prog .reveal-left.delay-2 {
    animation-delay: .2s
}

.lrn-prog .reveal-right.delay-1 {
    animation-delay: .15s
}

.lrn-prog .reveal-right.delay-2 {
    animation-delay: .25s
}

.lrn-prog .reveal-right.delay-3 {
    animation-delay: .35s
}

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

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

.lrn-prog .pg-band {
    background: linear-gradient(to top, #F34D3C, #fff);
    padding: 64px;
    position: relative
}

.lrn-prog .pg-band__inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 32px
}

.lrn-prog .pg-band__text {
    flex: 1 1 0;
    min-width: 0
}

.lrn-prog .pg-band__label {
    display: inline-block;
    background: #07bcc11f;
    color: #07BCC1;
    font-size: 15px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px
}

.lrn-prog .pg-band__h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 24px
}

.lrn-prog .pg-band__h1 span {
    color: #F34D3C;
    text-decoration: underline;
    text-decoration-color: #F34D3C;
    text-underline-offset: 6px
}

.lrn-prog .pg-band__desc {
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    max-width: 520px
}

.lrn-prog .pg-band__img-col {
    flex: 0 0 340px;
    position: relative
}

.lrn-prog .pg-band__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #f34d3c21;
    aspect-ratio: 4/3;
    width: 340px
}

.lrn-prog .pg-band__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lrn-prog .pg-band__dots {
    position: absolute;
    bottom: -24px;
    right: -16px;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 8px;
    z-index: 0;
    pointer-events: none
}

.lrn-prog .pg-band__dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #f34d3c38;
    display: block
}

.lrn-prog .pg-band__dot:nth-child(odd) {
    background: #07bcc138
}

.lrn-prog .pg-band__math {
    position: absolute;
    top: 32px;
    right: 64px;
    font-size: 68px;
    line-height: 1.2;
    color: #f34d3c12;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.lrn-prog .diag-div {
    width: 100%;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    margin-top: -2px
}

.lrn-prog .cards-band {
    background: #fff;
    padding: 64px
}

.lrn-prog .cards-band__top {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.lrn-prog .cards-band__h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0
}

.lrn-prog .cards-band__h2 em {
    color: #07BCC1;
    font-style: normal
}

.lrn-prog .cards-band__note {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.lrn-prog .cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.lrn-prog .prog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer
}

.lrn-prog .prog-card:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21;
    transform: translateY(-4px)
}

.lrn-prog .prog-card:active {
    animation: cardPop .45s cubic-bezier(0.22, 1, 0.36, 1)
}

@keyframes cardPop {
    0% {
        transform: scale(1)
    }

    40% {
        transform: scale(1.03)
    }

    100% {
        transform: scale(1)
    }
}

.lrn-prog .prog-card__meta {
    padding: 16px 16px 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.lrn-prog .prog-card__tag {
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    background: #07bcc11a;
    border-radius: 20px;
    padding: 4px 16px
}

.lrn-prog .prog-card__level {
    font-size: 15px;
    line-height: 1.2;
    color: #F34D3C;
    background: #f34d3c14;
    border-radius: 20px;
    padding: 4px 16px
}

.lrn-prog .prog-card__body {
    padding: 8px 16px 16px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .prog-card__title {
    font-size: 22px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0
}

.lrn-prog .prog-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0
}

.lrn-prog .prog-card__specs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.lrn-prog .prog-card__spec {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    line-height: 1.2;
    color: #555
}

.lrn-prog .prog-card__spec svg {
    flex-shrink: 0
}

.lrn-prog .prog-card__footer {
    padding: 16px;
    border-top: 1px solid #07bcc11f;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.lrn-prog .prog-card__price-block {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .prog-card__price {
    font-size: 22px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700
}

.lrn-prog .prog-card__price-des {
    font-size: 15px;
    line-height: 1.2;
    color: #888
}

.lrn-prog .prog-card__price-note {
    font-size: 15px;
    line-height: 1.2;
    color: #F34D3C
}

.lrn-prog .prog-card__seats {
    font-size: 15px;
    line-height: 1.2;
    color: #07BCC1;
    background: #07bcc114;
    border-radius: 20px;
    padding: 4px 16px
}

.lrn-prog .prog-card__btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(to top, #F34D3C, #ff7a6b);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), color .45s ease-in-out;
    box-shadow: 0 2px 6px 0 #f34d3c12
}

.lrn-prog .prog-card__btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #07BCC1, #3de0e5);
    transition: bottom .5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
    border-radius: 20px
}

.lrn-prog .prog-card__btn:hover::before {
    bottom: 0
}

.lrn-prog .prog-card__btn span {
    position: relative;
    z-index: 1
}

.lrn-prog .prog-card__btn:hover {
    box-shadow: 0 5px 14px 0 #07bcc11a
}

.lrn-prog .accent-band {
    background: #F34D3C;
    padding: 64px;
    position: relative;
    overflow: hidden
}

.lrn-prog .accent-band__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1
}

.lrn-prog .accent-band__text {
    flex: 1 1 0;
    min-width: 0
}

.lrn-prog .accent-band__h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px
}

.lrn-prog .accent-band__h2 span {
    color: #fff;
    opacity: .6
}

.lrn-prog .accent-band__p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffffe0;
    max-width: 480px
}

.lrn-prog .accent-band__stats {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .stat-item {
    background: #ffffff1f;
    border-radius: 20px;
    padding: 24px 32px;
    text-align: center;
    border: 1px solid #ffffff2e
}

.lrn-prog .stat-item__num {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    display: block
}

.lrn-prog .stat-item__lbl {
    font-size: 15px;
    line-height: 1.2;
    color: #ffffffbf
}

.lrn-prog .accent-band__deco {
    position: absolute;
    top: -32px;
    right: 0;
    font-size: 68px;
    line-height: 1.2;
    color: #ffffff0f;
    font-weight: 700;
    pointer-events: none;
    user-select: none
}

.lrn-prog .diag-div-inv {
    width: 100%;
    height: 48px;
    background: #F34D3C;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    margin-bottom: -2px
}

.lrn-prog .img-split {
    background: linear-gradient(to top, #07bcc10f, #fff);
    padding: 64px
}

.lrn-prog .img-split__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.lrn-prog .img-split__img-col {
    flex: 0 0 420px
}

.lrn-prog .img-split__img-wrap {
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 4/3;
    width: 420px;
    box-shadow: 0 10px 52px 0 #07bcc121
}

.lrn-prog .img-split__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lrn-prog .img-split__text {
    flex: 1 1 0;
    min-width: 0
}

.lrn-prog .img-split__h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 16px
}

.lrn-prog .img-split__h2 span {
    color: #07BCC1
}

.lrn-prog .img-split__aside-wrap {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.lrn-prog .img-split__main-p {
    flex: 1 1 0;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a
}

.lrn-prog .img-split__aside {
    flex: 0 0 140px;
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    border-left: 2px solid #07bcc14d;
    border-top: 1px solid #07bcc11f;
    padding: 8px 0 8px 16px
}

.lrn-prog .img-split__facts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px
}

.lrn-prog .fact-chip {
    background: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.2;
    color: #1b1b1b;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lrn-prog .fact-chip svg {
    flex-shrink: 0
}

@media (max-width: 1024px) {
    .lrn-prog .pg-band {
        padding: 64px 32px
    }

    .lrn-prog .pg-band__inner {
        gap: 32px
    }

    .lrn-prog .pg-band__img-col {
        flex: 0 0 260px
    }

    .lrn-prog .pg-band__img-wrap {
        width: 260px
    }

    .lrn-prog .cards-band {
        padding: 64px 32px
    }

    .lrn-prog .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .lrn-prog .accent-band {
        padding: 64px 32px
    }

    .lrn-prog .accent-band__inner {
        gap: 32px
    }

    .lrn-prog .img-split {
        padding: 64px 32px
    }

    .lrn-prog .img-split__inner {
        gap: 32px
    }

    .lrn-prog .img-split__img-col {
        flex: 0 0 300px
    }

    .lrn-prog .img-split__img-wrap {
        width: 300px
    }
}

@media (max-width: 768px) {
    .lrn-prog .pg-band {
        padding: 32px 16px
    }

    .lrn-prog .pg-band__inner {
        flex-direction: column;
        gap: 24px
    }

    .lrn-prog .pg-band__img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .lrn-prog .pg-band__img-wrap {
        width: 100%
    }

    .lrn-prog .pg-band__h1 {
        font-size: 28px
    }

    .lrn-prog .pg-band__math {
        display: none
    }

    .lrn-prog .cards-band {
        padding: 32px 16px
    }

    .lrn-prog .cards-band__top {
        flex-direction: column;
        align-items: flex-start
    }

    .lrn-prog .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .lrn-prog .accent-band {
        padding: 32px 16px
    }

    .lrn-prog .accent-band__inner {
        flex-direction: column;
        gap: 24px
    }

    .lrn-prog .accent-band__h2 {
        font-size: 28px
    }

    .lrn-prog .accent-band__stats {
        flex-direction: row;
        flex-wrap: wrap
    }

    .lrn-prog .img-split {
        padding: 32px 16px
    }

    .lrn-prog .img-split__inner {
        flex-direction: column;
        gap: 24px
    }

    .lrn-prog .img-split__img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .lrn-prog .img-split__img-wrap {
        width: 100%
    }

    .lrn-prog .img-split__aside-wrap {
        flex-direction: column
    }

    .lrn-prog .img-split__aside {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (max-width: 480px) {
    .lrn-prog .pg-band__h1 {
        font-size: 22px
    }

    .lrn-prog .accent-band__h2 {
        font-size: 22px
    }

    .lrn-prog .prog-card__footer {
        flex-direction: column;
        align-items: flex-start
    }
}

.ctus-pg {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.ctus-pg .split-band {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 80vh;
    position: relative
}

.ctus-pg .split-band__left {
    background: linear-gradient(to top, #F34D3C, #fff);
    padding: 64px 32px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.ctus-pg .split-band__left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#f34d3c14 1px, transparent 1px), linear-gradient(90deg, #f34d3c14 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none
}

.ctus-pg .split-band__deco-ring {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid #f34d3c2e;
    pointer-events: none
}

.ctus-pg .split-band__deco-ring-sm {
    position: absolute;
    top: 32px;
    right: 24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1.5px solid #07bcc126;
    pointer-events: none
}

.ctus-pg .band-label {
    font-size: 15px;
    line-height: 1.2;
    color: #F34D3C;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600
}

.ctus-pg .band-heading {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    margin-bottom: 24px
}

.ctus-pg .band-heading span {
    color: #07BCC1;
    text-decoration: underline;
    text-decoration-color: #07bcc166;
    text-underline-offset: 6px
}

.ctus-pg .band-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #2e2e2e;
    margin-bottom: 32px;
    max-width: 340px
}

.ctus-pg .contact-facts {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus-pg .cfact {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #ffffffb8;
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    border: 1px solid #f34d3c1a;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus-pg .cfact:hover {
    box-shadow: 0 5px 14px 0 #f34d3c1a
}

.ctus-pg .cfact__icon {
    width: 36px;
    height: 36px;
    border-radius: 20px;
    background: linear-gradient(to top, #F34D3C, #ff8a7e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus-pg .cfact__icon svg {
    width: 18px;
    height: 18px;
    fill: #fff
}

.ctus-pg .cfact__body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .cfact__lbl {
    font-size: 15px;
    line-height: 1.2;
    color: #888;
    font-weight: 500
}

.ctus-pg .cfact__val {
    font-size: 15px;
    line-height: 1.7;
    color: #1b1b1b;
    font-weight: 600;
    word-break: break-word
}

.ctus-pg .cfact__val a {
    color: #F34D3C;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.ctus-pg .cfact__val a:hover {
    color: #07BCC1
}

.ctus-pg .split-band__right {
    background: #fff;
    padding: 64px 64px 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.ctus-pg .form-card {
    background: #fff;
    border-radius: 36px;
    padding: 48px;
    box-shadow: 0 10px 52px 0 #07bcc121;
    position: relative;
    overflow: hidden
}

.ctus-pg .form-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom left, #07BCC1, transparent);
    border-radius: 0 36px 0 36px;
    pointer-events: none
}

.ctus-pg .form-card__heading {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 8px
}

.ctus-pg .form-card__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px
}

.ctus-pg .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ctus-pg .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.ctus-pg .form-group.full {
    grid-column: 1 / -1
}

.ctus-pg .f-label {
    font-size: 15px;
    line-height: 1.2;
    color: #2e2e2e;
    font-weight: 600
}

.ctus-pg .f-input,
.ctus-pg .f-select {
    font-size: 15px;
    line-height: 1.7;
    color: #1b1b1b;
    background: #f4f8f8;
    border: 1.5px solid #07bcc12e;
    border-radius: 20px;
    padding: 12px 16px;
    width: 100%;
    box-shadow: inset 0 2px 4px 0 #07bcc10f;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box
}

.ctus-pg .f-input::placeholder {
    font-style: italic;
    opacity: .55;
    color: #555
}

.ctus-pg .f-input:focus,
.ctus-pg .f-select:focus {
    outline: none;
    border-color: #07BCC1;
    box-shadow: inset 0 2px 4px 0 #07bcc11a 0 0 0 3px #07bcc11f
}

.ctus-pg .f-select-wrap {
    position: relative
}

.ctus-pg .f-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background: #07BCC1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none
}

.ctus-pg .f-select {
    padding-right: 40px;
    cursor: pointer
}

.ctus-pg .timeline-group {
    margin-bottom: 16px
}

.ctus-pg .timeline-label {
    font-size: 15px;
    line-height: 1.2;
    color: #2e2e2e;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.ctus-pg .timeline-opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.ctus-pg .timeline-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ctus-pg .timeline-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ctus-pg .timeline-opt label {
    font-size: 15px;
    line-height: 1.2;
    color: #2e2e2e;
    background: #f4f8f8;
    border: 1.5px solid #07bcc12e;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .45s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1);
    display: block
}

.ctus-pg .timeline-opt input[type="radio"]:checked+label {
    background: linear-gradient(to top, #07BCC1, #4dd8dc);
    border-color: #07BCC1;
    color: #fff;
    font-weight: 600
}

.ctus-pg .timeline-opt label:hover {
    border-color: #07BCC1;
    background: #07bcc114
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f34d3c0a;
    border-radius: 20px;
    border: 1px solid #f34d3c1a
}

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

.ctus-pg .privacy-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444
}

.ctus-pg .privacy-text a {
    color: #F34D3C;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .45s ease-in-out
}

.ctus-pg .privacy-text a:hover {
    color: #07BCC1
}

.ctus-pg .btn-submit {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to top, #F34D3C, #ff7a6b);
    border: none;
    border-radius: 20px;
    padding: 16px 48px;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus-pg .btn-submit::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #07BCC1, #4dd8dc);
    transition: bottom .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.ctus-pg .btn-submit:hover::before {
    bottom: 0
}

.ctus-pg .btn-submit:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21;
    transform: translateY(-2px)
}

.ctus-pg .btn-submit:active {
    transform: translateY(0)
}

.ctus-pg .btn-submit span {
    position: relative;
    z-index: 1
}

.ctus-pg .wave-div {
    width: 100%;
    line-height: 0;
    display: block;
    overflow: hidden
}

.ctus-pg .wave-div svg {
    display: block;
    width: 100%
}

.ctus-pg .info-strip {
    background: linear-gradient(to top, #07bcc114, #fff);
    padding: 64px;
    position: relative;
    overflow: hidden
}

.ctus-pg .info-strip__deco {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid #07bcc11f;
    pointer-events: none
}

.ctus-pg .info-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start
}

.ctus-pg .info-strip__aside {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus-pg .aside-heading {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b
}

.ctus-pg .aside-note {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

.ctus-pg .info-strip__main {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus-pg .response-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 2px 6px 0 #07bcc112;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    border-left: 4px solid #07BCC1;
    border-top: 1px solid #07bcc11a;
    border-right: 1px solid #07bcc11a;
    border-bottom: 1px solid #07bcc11a;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus-pg .response-card:hover {
    box-shadow: 0 5px 14px 0 #07bcc11a
}

.ctus-pg .rc-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #07bcc126;
    flex-shrink: 0;
    width: 64px;
    text-align: center
}

.ctus-pg .rc-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .rc-title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b
}

.ctus-pg .rc-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555
}

@keyframes gradshift {
    0% {
        background-position: 50% 0
    }

    50% {
        background-position: 50% 100%
    }

    100% {
        background-position: 50% 0
    }
}

.ctus-pg .animated-grad-bg {
    background: linear-gradient(to top, #F34D3C, #ff9e95, #fff, #c2f4f5, #07BCC1);
    background-size: 100% 300%;
    animation: gradshift 8s ease-in-out infinite
}

@media (max-width: 1024px) {
    .ctus-pg .split-band {
        grid-template-columns: 1fr
    }

    .ctus-pg .split-band__left {
        padding: 48px 32px
    }

    .ctus-pg .split-band__right {
        padding: 48px 32px
    }

    .ctus-pg .form-card {
        padding: 32px 24px
    }

    .ctus-pg .info-strip {
        padding: 48px 32px
    }

    .ctus-pg .info-strip__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ctus-pg .split-band__left {
        min-height: auto
    }
}

@media (max-width: 768px) {
    .ctus-pg .band-heading {
        font-size: 36px
    }

    .ctus-pg .form-row {
        grid-template-columns: 1fr
    }

    .ctus-pg .split-band__left {
        padding: 32px 24px
    }

    .ctus-pg .split-band__right {
        padding: 32px 16px
    }

    .ctus-pg .form-card {
        padding: 24px 16px;
        border-radius: 20px
    }

    .ctus-pg .info-strip {
        padding: 32px 16px
    }

    .ctus-pg .response-card {
        flex-direction: column;
        gap: 8px
    }

    .ctus-pg .rc-num {
        font-size: 28px;
        width: auto
    }
}

@media (max-width: 480px) {
    .ctus-pg .band-heading {
        font-size: 28px
    }

    .ctus-pg .timeline-opts {
        flex-direction: column
    }

    .ctus-pg .btn-submit {
        padding: 16px 24px
    }
}

.cmp-root {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.cmp-root .reveal-item {
    animation: revealRotate .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes revealRotate {
    from {
        opacity: 0;
        transform: rotate(-3deg) translateY(16px)
    }

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

.cmp-root .reveal-item:nth-child(2) {
    animation-delay: .1s
}

.cmp-root .reveal-item:nth-child(3) {
    animation-delay: .18s
}

.cmp-root .reveal-item:nth-child(4) {
    animation-delay: .26s
}

.cmp-root .ttl-block {
    position: relative;
    background: #fff;
    padding: 0
}

.cmp-root .ttl-img-area {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    max-height: 480px;
    overflow: hidden;
    border-radius: 0
}

.cmp-root .ttl-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cmp-root .ttl-img-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #07bcc12e 0%, #fff0 50%, #f34d3c38 100%);
    z-index: 1;
    pointer-events: none
}

.cmp-root .ttl-img-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, #1e1e1e61 0%, transparent 45%), radial-gradient(ellipse at 100% 0%, #1e1e1e4d 0%, transparent 40%), radial-gradient(ellipse at 0% 100%, #1e1e1e52 0%, transparent 42%), radial-gradient(ellipse at 100% 100%, #1e1e1e5c 0%, transparent 44%);
    z-index: 2;
    pointer-events: none
}

.cmp-root .ttl-dot-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 16px 32px 0
}

.cmp-root .ttl-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #07BCC1;
    opacity: .35
}

.cmp-root .ttl-dot.alt {
    background: #F34D3C;
    opacity: .25
}

.cmp-root .ttl-text-zone {
    padding: 32px 64px 64px;
    max-width: 820px
}

.cmp-root .ttl-label {
    font-size: 15px;
    line-height: 1.7;
    color: #07BCC1;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.cmp-root .ttl-h1 {
    font-size: 68px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #1a1a1a
}

.cmp-root .ttl-h1 .accent-word {
    color: #F34D3C
}

.cmp-root .ttl-sub {
    font-size: 22px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 32px;
    max-width: 560px
}

.cmp-root .ttl-diag {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #07bcc12e, transparent);
    pointer-events: none
}

.cmp-root .plans-block {
    background: linear-gradient(to top, #fff 0%, #07bcc112 100%);
    padding: 64px;
    position: relative
}

.cmp-root .plans-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #07bcc14d;
    pointer-events: none
}

.cmp-root .plans-eyebrow {
    font-size: 15px;
    color: #F34D3C;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
    display: block
}

.cmp-root .plans-h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #222
}

.cmp-root .plans-h2 .accent-word {
    color: #07BCC1
}

.cmp-root .plans-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 520px;
    margin: 0 0 32px
}

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

.cmp-root .plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default
}

.cmp-root .plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #F34D3C, #07BCC1);
    border-radius: 20px 20px 0 0
}

.cmp-root .plan-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -20px;
    width: 120px;
    height: 1px;
    background: #f34d3c2e;
    transform: rotate(45deg);
    pointer-events: none
}

.cmp-root .plan-card:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21;
    transform: translateY(-4px)
}

.cmp-root .plan-card.featured {
    background: linear-gradient(to top, #07bcc114 0%, #fff 100%);
    border: 2px solid #07bcc159
}

.cmp-root .plan-badge {
    display: inline-block;
    background: #07BCC1;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px
}

.cmp-root .plan-name {
    font-size: 28px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 8px
}

.cmp-root .plan-price {
    font-size: 52px;
    line-height: 1.2;
    color: #F34D3C;
    margin: 0 0 4px
}

.cmp-root .plan-price-note {
    font-size: 15px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.7
}

.cmp-root .plan-divider {
    border: none;
    border-top: 1px dashed #07bcc140;
    margin: 0 0 24px
}

.cmp-root .plan-feat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cmp-root .plan-feat-list li {
    background: #07bcc10f;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.cmp-root .plan-feat-list li .feat-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.cmp-root .plan-feat-list li.feat-off {
    background: #f34d3c0d;
    color: #999;
    text-decoration: line-through
}

.cmp-root .plan-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-radius: 20px;
    border: none;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to top, #F34D3C 0%, #ff7a6e 100%);
    color: #fff;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    transition: box-shadow .45s ease-in-out, transform .45s ease-in-out
}

.cmp-root .plan-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #07BCC1 0%, #3dd9de 100%);
    transition: bottom .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.cmp-root .plan-btn:hover::after {
    bottom: 0
}

.cmp-root .plan-btn:hover {
    box-shadow: 0 5px 14px 0 #07bcc11a;
    transform: translateY(-2px)
}

.cmp-root .plan-btn span {
    position: relative;
    z-index: 1
}

.cmp-root .plan-btn.alt-btn {
    background: linear-gradient(to top, #07BCC1 0%, #3dd9de 100%)
}

.cmp-root .plan-btn.alt-btn::after {
    background: linear-gradient(to top, #F34D3C 0%, #ff7a6e 100%)
}

.cmp-root .feat-tbl-block {
    padding: 64px;
    background: #fff;
    position: relative
}

.cmp-root .feat-tbl-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #f34d3c33;
    pointer-events: none
}

.cmp-root .feat-tbl-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start
}

.cmp-root .feat-tbl-aside {
    position: sticky;
    top: 32px
}

.cmp-root .feat-tbl-aside-note {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    border-left: 3px solid #07BCC1;
    border-top: 1px solid #07bcc133;
    padding: 16px;
    border-radius: 0 20px 20px 0;
    background: #07bcc10a
}

.cmp-root .feat-tbl-h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #222;
    margin: 0 0 16px
}

.cmp-root .feat-tbl-h2 .accent-word {
    color: #F34D3C
}

.cmp-root .feat-tbl-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 32px
}

.cmp-root .feat-tbl {
    width: 100%;
    border-collapse: collapse
}

.cmp-root .feat-tbl thead tr {
    background: linear-gradient(to top, #07bcc11a 0%, #07bcc10a 100%)
}

.cmp-root .feat-tbl th {
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #07bcc133
}

.cmp-root .feat-tbl th:first-child {
    text-align: left;
    border-radius: 20px 0 0 0
}

.cmp-root .feat-tbl th:last-child {
    border-radius: 0 20px 0 0
}

.cmp-root .feat-tbl td {
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: center;
    border-bottom: 1px dashed #07bcc126;
    transition: background .5s ease-in-out
}

.cmp-root .feat-tbl td:first-child {
    text-align: left;
    font-size: 15px;
    color: #444
}

.cmp-root .feat-tbl tbody tr:hover td {
    background: #07bcc10d
}

.cmp-root .feat-tbl tbody tr:last-child td {
    border-bottom: none
}

.cmp-root .tbl-yes {
    color: #07BCC1;
    font-size: 18px
}

.cmp-root .tbl-no {
    color: #ccc;
    font-size: 18px
}

.cmp-root .tbl-val {
    color: #F34D3C;
    font-size: 15px
}

.cmp-root .feat-tbl th.col-featured {
    background: #07bcc126;
    color: #07BCC1
}

.cmp-root .feat-tbl td.col-featured {
    background: #07bcc10a
}

.cmp-root .decide-block {
    background: linear-gradient(to top, #f34d3c0f 0%, #fff 100%);
    padding: 64px;
    position: relative
}

.cmp-root .decide-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px dashed #f34d3c33;
    pointer-events: none
}

.cmp-root .decide-h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #222;
    margin: 0 0 8px;
    text-align: center
}

.cmp-root .decide-h2 .accent-word {
    color: #07BCC1
}

.cmp-root .decide-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin: 0 auto 32px;
    max-width: 480px
}

.cmp-root .decide-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px
}

.cmp-root .decide-card {
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px 0 #f34d3c12;
    transition: background .6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.cmp-root .decide-card::after {
    content: "";
    position: absolute;
    top: 16px;
    right: -18px;
    width: 100px;
    height: 1px;
    background: #07bcc133;
    transform: rotate(45deg);
    pointer-events: none
}

.cmp-root .decide-card:hover {
    background: repeating-conic-gradient(#07bcc10f 0% 25%, transparent 0% 50%) 0 0 / 16px 16px;
    box-shadow: 0 10px 52px 0 #07bcc121
}

.cmp-root .decide-plan-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #F34D3C;
    border-radius: 20px;
    padding: 4px 16px;
    margin-bottom: 16px
}

.cmp-root .decide-plan-label.lbl-mid {
    background: #07BCC1
}

.cmp-root .decide-plan-label.lbl-pro {
    background: linear-gradient(to right, #F34D3C, #07BCC1)
}

.cmp-root .decide-card-h {
    font-size: 22px;
    line-height: 1.2;
    color: #222;
    margin: 0 0 8px
}

.cmp-root .decide-card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0
}

.cmp-root .decide-note-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #07bcc112;
    border-radius: 20px;
    padding: 24px 32px;
    max-width: 720px;
    margin: 0 auto
}

.cmp-root .decide-note-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px
}

.cmp-root .decide-note-txt {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0
}

@media (max-width: 1024px) {
    .cmp-root .ttl-text-zone {
        padding: 24px 32px 48px
    }

    .cmp-root .ttl-h1 {
        font-size: 52px
    }

    .cmp-root .plans-block {
        padding: 48px 32px
    }

    .cmp-root .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .cmp-root .plans-grid .plan-card:nth-child(3) {
        grid-column: span 2
    }

    .cmp-root .feat-tbl-block {
        padding: 48px 32px
    }

    .cmp-root .feat-tbl-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .cmp-root .feat-tbl-aside {
        position: static
    }

    .cmp-root .decide-block {
        padding: 48px 32px
    }

    .cmp-root .decide-cols {
        grid-template-columns: 1fr 1fr
    }

    .cmp-root .decide-cols .decide-card:nth-child(3) {
        grid-column: span 2
    }
}

@media (max-width: 768px) {
    .cmp-root .ttl-text-zone {
        padding: 16px 16px 32px
    }

    .cmp-root .ttl-h1 {
        font-size: 28px
    }

    .cmp-root .ttl-sub {
        font-size: 18px
    }

    .cmp-root .plans-block {
        padding: 32px 16px
    }

    .cmp-root .plans-h2 {
        font-size: 28px
    }

    .cmp-root .plans-grid {
        grid-template-columns: 1fr
    }

    .cmp-root .plans-grid .plan-card:nth-child(3) {
        grid-column: span 1
    }

    .cmp-root .feat-tbl-block {
        padding: 32px 16px
    }

    .cmp-root .feat-tbl-h2 {
        font-size: 28px
    }

    .cmp-root .feat-tbl {
        font-size: 15px
    }

    .cmp-root .feat-tbl th,
    .cmp-root .feat-tbl td {
        padding: 8px
    }

    .cmp-root .decide-block {
        padding: 32px 16px
    }

    .cmp-root .decide-h2 {
        font-size: 28px
    }

    .cmp-root .decide-cols {
        grid-template-columns: 1fr
    }

    .cmp-root .decide-cols .decide-card:nth-child(3) {
        grid-column: span 1
    }

    .cmp-root .decide-note-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px
    }
}

@media (max-width: 480px) {
    .cmp-root .ttl-h1 {
        font-size: 22px
    }

    .cmp-root .plan-price {
        font-size: 28px
    }

    .cmp-root .plans-h2 {
        font-size: 22px
    }

    .cmp-root .feat-tbl-h2 {
        font-size: 22px
    }

    .cmp-root .decide-h2 {
        font-size: 22px
    }

    .cmp-root .ttl-dot-row {
        padding: 8px 16px 0
    }

    .cmp-root .plans-block {
        padding: 24px 16px
    }

    .cmp-root .decide-block {
        padding: 24px 16px
    }
}

.success-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: linear-gradient(to top, #07BCC1 0%, #fff 100%)
}

.success-pg .success-card {
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 10px 52px 0 #07bcc121;
    padding: 64px;
    max-width: 620px;
    width: 100%;
    text-align: center
}

.success-pg .success-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background: linear-gradient(to top, #07BCC1, #fff);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 5px 14px 0 #07bcc11a
}

.success-pg .success-card .icon-wrap svg {
    display: block
}

.success-pg .success-card .success-heading {
    font-size: 52px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 16px
}

.success-pg .success-card .success-heading span {
    color: #07BCC1
}

.success-pg .success-card .success-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 32px
}

.success-pg .success-card .success-note {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 32px;
    padding: 16px 24px;
    background: linear-gradient(to top, #07bcc112, #fff0);
    border-radius: 20px;
    border-top: 2px solid #07bcc140;
    border-right: 1px solid #07bcc11a;
    border-bottom: 1px solid #07bcc11a;
    border-left: 1px solid #07bcc11a
}

.success-pg .success-card .btn-home {
    display: inline-block;
    padding: 16px 32px;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(to top, #F34D3C, #ff7b6e);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 5px 14px 0 #f34d3c1a;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), background .6s ease-in-out;
    position: relative;
    overflow: hidden
}

.success-pg .success-card .btn-home::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #c73828, #F34D3C);
    border-radius: 20px;
    transition: bottom .5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.success-pg .success-card .btn-home:hover::after {
    bottom: 0
}

.success-pg .success-card .btn-home:hover {
    box-shadow: 0 10px 52px 0 #f34d3c21
}

.success-pg .success-card .btn-home:focus {
    outline: 3px solid #F34D3C;
    outline-offset: 4px
}

.success-pg .success-card .btn-home span {
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    .success-pg .success-card {
        padding: 32px 24px
    }

    .success-pg .success-card .success-heading {
        font-size: 28px
    }
}