html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Manrope", sans-serif;
    -webkit-text-size-adjust: 100%
}

.site-header {
    position: relative;
    background: #480BBF;
    overflow: hidden
}

.site-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 38px, #fcfcfc09 38px, #fcfcfc09 39px), repeating-linear-gradient(90deg, transparent, transparent 58px, #fcfcfc06 58px, #fcfcfc06 59px);
    pointer-events: none;
    z-index: 0
}

.hdr-box {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    padding: 32px 32px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px
}

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0
}

.brand-img-box {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-logo-wrap {
    width: 60px;
    height: 60px;
    background: #fcfcfc1f;
    border: 1px solid #fcfcfc47;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 #480bbf0f 0 4px 18px 0 #480bbf1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0
}

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

.brand-name-text {
    font-family: "PT Serif", serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FCFCFC
}

.brand-tagline {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #fcfcfcb8;
    padding-left: 4px
}

.brand-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #fcfcfc94;
    padding-left: 4px
}

.brand-location .material-icons {
    font-size: 15px;
    color: #F90C9C;
    flex-shrink: 0
}

.nav-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding-top: 4px
}

.nav-contact-row {
    display: flex;
    align-items: center;
    gap: 20px
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #FCFCFC;
    text-decoration: none;
    transition: color .12s ease-out
}

.nav-phone-link .material-icons {
    font-size: 15px;
    color: #F90C9C
}

.nav-phone-link:hover {
    color: #F90C9C
}

.nav-phone-link:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px;
    border-radius: 6px
}

.nav-email-link {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: .01em;
    color: #fcfcfcb8;
    text-decoration: none;
    transition: color .1s linear
}

.nav-email-link:hover {
    color: #F90C9C
}

.nav-email-link:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px;
    border-radius: 6px
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0
}

.primary-nav li {
    display: block
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.3;
    color: #fcfcfcd9;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background .12s ease-out, color .12s ease-out, border-color .12s ease-out
}

.primary-nav a:hover {
    background: #f90c9c29;
    color: #FCFCFC;
    border-color: #f90c9c61
}

.primary-nav a:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px
}

.primary-nav a.active-pg {
    background: #f90c9c38;
    color: #FCFCFC;
    border-color: #f90c9c80
}

.hdr-stripe {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 32px 0
}

.hdr-divider {
    height: 3px;
    border-radius: 48px;
    background: linear-gradient(90deg, #480BBF 0%, #F90C9C 60%, #f90c9c33 100%);
    margin-top: 20px
}

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

    .hdr-stripe {
        padding: 12px 20px 0
    }

    .nav-block {
        align-items: flex-start;
        width: 100%
    }

    .primary-nav {
        justify-content: flex-start
    }
}

@media (max-width: 768px) {
    .hdr-box {
        padding: 20px 12px 0;
        flex-direction: column;
        gap: 20px
    }

    .hdr-stripe {
        padding: 12px 12px 0
    }

    .brand-name-text {
        font-size: 24px
    }

    .nav-contact-row {
        flex-wrap: wrap;
        gap: 12px
    }
}

@media (max-width: 320px) {
    .hdr-box {
        padding: 12px 8px 0
    }

    .hdr-stripe {
        padding: 8px 8px 0
    }

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

.site-footer {
    background: #2a0675;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #480BBF 0%, #F90C9C 60%, #f90c9c33 100%);
    pointer-events: none
}

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

.ftr-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.ftr-logo-wrap {
    width: 60px;
    height: 60px;
    background: #fcfcfc1a;
    border: 1px solid #fcfcfc38;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 #480bbf0f 0 4px 18px 0 #480bbf1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px
}

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

.ftr-brand-name {
    font-family: "PT Serif", serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fcfcfce6;
    text-align: center
}

.ftr-script-deco {
    font-family: "PT Serif", serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .02em;
    line-height: 1.3;
    color: #F90C9C;
    opacity: .72;
    text-align: center;
    margin-top: 4px
}

.ftr-links-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ftr-links-label {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fcfcfc8c;
    text-transform: uppercase;
    margin-bottom: 4px
}

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

.ftr-nav-links a {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #fcfcfcb8;
    text-decoration: none;
    transition: color .1s ease-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.ftr-nav-links a:hover {
    color: #F90C9C
}

.ftr-nav-links a:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px;
    border-radius: 6px
}

.ftr-contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-contact-label {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fcfcfc8c;
    text-transform: uppercase
}

.ftr-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #fcfcfcb8;
    text-decoration: none
}

.ftr-contact-item .material-icons {
    font-size: 19px;
    color: #F90C9C;
    flex-shrink: 0
}

a.ftr-contact-item {
    transition: color .1s ease-out
}

a.ftr-contact-item:hover {
    color: #F90C9C
}

a.ftr-contact-item:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px;
    border-radius: 6px
}

.ftr-mid {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 32px 20px;
    border-top: 1px solid #fcfcfc14;
    margin-top: 0;
    padding-top: 20px
}

.ftr-mid-row {
    display: flex;
    align-items: center;
    justify-content: center
}

.ftr-mid-deco {
    font-family: "PT Serif", serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: .02em;
    color: #f90c9c73
}

.ftr-bottom {
    max-width: 1170px;
    margin: 0 auto;
    padding: 12px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ftr-copy {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #fcfcfc66;
    text-align: center
}

@media (max-width: 1024px) {
    .ftr-top {
        padding: 32px 20px 20px;
        flex-wrap: wrap;
        gap: 32px
    }

    .ftr-mid,
    .ftr-bottom {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (max-width: 768px) {
    .ftr-top {
        padding: 32px 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px
    }

    .ftr-brand-col {
        align-items: flex-start
    }

    .ftr-script-deco {
        text-align: left
    }

    .ftr-mid,
    .ftr-bottom {
        padding-left: 12px;
        padding-right: 12px
    }
}

@media (max-width: 320px) {
    .ftr-top {
        padding: 20px 8px 12px
    }

    .ftr-mid,
    .ftr-bottom {
        padding-left: 8px;
        padding-right: 8px
    }
}

.consent-box {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 520px;
    max-width: calc(100vw - 32px);
    background: #FCFCFC;
    border-radius: 6px;
    box-shadow: 0 10px 48px 0 #480bbf21;
    z-index: 4000;
    transform: translateX(120%);
    transition: transform .18s ease-out;
    font-family: "Manrope", sans-serif
}

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

.consent-inner-box {
    padding: 20px
}

.consent-desc {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #1a0050;
    margin: 0 0 12px
}

.consent-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid #480bbf1a
}

.consent-toggle-label {
    font-size: 15px;
    letter-spacing: .01em;
    color: #1a0050;
    line-height: 1.3
}

.consent-always-on {
    font-size: 15px;
    color: #480bbf8c;
    font-style: italic
}

.analytics-row {
    display: none;
    padding: 8px 0 0;
    border-top: 1px solid #480bbf1a;
    margin-top: 4px
}

.analytics-row.detail-open {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.analytics-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.analytics-chk {
    width: 18px;
    height: 18px;
    accent-color: #480BBF;
    cursor: pointer
}

.analytics-lbl {
    font-size: 15px;
    letter-spacing: .01em;
    color: #1a0050;
    line-height: 1.3;
    cursor: pointer
}

.detail-toggle-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: .01em;
    color: #480BBF;
    text-decoration: underline;
    font-family: "Manrope", sans-serif;
    transition: color .1s ease-out
}

.detail-toggle-btn:hover {
    color: #F90C9C
}

.detail-toggle-btn:focus {
    outline: 2px solid #480BBF;
    outline-offset: 2px;
    border-radius: 6px
}

.consent-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.consent-btn {
    flex: 1;
    padding: 12px 8px;
    border-radius: 6px;
    border: 2px solid #480BBF;
    background: transparent;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    color: #480BBF;
    cursor: pointer;
    min-height: 44px;
    transition: background .12s ease-out, color .12s ease-out
}

.consent-btn:hover {
    background: #480bbf12
}

.consent-btn:focus {
    outline: 2px solid #480BBF;
    outline-offset: 2px
}

.consent-btn.accept {
    background: #480BBF;
    color: #FCFCFC
}

.consent-btn.accept:hover {
    background: #3a0899
}

.consent-btn.accept:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px
}

.doc-fauh-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2a1a5e
}

.doc-fauh-section p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    margin-bottom: 20px;
    color: #2a1a5e
}

.doc-fauh-section ul,
.doc-fauh-section ol {
    margin: 20px 0;
    padding-left: 32px
}

.doc-fauh-section li {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    margin-bottom: 8px;
    color: #2a1a5e
}

.doc-fauh-section ul li {
    list-style-type: disc
}

.doc-fauh-section ol li {
    list-style-type: decimal
}

.doc-fauh-section ul ul,
.doc-fauh-section ol ol,
.doc-fauh-section ul ol,
.doc-fauh-section ol ul {
    margin: 8px 0;
    padding-left: 20px
}

.doc-fauh-section strong,
.doc-fauh-section b {
    font-weight: 700;
    color: #480BBF
}

.doc-fauh-section em,
.doc-fauh-section i {
    font-style: italic;
    color: #2a1a5e
}

.doc-fauh-section a {
    color: #480BBF;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .12s ease-out, text-decoration-color .12s ease-out
}

.doc-fauh-section a:hover {
    color: #F90C9C;
    text-decoration-color: #F90C9C
}

.doc-fauh-section a:visited {
    color: #6b3abf
}

.doc-fauh-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
    box-shadow: 0 1px 3px 0 #480bbf0f;
    border-radius: 6px;
    overflow: hidden
}

.doc-fauh-section thead {
    background: linear-gradient(90deg, #480BBF 0%, #6b2fd4 100%)
}

.doc-fauh-section thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 12px 20px;
    text-align: left;
    line-height: 1.3;
    border: none
}

.doc-fauh-section tbody tr {
    border-bottom: 1px solid #480bbf14;
    transition: background-color .1s ease-out
}

.doc-fauh-section tbody tr:last-child {
    border-bottom: none
}

.doc-fauh-section tbody tr:nth-child(even) {
    background-color: #480bbf08
}

.doc-fauh-section tbody tr:hover {
    background-color: #480bbf0f
}

.doc-fauh-section td {
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.55;
    color: #2a1a5e;
    vertical-align: top
}

.doc-fauh-section th {
    padding: 12px 20px;
    line-height: 1.3
}

.doc-fauh-section div {
    font-size: 15px;
    line-height: 1.55;
    color: #2a1a5e
}

@media (max-width: 768px) {
    .doc-fauh-section {
        padding: 32px 20px
    }

    .doc-fauh-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .doc-fauh-section ul,
    .doc-fauh-section ol {
        padding-left: 20px
    }
}

@media (max-width: 320px) {
    .doc-fauh-section {
        padding: 20px 12px
    }

    .doc-fauh-section p,
    .doc-fauh-section li,
    .doc-fauh-section td {
        font-size: 15px
    }
}

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

.upd * {
    box-sizing: border-box
}

.upd ::selection {
    background: linear-gradient(90deg, #480BBF, #F90C9C);
    color: #fff
}

.upd-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px
}

.upd-hero {
    background: linear-gradient(170deg, #480BBF 0%, #6b2fd4 38%, #c4068e 72%, #f8f0ff66 100%);
    padding: 64px 20px 48px;
    position: relative
}

.upd-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C180,20 320,55 500,35 C680,15 820,50 1000,30 C1100,18 1150,42 1200,60 Z' fill='%23f3eeff'/%3E%3C/svg%3E") no-repeat bottom/100% 100%
}

.upd-hero-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.upd-hero-left {
    flex: 0 0 60%;
    min-width: 0
}

.upd-hero-right {
    flex: 0 0 38%;
    min-width: 0
}

.upd-breadcrumb {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px
}

.upd-breadcrumb a {
    color: #ffffffbf;
    text-decoration: none;
    font-size: 15px;
    transition: color .1s ease-out
}

.upd-breadcrumb a:hover {
    color: #fff
}

.upd-breadcrumb span {
    color: #ffffff73;
    font-size: 15px
}

.upd-breadcrumb-cur {
    color: #ffffff8c;
    font-size: 15px
}

.upd-hero-title {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px
}

.upd-hero-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px
}

.upd-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff26;
    border: 1.5px solid #ffffff59;
    border-radius: 6px;
    padding: 8px 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .01em
}

.upd-likes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f90c9c33;
    border: 1.5px solid #f90c9c73;
    border-radius: 6px;
    padding: 8px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s ease-out, border-color .12s ease-out
}

.upd-likes:hover {
    background: #f90c9c59;
    border-color: #f90c9cb3
}

.upd-likes .material-icons {
    font-size: 19px;
    color: #F90C9C
}

.upd-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff1f;
    border: 1.5px solid #ffffff47;
    border-radius: 6px;
    padding: 8px 16px;
    color: #ffffffd9;
    font-size: 15px;
    cursor: pointer;
    transition: background .1s linear, color .1s linear
}

.upd-copy-btn:hover {
    background: #ffffff38;
    color: #fff
}

.upd-copy-btn .material-icons {
    font-size: 17px
}

.upd-hero-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21;
    position: relative
}

.upd-hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #480bbf4d 0%, #f90c9c26 100%);
    z-index: 1;
    pointer-events: none
}

.upd-hero-img {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center
}

.upd-deco-shape {
    position: absolute;
    top: 32px;
    right: 80px;
    width: 120px;
    height: 120px;
    border: 2.5px solid #ffffff1a;
    border-radius: 48px;
    transform: rotate(22deg);
    pointer-events: none
}

.upd-deco-shape2 {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: 2px solid #f90c9c33;
    border-radius: 6px;
    transform: rotate(-15deg);
    pointer-events: none
}

.upd-body {
    background: #f3eeff;
    padding: 64px 20px;
    position: relative
}

.upd-body-grid {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.upd-desc-col {
    flex: 0 0 58%;
    min-width: 0
}

.upd-prog-col {
    flex: 0 0 38%;
    min-width: 0
}

.upd-sec-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #480BBF;
    text-transform: uppercase;
    margin-bottom: 12px
}

.upd-desc-head {
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
    color: #1a0a3d;
    margin: 0 0 20px;
    letter-spacing: .01em
}

.upd-desc-body {
    color: #2d1a5e;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em
}

.upd-desc-body p {
    margin: 0 0 12px
}

.upd-desc-body h2 {
    font-size: 19px;
    font-weight: 800;
    color: #1a0a3d;
    margin: 20px 0 8px;
    line-height: 1.3
}

.upd-desc-body strong {
    color: #480BBF;
    font-weight: 700
}

.upd-desc-body blockquote {
    border-left: none;
    background: #480bbf0f;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0;
    color: #480BBF;
    font-style: italic;
    font-size: 15px;
    line-height: 1.55;
    box-shadow: 0 1px 3px 0 #480bbf0f
}

.upd-desc-body ol {
    margin: 12px 0;
    padding-left: 20px
}

.upd-desc-body ol li {
    margin-bottom: 8px;
    color: #2d1a5e;
    line-height: 1.55
}

.upd-desc-body figure {
    margin: 20px 0
}

.upd-desc-body figcaption {
    font-size: 15px;
    color: #7a6aa0;
    margin-top: 8px;
    font-style: italic
}

.upd-desc-body cite {
    display: block;
    font-size: 15px;
    color: #7a6aa0;
    font-style: normal;
    margin-top: 8px
}

.upd-prog-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    overflow: hidden;
    position: sticky;
    top: 20px
}

.upd-prog-head {
    background: linear-gradient(135deg, #480BBF 0%, #7b2ff7 100%);
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.upd-prog-head .material-icons {
    color: #fffc;
    font-size: 24px
}

.upd-prog-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
    text-transform: uppercase
}

.upd-prog-body {
    padding: 20px
}

.upd-prog-body p {
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a5e;
    margin: 0 0 12px
}

.upd-prog-body h2 {
    font-size: 19px;
    font-weight: 800;
    color: #1a0a3d;
    margin: 16px 0 8px;
    line-height: 1.3
}

.upd-prog-body mark {
    background: #f90c9c26;
    color: #c4068e;
    border-radius: 6px;
    padding: 1px 6px;
    font-weight: 600
}

.upd-prog-body abbr {
    text-decoration: underline dotted;
    cursor: help;
    color: #480BBF
}

.upd-prog-body ul {
    margin: 8px 0;
    padding: 0;
    list-style: none
}

.upd-prog-body ul li {
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a5e;
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid #480bbf12
}

.upd-prog-body ul li:last-child {
    border-bottom: none
}

.upd-prog-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: #480BBF;
    opacity: .35
}

.upd-prog-body dl {
    margin: 8px 0
}

.upd-prog-body dt {
    font-weight: 700;
    color: #1a0a3d;
    font-size: 15px;
    margin-top: 12px
}

.upd-prog-body dd {
    font-size: 15px;
    color: #2d1a5e;
    margin-left: 20px;
    line-height: 1.55
}

.upd-prog-body blockquote {
    background: #f90c9c12;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 12px 0;
    font-style: italic;
    font-size: 15px;
    color: #c4068e;
    line-height: 1.55
}

.upd-enroll-strip {
    background: linear-gradient(100deg, #480BBF 0%, #F90C9C 100%);
    padding: 48px 20px;
    position: relative;
    overflow: hidden
}

.upd-enroll-strip::before {
    content: '';
    position: absolute;
    top: -32px;
    right: -32px;
    width: 200px;
    height: 200px;
    border: 3px solid #ffffff14;
    border-radius: 48px;
    transform: rotate(30deg);
    pointer-events: none
}

.upd-enroll-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.upd-enroll-text {
    flex: 1 1 400px;
    min-width: 0
}

.upd-enroll-heading {
    font-size: 31px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: .01em
}

.upd-enroll-sub {
    font-size: 15px;
    color: #fffc;
    line-height: 1.55;
    margin: 0
}

.upd-enroll-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.upd-enroll-price {
    font-size: 41px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .01em;
    line-height: 1.1
}

.upd-btn-enroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #480BBF;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    transition: background .15s ease-out, color .15s ease-out, box-shadow .15s ease-out;
    letter-spacing: .01em
}

.upd-btn-enroll:hover {
    background: #f3eeff;
    box-shadow: 0 10px 48px 0 #480bbf21
}

.upd-btn-enroll:active {
    background: #e6d8ff
}

.upd-btn-enroll .material-icons {
    font-size: 19px
}

.upd-contact-row {
    background: #fff;
    padding: 64px 20px;
    border-top: 2px solid #480bbf12
}

.upd-contact-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: center
}

.upd-contact-item {
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.upd-contact-div {
    width: 1px;
    height: 80px;
    background: #480bbf1f
}

.upd-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #480BBF 0%, #F90C9C 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.upd-contact-icon .material-icons {
    font-size: 19px;
    color: #fff
}

.upd-contact-label {
    font-size: 15px;
    color: #7a6aa0;
    letter-spacing: .02em
}

.upd-contact-val {
    font-size: 15px;
    font-weight: 700;
    color: #1a0a3d;
    text-decoration: none;
    transition: color .1s ease-out;
    letter-spacing: .01em
}

.upd-contact-val:hover {
    color: #480BBF;
    outline: 1.5px solid #480BBF;
    outline-offset: 3px;
    border-radius: 6px
}

.upd-dot-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(#480bbf0d 1px, transparent 1px);
    background-size: 28px 28px
}

@keyframes zone-shift {
    0% {
        background-position: 0 50%
    }

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

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

.upd-body {
    background-size: 300% 300%;
    animation: zone-shift 18s ease-in-out infinite;
    background-image: linear-gradient(170deg, #f3eeff 0%, #fce8f8 40%, #f0ebff 70%, #f3eeff 100%)
}

@media (max-width: 1024px) {
    .upd-hero-inner {
        flex-direction: column
    }

    .upd-hero-left {
        flex: none;
        width: 100%
    }

    .upd-hero-right {
        flex: none;
        width: 100%
    }

    .upd-body-grid {
        flex-direction: column
    }

    .upd-desc-col {
        flex: none;
        width: 100%
    }

    .upd-prog-col {
        flex: none;
        width: 100%
    }

    .upd-prog-card {
        position: static
    }

    .upd-contact-inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .upd-contact-div {
        display: none
    }

    .upd-contact-item {
        padding: 12px 20px
    }
}

@media (max-width: 768px) {
    .upd-hero-title {
        font-size: 31px
    }

    .upd-enroll-heading {
        font-size: 24px
    }

    .upd-enroll-price {
        font-size: 31px
    }

    .upd-enroll-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .upd-enroll-action {
        align-items: flex-start
    }

    .upd-hero {
        padding: 32px 20px 64px
    }

    .upd-body {
        padding: 32px 20px
    }

    .upd-contact-row {
        padding: 32px 20px
    }
}

@media (max-width: 320px) {
    .upd-hero-title {
        font-size: 24px
    }

    .upd-enroll-heading {
        font-size: 19px
    }

    .upd-price-badge {
        font-size: 19px;
        padding: 8px 12px
    }
}

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

.tech-pg .pg-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px
}

.tech-pg ::selection {
    background: linear-gradient(135deg, #480BBF, #F90C9C);
    color: #fff
}

.tech-pg a {
    text-decoration: none !important
}

.tech-pg a:hover {
    text-decoration: none !important
}

.tech-pg .tb-wrap {
    background: linear-gradient(118deg, #480BBF 0%, #2a0a6e 42%, #F90C9C 100%);
    padding: 64px 0 48px;
    position: relative
}

.tech-pg .tb-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 12% 30%, #fcfcfc0a 0%, transparent 38%), radial-gradient(circle at 85% 70%, #f90c9c14 0%, transparent 42%), radial-gradient(circle at 60% 20%, #480bbf0f 0%, transparent 35%);
    pointer-events: none
}

.tech-pg .tb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none
}

.tech-pg .tb-pattern span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #fcfcfc1a
}

.tech-pg .tb-pattern span:nth-child(1) {
    top: 18%;
    left: 8%
}

.tech-pg .tb-pattern span:nth-child(2) {
    top: 62%;
    left: 15%
}

.tech-pg .tb-pattern span:nth-child(3) {
    top: 30%;
    left: 92%
}

.tech-pg .tb-pattern span:nth-child(4) {
    top: 75%;
    left: 88%
}

.tech-pg .tb-pattern span:nth-child(5) {
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px
}

.tech-pg .tb-pattern span:nth-child(6) {
    top: 10%;
    left: 45%;
    width: 4px;
    height: 4px
}

.tech-pg .tb-pattern span:nth-child(7) {
    top: 85%;
    left: 35%
}

.tech-pg .tb-pattern span:nth-child(8) {
    top: 40%;
    left: 72%;
    width: 4px;
    height: 4px
}

.tech-pg .tb-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1
}

.tech-pg .tb-text {
    flex: 1 1 0;
    min-width: 0
}

.tech-pg .tb-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .08em;
    color: #fcfcfcb3;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 4px 12px;
    border: 1px solid #fcfcfc33;
    border-radius: 6px
}

.tech-pg .tb-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px
}

.tech-pg .tb-desc {
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #fcfcfcd9;
    margin: 0;
    max-width: 520px
}

.tech-pg .tb-img-col {
    flex: 0 0 380px;
    width: 380px
}

.tech-pg .tb-img-frame {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 48px 0 #480bbf21
}

.tech-pg .tb-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #480bbf73 0%, #f90c9c4d 100%);
    pointer-events: none
}

.tech-pg .tb-img-frame img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover
}

.tech-pg .scallop-div {
    background: #480BBF;
    height: 32px;
    position: relative;
    overflow: hidden
}

.tech-pg .scallop-div svg {
    display: block;
    width: 100%;
    height: 32px
}

.tech-pg .stack-sec {
    background: #fff;
    padding: 64px 0;
    position: relative
}

.tech-pg .stack-sec::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 32px;
    width: 180px;
    height: 180px;
    border-radius: 48px;
    background: #480bbf08;
    pointer-events: none;
    transform: rotate(18deg)
}

.tech-pg .stack-sec::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    border-radius: 48px;
    background: #f90c9c08;
    pointer-events: none
}

.tech-pg .sec-heading {
    font-size: 41px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .01em;
    color: #1b0a3e;
    margin: 0 0 8px
}

.tech-pg .sec-sub {
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #3a2660;
    margin: 0 0 32px;
    max-width: 560px
}

.tech-pg .stack-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.tech-pg .stack-list {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.tech-pg .stack-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 6px;
    background: #f3f0fa;
    box-shadow: 0 1px 3px 0 #480bbf0f;
    transition: box-shadow .15s ease-out, background .12s ease-out;
    cursor: default
}

.tech-pg .stack-item:hover {
    background: #ede8f8;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.tech-pg .stack-num {
    font-size: 31px;
    line-height: 1.1;
    font-weight: 900;
    color: #480bbf2e;
    flex: 0 0 40px;
    letter-spacing: -.02em;
    user-select: none
}

.tech-pg .stack-body {
    flex: 1 1 0;
    min-width: 0
}

.tech-pg .stack-name {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: #1b0a3e;
    letter-spacing: .01em;
    margin: 0 0 4px
}

.tech-pg .stack-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2660;
    letter-spacing: .01em;
    margin: 0
}

.tech-pg .stack-accent {
    color: #480BBF;
    font-weight: 700
}

.tech-pg .stack-metrics {
    flex: 0 0 280px;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.tech-pg .metric-card {
    border-radius: 6px;
    padding: 20px;
    background: linear-gradient(135deg, #480BBF 0%, #6b24d4 100%);
    box-shadow: 0 4px 18px 0 #480bbf1a;
    color: #fff;
    position: relative;
    overflow: hidden
}

.tech-pg .metric-card.alt {
    background: linear-gradient(135deg, #c00778 0%, #F90C9C 100%);
    box-shadow: 0 4px 18px 0 #f90c9c1a
}

.tech-pg .metric-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: #ffffff12;
    pointer-events: none
}

.tech-pg .metric-val {
    font-size: 41px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.01em;
    display: block;
    animation: scalepulse 2.4s ease-out infinite
}

@keyframes scalepulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

.tech-pg .metric-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #fffc;
    margin-top: 4px;
    display: block
}

.tech-pg .metric-note {
    font-size: 15px;
    line-height: 1.55;
    color: #ffffffb3;
    margin-top: 8px;
    display: block
}

.tech-pg .scallop-light {
    background: #fff;
    height: 32px;
    position: relative;
    overflow: hidden
}

.tech-pg .scallop-light svg {
    display: block;
    width: 100%;
    height: 32px
}

.tech-pg .approach-sec {
    background: linear-gradient(160deg, #f3f0fa 0%, #fce9f5 100%);
    padding: 64px 0;
    position: relative
}

.tech-pg .approach-sec .circ-deco {
    position: absolute;
    border-radius: 48px;
    pointer-events: none;
    opacity: .07
}

.tech-pg .approach-sec .circ-deco.c1 {
    width: 260px;
    height: 260px;
    background: #480BBF;
    top: -40px;
    right: 60px;
    transform: rotate(30deg)
}

.tech-pg .approach-sec .circ-deco.c2 {
    width: 140px;
    height: 140px;
    background: #F90C9C;
    bottom: 20px;
    left: 40px;
    transform: rotate(-15deg)
}

.tech-pg .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.tech-pg .approach-text {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.tech-pg .approach-p {
    font-size: 15px;
    line-height: 1.75;
    color: #1b0a3e;
    letter-spacing: .01em;
    margin: 0
}

.tech-pg .approach-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21;
    position: relative
}

.tech-pg .approach-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #480bbf40 100%);
    pointer-events: none
}

.tech-pg .approach-img-wrap img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover
}

.tech-pg .approach-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px
}

.tech-pg .feat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 6px;
    background: #480bbf0f;
    transition: background .1s ease-out
}

.tech-pg .feat-row:hover {
    background: #480bbf1c
}

.tech-pg .feat-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #480BBF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px
}

.tech-pg .feat-icon .material-icons {
    font-size: 19px
}

.tech-pg .feat-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #1b0a3e;
    letter-spacing: .01em;
    font-weight: 600
}

@media (max-width: 1024px) {
    .tech-pg .tb-h1 {
        font-size: 41px
    }

    .tech-pg .tb-img-col {
        flex: 0 0 300px;
        width: 300px
    }

    .tech-pg .stack-metrics {
        flex: 0 0 240px;
        width: 240px
    }
}

@media (max-width: 768px) {
    .tech-pg .tb-grid {
        flex-direction: column;
        gap: 32px
    }

    .tech-pg .tb-img-col {
        width: 100%;
        flex: none
    }

    .tech-pg .tb-img-frame img {
        height: 200px
    }

    .tech-pg .tb-h1 {
        font-size: 31px
    }

    .tech-pg .tb-desc {
        font-size: 15px
    }

    .tech-pg .stack-layout {
        flex-direction: column
    }

    .tech-pg .stack-metrics {
        flex: none;
        width: 100%;
        flex-direction: row
    }

    .tech-pg .metric-card {
        flex: 1 1 0
    }

    .tech-pg .approach-grid {
        grid-template-columns: 1fr
    }

    .tech-pg .approach-img-wrap img {
        height: 240px
    }

    .tech-pg .sec-heading {
        font-size: 31px
    }
}

@media (max-width: 320px) {
    .tech-pg .tb-h1 {
        font-size: 24px
    }

    .tech-pg .stack-metrics {
        flex-direction: column
    }

    .tech-pg .sec-heading {
        font-size: 24px
    }
}

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

.ctus-pg .pg-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px
}

.ctus-pg ::selection {
    background: linear-gradient(90deg, #480BBF, #F90C9C);
    color: #fff
}

.ctus-pg input::placeholder,
.ctus-pg textarea::placeholder {
    font-style: italic;
    opacity: .55
}

.ctus-pg .row-reveal {
    animation: rowIn .22s ease-out both
}

.ctus-pg .row-reveal.d1 {
    animation-delay: .08s
}

.ctus-pg .row-reveal.d2 {
    animation-delay: .16s
}

.ctus-pg .row-reveal.d3 {
    animation-delay: .24s
}

@keyframes rowIn {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

.ctus-pg .shake {
    animation: shakeBtn .18s linear
}

@keyframes shakeBtn {

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

    25% {
        transform: translateX(-6px)
    }

    75% {
        transform: translateX(6px)
    }
}

.ctus-pg .reach-block {
    background: linear-gradient(160deg, #f4f0ff 0%, #fff 55%, #fff0f8 100%);
    padding: 64px 0 32px;
    position: relative
}

.ctus-pg .reach-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%)
}

.ctus-pg .reach-inner {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.ctus-pg .reach-text {
    flex: 1 1 0;
    position: relative
}

.ctus-pg .reach-text::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -20px;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, #480BBF 0%, #F90C9C 100%);
    border-radius: 6px
}

.ctus-pg .reach-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #480BBF;
    margin-bottom: 12px;
    display: block
}

.ctus-pg .reach-h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.01em;
    color: #1b0a40;
    margin: 0 0 20px
}

.ctus-pg .reach-h1 span {
    background: linear-gradient(120deg, #480BBF 30%, #F90C9C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ctus-pg .reach-desc {
    font-size: 19px;
    line-height: 1.55;
    color: #3a2e5a;
    margin: 0 0 32px;
    max-width: 440px
}

.ctus-pg .reach-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ctus-pg .reach-info-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus-pg .ri-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #480BBF
}

.ctus-pg .ri-icon .material-icons {
    font-size: 20px
}

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

.ctus-pg .ri-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a40;
    letter-spacing: .01em
}

.ctus-pg .ri-val {
    font-size: 15px;
    color: #4a3f6b;
    line-height: 1.3
}

.ctus-pg .ri-val a {
    color: #480BBF;
    text-decoration: none;
    transition: color .12s ease-out
}

.ctus-pg .ri-val a:hover {
    color: #F90C9C;
    outline: 1px solid #F90C9C;
    outline-offset: 2px;
    border-radius: 6px
}

.ctus-pg .reach-img-col {
    flex: 0 0 420px;
    position: relative
}

.ctus-pg .reach-img-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21
}

.ctus-pg .reach-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter .9s linear
}

.ctus-pg .reach-img-wrap:hover img {
    filter: saturate(0) brightness(0.95)
}

.ctus-pg .reach-img-wrap.cycle-gray img {
    filter: saturate(0) brightness(0.92)
}

.ctus-pg .img-geo-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffffeb;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.ctus-pg .img-geo-tag .material-icons {
    font-size: 18px;
    color: #F90C9C
}

.ctus-pg .geo-text {
    font-size: 15px;
    font-weight: 600;
    color: #1b0a40
}

.ctus-pg .corner-line {
    position: absolute;
    pointer-events: none
}

.ctus-pg .corner-line.tl {
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border-top: 2px solid #480BBF;
    border-left: 2px solid #480BBF;
    border-radius: 6px 0 0 0
}

.ctus-pg .corner-line.br {
    bottom: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    border-bottom: 2px solid #F90C9C;
    border-right: 2px solid #F90C9C;
    border-radius: 0 0 6px 0
}

.ctus-pg .form-block {
    background: #fff;
    padding: 64px 0;
    position: relative
}

.ctus-pg .form-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, #f90c9c0a 0%, transparent 70%);
    pointer-events: none
}

.ctus-pg .form-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start
}

.ctus-pg .form-aside {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ctus-pg .aside-heading {
    font-size: 31px;
    font-weight: 900;
    color: #1b0a40;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0
}

.ctus-pg .aside-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #4a3f6b;
    margin: 0
}

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

.ctus-pg .metric-num {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(120deg, #480BBF 0%, #F90C9C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ctus-pg .metric-label {
    font-size: 15px;
    color: #6b5f8c;
    font-weight: 600;
    letter-spacing: .02em
}

.ctus-pg .service-chips {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .chip-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a40;
    margin-bottom: 4px
}

.ctus-pg .form-main {
    background: #faf8ff;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    position: relative
}

.ctus-pg .form-main::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    background: #480BBF;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: .18
}

.ctus-pg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ctus-pg .field-row {
    display: flex;
    flex-direction: row;
    gap: 20px
}

.ctus-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0
}

.ctus-pg .field-grp.full {
    flex: 1 1 100%
}

.ctus-pg .fld-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a40;
    letter-spacing: .01em
}

.ctus-pg .fld-label span {
    color: #F90C9C;
    margin-left: 2px
}

.ctus-pg .fld-input {
    border: 1.5px solid #d6caee;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 15px;
    color: #1b0a40;
    background: #fff;
    box-shadow: inset 0 1px 3px 0 #480bbf0f;
    transition: border-color .12s ease-out, box-shadow .15s ease-out;
    outline: none;
    width: 100%;
    box-sizing: border-box
}

.ctus-pg .fld-input:focus {
    border-color: #480BBF;
    box-shadow: inset 0 1px 3px 0 #480bbf1a 0 0 0 3px #480bbf17
}

.ctus-pg .checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px
}

.ctus-pg .chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.ctus-pg .chk-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #480BBF;
    cursor: pointer;
    flex-shrink: 0
}

.ctus-pg .chk-text {
    font-size: 15px;
    color: #3a2e5a;
    line-height: 1.3
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #480bbf0a;
    border-radius: 6px
}

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

.ctus-pg .privacy-text {
    font-size: 15px;
    color: #4a3f6b;
    line-height: 1.55
}

.ctus-pg .privacy-text a {
    color: #480BBF;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .1s ease-out
}

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

.ctus-pg .submit-btn {
    background: linear-gradient(120deg, #480BBF 0%, #6b2de0 100%);
    color: #fff;
    border: none;
    border-radius: 48px;
    padding: 20px 64px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    transition: background .12s ease-out, transform .1s ease-out, box-shadow .15s ease-out;
    align-self: flex-start
}

.ctus-pg .submit-btn:hover {
    background: linear-gradient(120deg, #3a08a0 0%, #F90C9C 100%);
    box-shadow: 0 10px 48px 0 #480bbf21;
    transform: translateY(-2px)
}

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

.ctus-pg .submit-btn:focus {
    outline: 3px solid #F90C9C;
    outline-offset: 3px
}

.ctus-pg .channels-block {
    background: linear-gradient(170deg, #1b0a40 0%, #2d1060 60%, #480BBF 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden
}

.ctus-pg .channels-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 50%, transparent 30%, #0a041c73 100%);
    pointer-events: none
}

.ctus-pg .channels-top {
    text-align: center;
    margin-bottom: 48px
}

.ctus-pg .channels-h2 {
    font-size: 41px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 12px
}

.ctus-pg .channels-sub {
    font-size: 15px;
    color: #ffffffb3;
    margin: 0;
    line-height: 1.55
}

.ctus-pg .channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.ctus-pg .ch-card {
    background: #ffffff12;
    border-radius: 6px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    transition: background .15s ease-out, transform .12s ease-out
}

.ctus-pg .ch-card:hover {
    background: #ffffff21;
    transform: translateY(-3px)
}

.ctus-pg .ch-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff14;
    position: absolute;
    top: 12px;
    right: 16px;
    letter-spacing: -.03em;
    pointer-events: none;
    user-select: none
}

.ctus-pg .ch-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: #f90c9c2e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F90C9C
}

.ctus-pg .ch-icon .material-icons {
    font-size: 24px
}

.ctus-pg .ch-title {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3
}

.ctus-pg .ch-detail {
    font-size: 15px;
    color: #ffffffa6;
    line-height: 1.55;
    margin: 0
}

.ctus-pg .ch-link {
    font-size: 15px;
    color: #c89fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .1s ease-out;
    margin-top: 4px
}

.ctus-pg .ch-link:hover {
    color: #F90C9C;
    outline: 1px solid #f90c9c80;
    outline-offset: 3px;
    border-radius: 6px
}

.ctus-pg .ch-link .material-icons {
    font-size: 16px
}

@media (max-width: 1024px) {
    .ctus-pg .reach-inner {
        flex-direction: column;
        gap: 32px
    }

    .ctus-pg .reach-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .ctus-pg .reach-img-wrap img {
        height: 280px
    }

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

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

@media (max-width: 768px) {
    .ctus-pg .reach-h1 {
        font-size: 41px
    }

    .ctus-pg .field-row {
        flex-direction: column;
        gap: 12px
    }

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

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

    .ctus-pg .metric-num {
        font-size: 56px
    }
}

@media (max-width: 320px) {
    .ctus-pg .pg-inner {
        padding: 0 12px
    }

    .ctus-pg .reach-h1 {
        font-size: 31px
    }

    .ctus-pg .submit-btn {
        padding: 20px 32px;
        font-size: 15px
    }
}

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

.frnt .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px
}

.frnt ::selection {
    background: linear-gradient(135deg, #480BBF, #F90C9C);
    color: #fff
}

.frnt :focus-visible {
    outline: 2px solid #480BBF;
    outline-offset: 3px
}

.frnt .tb {
    position: relative;
    padding: 64px 20px;
    text-align: center;
    background: #fff
}

.frnt .tb-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.frnt .tb-grid-bg svg {
    width: 100%;
    height: 100%;
    opacity: .045
}

.frnt .tb-stripe-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

@keyframes stripeDrift {
    0% {
        transform: translateX(-60px) translateY(-60px)
    }

    100% {
        transform: translateX(0px) translateY(0px)
    }
}

.frnt .tb-stripe-anim::before {
    content: '';
    position: absolute;
    inset: -120px;
    background: repeating-linear-gradient(-38deg, transparent, transparent 32px, #480bbf06 32px, #480bbf06 34px);
    animation: stripeDrift 6s linear infinite
}

.frnt .tb-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto
}

.frnt .tb-img-wrap {
    display: inline-block;
    margin-bottom: 32px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21
}

.frnt .tb-img-wrap img {
    display: block;
    width: 560px;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.1)
}

.frnt .tb-eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #F90C9C;
    margin-bottom: 20px
}

.frnt .tb-h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #18062e;
    margin: 0 0 20px
}

.frnt .tb-h1 span {
    display: block
}

.frnt .tb-h1 .ln2 {
    font-size: 70px;
    color: #480BBF;
    background: linear-gradient(118deg, #480BBF 30%, #F90C9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.frnt .tb-desc {
    font-size: 19px;
    line-height: 1.55;
    color: #2a1650;
    max-width: 520px;
    margin: 0 auto 32px
}

.frnt .tb-stats {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap
}

.frnt .tb-stat {
    text-align: center
}

.frnt .tb-stat-num {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    color: #480BBF;
    letter-spacing: -.01em
}

.frnt .tb-stat-num .accent-dig {
    color: #F90C9C
}

.frnt .tb-stat-lbl {
    font-size: 15px;
    color: #5a4575;
    line-height: 1.3;
    margin-top: 4px
}

.frnt .rep {
    position: relative;
    padding: 64px 20px;
    background: linear-gradient(107deg, #480BBF 0%, #f2f0fa 55%, #fff 100%)
}

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

.frnt .rep-top {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    margin-bottom: 48px
}

.frnt .rep-top-text {
    flex: 1 1 420px
}

.frnt .rep-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px
}

.frnt .rep-h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 20px
}

.frnt .rep-body {
    font-size: 19px;
    line-height: 1.55;
    color: #ffffffe0
}

.frnt .rep-img-col {
    flex: 0 0 380px;
    max-width: 380px
}

.frnt .rep-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.frnt .rep-img-wrap img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover
}

.frnt .rep-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.frnt .rep-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 #480bbf0f;
    position: relative;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.frnt .rep-card:hover {
    box-shadow: 0 4px 18px 0 #480bbf1a;
    transform: translateY(-3px)
}

.frnt .rep-card-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #480bbf14;
    letter-spacing: -.02em;
    position: absolute;
    top: 8px;
    right: 12px;
    pointer-events: none;
    user-select: none
}

.frnt .rep-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #480BBF, #F90C9C);
    border-radius: 6px;
    margin-bottom: 12px
}

.frnt .rep-card-icon .material-icons {
    color: #fff;
    font-size: 22px
}

.frnt .rep-card-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
    color: #18062e;
    margin: 0 0 8px
}

.frnt .rep-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2960
}

.frnt .curr {
    padding: 64px 20px;
    background: #fff;
    position: relative
}

.frnt .curr-circ-bg {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
    width: 400px;
    height: 400px;
    opacity: .04
}

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

.frnt .curr-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start
}

.frnt .curr-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F90C9C;
    margin-bottom: 12px
}

.frnt .curr-h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    color: #18062e;
    margin: 0 0 20px;
    letter-spacing: -.01em
}

.frnt .curr-lead {
    font-size: 19px;
    line-height: 1.55;
    color: #2a1650;
    margin-bottom: 32px
}

.frnt .curr-items {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.frnt .curr-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start
}

.frnt .curr-ring {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.frnt .curr-ring svg {
    position: absolute;
    inset: 0;
    width: 48px;
    height: 48px
}

.frnt .curr-ring-num {
    font-size: 15px;
    font-weight: 900;
    color: #480BBF;
    position: relative;
    z-index: 1
}

.frnt .curr-item-text {
    flex: 1
}

.frnt .curr-item-title {
    font-size: 19px;
    font-weight: 800;
    color: #18062e;
    margin: 0 0 4px;
    line-height: 1.3
}

.frnt .curr-item-body {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2960
}

.frnt .curr-right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.frnt .curr-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.frnt .curr-img-wrap img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover
}

.frnt .curr-pull {
    background: linear-gradient(107deg, #480BBF 0%, #6b2dcc 100%);
    border-radius: 6px;
    padding: 20px;
    color: #fff
}

.frnt .curr-pull-q {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px
}

.frnt .curr-pull-sub {
    font-size: 15px;
    line-height: 1.55;
    opacity: .85
}

.frnt .supp {
    padding: 64px 20px;
    position: relative;
    background: linear-gradient(107deg, #faf8ff 0%, #fff 60%, #fff5fb 100%)
}

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

.frnt .supp-top {
    text-align: center;
    margin-bottom: 48px
}

.frnt .supp-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #480BBF;
    margin-bottom: 12px
}

.frnt .supp-h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    color: #18062e;
    margin: 0 auto 20px;
    max-width: 600px;
    letter-spacing: -.01em
}

.frnt .supp-intro {
    font-size: 19px;
    line-height: 1.55;
    color: #2a1650;
    max-width: 560px;
    margin: 0 auto
}

.frnt .supp-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: start
}

.frnt .supp-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 #f90c9c0f;
    overflow: hidden;
    transition: box-shadow .2s ease-out, transform .18s ease-out
}

.frnt .supp-card:hover {
    box-shadow: 0 4px 18px 0 #f90c9c1a;
    transform: translateY(-4px)
}

.frnt .supp-card.featured {
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.frnt .supp-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.frnt .supp-card-body {
    padding: 20px
}

.frnt .supp-card-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #F90C9C;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.frnt .supp-card-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
    color: #18062e;
    margin: 0 0 12px
}

.frnt .supp-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2960;
    margin-bottom: 20px
}

.frnt .supp-sm-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 3px 0 #480bbf0f;
    transition: box-shadow .18s ease-out
}

.frnt .supp-sm-card:hover {
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.frnt .supp-sm-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #480bbf1a, #f90c9c1a);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.frnt .supp-sm-icon .material-icons {
    font-size: 24px;
    color: #480BBF
}

.frnt .supp-sm-title {
    font-size: 19px;
    font-weight: 800;
    color: #18062e;
    line-height: 1.3;
    margin: 0 0 8px
}

.frnt .supp-sm-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2960
}

.frnt .supp-sm-num {
    font-size: 41px;
    font-weight: 900;
    color: #480bbf12;
    line-height: 1.1;
    margin-top: 12px;
    letter-spacing: -.02em
}

.frnt .supp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(118deg, #480BBF, #F90C9C);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: .02em;
    transition: opacity .12s ease-out, transform .1s ease-out;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.frnt .supp-btn:hover {
    opacity: .88;
    transform: translateY(-2px)
}

.frnt .supp-btn:active {
    transform: translateY(0)
}

.frnt .supp-btn .material-icons {
    font-size: 19px
}

.frnt .char-hover {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap
}

.frnt .char-hover .ch {
    display: inline-block;
    transition: color .08s linear;
    color: #fff
}

.frnt .rep-card:hover .char-hover .ch:nth-child(1) {
    color: #F90C9C;
    transition-delay: 0s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(2) {
    color: #F90C9C;
    transition-delay: .04s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(3) {
    color: #F90C9C;
    transition-delay: .08s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(4) {
    color: #F90C9C;
    transition-delay: .12s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(5) {
    color: #F90C9C;
    transition-delay: .16s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(6) {
    color: #F90C9C;
    transition-delay: .2s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(7) {
    color: #F90C9C;
    transition-delay: .24s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(8) {
    color: #F90C9C;
    transition-delay: .28s
}

.frnt .rep-card:hover .char-hover .ch:nth-child(9) {
    color: #F90C9C;
    transition-delay: .32s
}

.frnt .rep-card-title .char-hover .ch {
    color: #18062e
}

.frnt a.boxlink {
    position: relative;
    color: #480BBF;
    text-decoration: none;
    transition: color .12s ease-out
}

.frnt a.boxlink:hover {
    outline: 1.5px solid #480BBF;
    outline-offset: 3px;
    border-radius: 0
}

@media (max-width: 1024px) {
    .frnt .rep-top {
        flex-direction: column;
        gap: 32px
    }

    .frnt .rep-img-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%
    }

    .frnt .rep-cards {
        grid-template-columns: 1fr 1fr
    }

    .frnt .curr-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frnt .supp-grid {
        grid-template-columns: 1fr 1fr
    }

    .frnt .supp-card.featured {
        grid-column: 1 / -1
    }
}

@media (max-width: 768px) {
    .frnt .tb-h1 {
        font-size: 41px
    }

    .frnt .tb-h1 .ln2 {
        font-size: 56px
    }

    .frnt .rep-cards {
        grid-template-columns: 1fr
    }

    .frnt .rep-h2 {
        font-size: 31px
    }

    .frnt .curr-h2,
    .frnt .supp-h2 {
        font-size: 31px
    }

    .frnt .supp-grid {
        grid-template-columns: 1fr
    }

    .frnt .supp-card.featured {
        grid-column: auto
    }

    .frnt .tb-stats {
        gap: 20px
    }
}

@media (max-width: 320px) {
    .frnt .tb-h1 {
        font-size: 31px
    }

    .frnt .tb-h1 .ln2 {
        font-size: 41px
    }

    .frnt .tb-img-wrap img {
        height: 180px
    }
}

.uprog {
    background: #fff;
    overflow-x: hidden
}

.uprog .pg-strip {
    background: linear-gradient(160deg, #f3eeff 0%, #fff 55%, #ffeef8 100%);
    padding: 64px 20px 48px
}

.uprog .pg-strip-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap
}

.uprog .pg-heading {
    flex: 1 1 480px
}

.uprog .pg-heading h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    font-weight: 900;
    color: #1b0050;
    margin: 0 0 12px;
    clip-path: inset(0 100% 0 0);
    animation: reveal-clip .22s ease-out .05s forwards
}

@keyframes reveal-clip {
    to {
        clip-path: inset(0 0% 0 0)
    }
}

.uprog .pg-heading p {
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #3a2060;
    margin: 0;
    max-width: 540px
}

.uprog .pg-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px
}

.uprog .pg-meta .count-badge {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    color: #480BBF;
    letter-spacing: .01em
}

.uprog .pg-meta .count-label {
    font-size: 15px;
    line-height: 1.55;
    color: #7a5ab5;
    letter-spacing: .02em;
    text-align: right
}

.uprog .divider-atm {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #480BBF 30%, #F90C9C 70%, transparent 100%);
    opacity: .18;
    border: none;
    margin: 0
}

.uprog .card-grid-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 20px
}

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

.uprog .prog-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .18s ease-out, transform .15s ease-out;
    position: relative
}

.uprog .prog-card:hover {
    box-shadow: 0 10px 48px 0 #480bbf21;
    transform: translateY(-3px)
}

.uprog .prog-card .card-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden
}

.uprog .prog-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .22s ease-out
}

.uprog .prog-card:hover .card-img-wrap img {
    transform: scale(1.04)
}

.uprog .prog-card .card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #480bbf14 0%, #480bbf61 100%);
    pointer-events: none
}

.uprog .prog-card .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.uprog .prog-card .card-ttl {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b0050;
    margin: 0
}

.uprog .prog-card .card-desc {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #3a2060;
    margin: 0;
    flex: 1
}

.uprog .prog-card .card-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px
}

.uprog .prog-card .card-price {
    font-size: 19px;
    font-weight: 900;
    color: #480BBF;
    letter-spacing: .01em;
    line-height: 1.3
}

.uprog .prog-card .card-likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #F90C9C;
    font-weight: 600;
    letter-spacing: .01em
}

.uprog .prog-card .card-likes .mat-icon {
    font-size: 19px;
    line-height: 1
}

.uprog .prog-card .card-link {
    display: inline-block;
    padding: 8px 20px;
    background: #480BBF;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    border-radius: 6px;
    text-decoration: none;
    transition: background .12s ease-out, box-shadow .15s ease-out;
    box-shadow: 0 1px 3px 0 #480bbf0f
}

.uprog .prog-card .card-link:hover {
    background: #3608a0;
    box-shadow: 0 4px 18px 0 #480bbf2e
}

.uprog .prog-card .card-link:focus {
    outline: 2px solid #F90C9C;
    outline-offset: 2px
}

.uprog .prog-card .corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    pointer-events: none
}

.uprog .prog-card .corner-br::before,
.uprog .prog-card .corner-br::after {
    content: '';
    position: absolute;
    background: #F90C9C;
    opacity: .35
}

.uprog .prog-card .corner-br::before {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 14px
}

.uprog .prog-card .corner-br::after {
    bottom: 0;
    right: 0;
    width: 14px;
    height: 2px
}

.uprog .divider-dot {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.uprog .divider-dot span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #480BBF44, transparent)
}

.uprog .divider-dot i {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #F90C9C;
    display: inline-block;
    opacity: .5
}

.uprog .info-strip {
    background: linear-gradient(135deg, #2a0470 0%, #480BBF 60%, #7b1fa2 100%);
    padding: 64px 20px;
    position: relative;
    overflow: hidden
}

.uprog .info-strip-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.uprog .info-strip-bg .geo-circle {
    position: absolute;
    border-radius: 48px;
    border: 1px solid #f90c9c1f
}

.uprog .info-strip-bg .geo-circle.c1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -60px
}

.uprog .info-strip-bg .geo-circle.c2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: 10%
}

.uprog .info-strip-bg .geo-rect {
    position: absolute;
    background: #f90c9c0f;
    border-radius: 6px;
    width: 200px;
    height: 200px;
    top: 30%;
    left: 40%;
    transform: rotate(25deg)
}

.uprog .info-strip-inner {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.uprog .info-strip-text h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 20px
}

.uprog .info-strip-text p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .01em;
    color: #fcfcfcd1;
    margin: 0 0 20px
}

.uprog .info-strip-text .strip-link {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #F90C9C;
    color: #F90C9C;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    border-radius: 6px;
    text-decoration: none;
    transition: background .12s ease-out, color .12s ease-out
}

.uprog .info-strip-text .strip-link:hover {
    background: #F90C9C;
    color: #fff
}

.uprog .info-strip-text .strip-link:focus {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.uprog .info-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.uprog .metric-box {
    background: #ffffff12;
    border-radius: 6px;
    padding: 20px;
    box-shadow: inset 0 1px 3px 0 #f90c9c1a;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.uprog .metric-box .m-val {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    color: #F90C9C;
    letter-spacing: .01em
}

.uprog .metric-box .m-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #fcfcfcc7;
    letter-spacing: .02em
}

.uprog .divider-atm2 {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #F90C9C 40%, #480BBF 60%, transparent 100%);
    opacity: .14;
    border: none;
    margin: 0
}

.uprog .format-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 64px 20px
}

.uprog .format-area h2 {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b0050;
    margin: 0 0 32px
}

.uprog .format-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.uprog .format-flow::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #480BBF 0%, #F90C9C 100%);
    opacity: .3;
    pointer-events: none
}

.uprog .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    text-align: center;
    position: relative;
    z-index: 1
}

.uprog .flow-step .step-num {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: linear-gradient(135deg, #480BBF 0%, #7b35d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .01em;
    box-shadow: 0 4px 18px 0 #480bbf2e;
    flex-shrink: 0
}

.uprog .flow-step .step-num.alt {
    background: linear-gradient(135deg, #F90C9C 0%, #c2007a 100%);
    box-shadow: 0 4px 18px 0 #f90c9c2e
}

.uprog .flow-step h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b0050;
    margin: 0;
    letter-spacing: .01em
}

.uprog .flow-step p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2060;
    margin: 0;
    letter-spacing: .01em
}

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

    .uprog .info-strip-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .uprog .format-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px
    }

    .uprog .format-flow::before {
        display: none
    }

    .uprog .pg-heading h1 {
        font-size: 41px
    }
}

@media (max-width: 768px) {
    .uprog .card-grid {
        grid-template-columns: 1fr
    }

    .uprog .info-metrics {
        grid-template-columns: 1fr 1fr
    }

    .uprog .format-flow {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .uprog .pg-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .uprog .pg-meta {
        align-items: flex-start
    }

    .uprog .pg-heading h1 {
        font-size: 31px
    }
}

@media (max-width: 320px) {
    .uprog .card-grid {
        grid-template-columns: 1fr
    }

    .uprog .info-metrics {
        grid-template-columns: 1fr
    }

    .uprog .format-flow {
        grid-template-columns: 1fr
    }
}

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

.abt-us .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px
}

.abt-us .dot-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0
}

.abt-us .dot-div span {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #480BBF;
    display: block;
    opacity: .4
}

.abt-us .dot-div span:nth-child(2) {
    background: #F90C9C;
    opacity: .6
}

.abt-us .tb {
    padding: 80px 0 48px;
    position: relative
}

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

.abt-us .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    position: relative;
    z-index: 1
}

.abt-us .tb-text {
    flex: 1 1 0;
    min-width: 0
}

.abt-us .tb-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #480BBF;
    margin-bottom: 20px;
    padding: 4px 12px;
    border: 1.5px solid #480bbf38;
    border-radius: 6px
}

.abt-us .tb-h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #18092e;
    margin: 0 0 32px
}

.abt-us .tb-h1 .accent-word {
    background: linear-gradient(127deg, #480BBF 30%, #F90C9C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt-us .tb-img-card {
    flex: 0 0 320px;
    width: 320px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21;
    position: relative;
    margin-top: 12px
}

.abt-us .tb-img-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: blur(0px);
    transition: filter .2s ease-out
}

.abt-us .tb-img-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #480bbf2e 0%, transparent 100%);
    pointer-events: none
}

.abt-us .tb-img-card img:hover {
    filter: blur(1.5px) brightness(0.97)
}

.abt-us .big-quote {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: #480bbf14;
    position: absolute;
    top: -20px;
    left: -12px;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.abt-us .story-sec {
    padding: 64px 0 48px;
    background: linear-gradient(160deg, #f5f2ff 0%, #fff 60%, #fff0f8 100%)
}

.abt-us .story-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 64px;
    align-items: start
}

.abt-us .story-main h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #18092e;
    margin: 0 0 20px
}

.abt-us .story-main p {
    font-size: 19px;
    line-height: 1.55;
    color: #2d2040;
    margin: 0 0 20px
}

.abt-us .story-main p:last-child {
    margin-bottom: 0
}

.abt-us .story-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt-us .stat-box {
    border-radius: 6px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 18px 0 #480bbf1a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .15s ease-out, transform .12s ease-out;
    cursor: default
}

.abt-us .stat-box:hover {
    box-shadow: 0 10px 48px 0 #480bbf21;
    transform: translateY(-2px)
}

.abt-us .stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #480BBF, #F90C9C)
}

.abt-us .stat-num {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px
}

.abt-us .stat-num .int-part {
    color: #480BBF
}

.abt-us .stat-num .frac-part {
    color: #F90C9C
}

.abt-us .stat-label {
    font-size: 15px;
    color: #5a4a72;
    line-height: 1.3
}

.abt-us .approach-sec {
    padding: 64px 0;
    background: #480BBF;
    position: relative;
    overflow: hidden
}

.abt-us .approach-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none
}

.abt-us .approach-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.abt-us .approach-head h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    flex: 1 1 0
}

.abt-us .approach-head p {
    font-size: 19px;
    line-height: 1.55;
    color: #ffffffd1;
    margin: 0;
    flex: 0 0 380px;
    max-width: 380px
}

.abt-us .approach-cols {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    z-index: 1
}

.abt-us .acol {
    flex: 1 1 0;
    border-radius: 6px;
    padding: 32px 20px;
    position: relative;
    transition: transform .1s ease-out
}

.abt-us .acol:hover {
    transform: translateY(-3px)
}

.abt-us .acol.zone-a {
    background: #ffffff1f;
    box-shadow: inset 0 1px 0 #fff3
}

.abt-us .acol.zone-b {
    background: #f90c9c2e;
    box-shadow: inset 0 1px 0 #f90c9c4d
}

.abt-us .acol.zone-c {
    background: #ffffff12;
    box-shadow: inset 0 1px 0 #ffffff1f
}

.abt-us .acol-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    opacity: .2;
    color: #fff;
    margin-bottom: 12px
}

.abt-us .acol h4 {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3
}

.abt-us .acol p {
    font-size: 15px;
    color: #fffc;
    line-height: 1.55;
    margin: 0
}

.abt-us .acol-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 20px
}

.abt-us .prog-sec {
    padding: 64px 0;
    background: #fff
}

.abt-us .prog-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start
}

.abt-us .prog-text h2 {
    font-size: 41px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #18092e;
    margin: 0 0 20px
}

.abt-us .prog-text p {
    font-size: 19px;
    line-height: 1.55;
    color: #2d2040;
    margin: 0 0 32px
}

.abt-us .prog-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 #480bbf0f
}

.abt-us .prog-table th {
    background: #480BBF;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 20px;
    text-align: left;
    letter-spacing: .02em
}

.abt-us .prog-table td {
    font-size: 15px;
    padding: 12px 20px;
    color: #2d2040;
    border-bottom: 1px solid #480bbf12
}

.abt-us .prog-table tr:last-child td {
    border-bottom: none
}

.abt-us .prog-table .lvl-z {
    background: #480bbf0a
}

.abt-us .prog-table .lvl-m {
    background: #f90c9c0d
}

.abt-us .prog-table .lvl-h {
    background: #480bbf1a
}

.abt-us .prog-table .cell-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px
}

.abt-us .prog-table .cell-tag.tag-basic {
    background: #480bbf1a;
    color: #480BBF
}

.abt-us .prog-table .cell-tag.tag-mid {
    background: #f90c9c1f;
    color: #b50070
}

.abt-us .prog-table .cell-tag.tag-adv {
    background: #480bbf33;
    color: #2d0090
}

.abt-us .prog-img-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #480bbf21;
    position: relative
}

.abt-us .prog-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .2s ease-out
}

.abt-us .prog-img-wrap:hover img {
    transform: scale(1.02)
}

.abt-us .prog-img-caption {
    background: linear-gradient(135deg, #480BBF, #F90C9C);
    padding: 12px 20px
}

.abt-us .prog-img-caption p {
    font-size: 15px;
    color: #fff;
    margin: 0;
    font-weight: 600
}

@keyframes icon-sway {
    0% {
        transform: translateY(0px) rotate(-2deg)
    }

    50% {
        transform: translateY(-6px) rotate(2deg)
    }

    100% {
        transform: translateY(0px) rotate(-2deg)
    }
}

.abt-us .float-icon {
    animation: icon-sway 3.5s ease-in-out infinite;
    display: inline-block;
    color: #480bbf40;
    font-size: 56px
}

.abt-us .sub-sec {
    padding: 64px 0;
    background: linear-gradient(155deg, #f8f4ff 0%, #fff5fb 100%)
}

.abt-us .sub-inner {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center
}

.abt-us .sub-text {
    flex: 1 1 0
}

.abt-us .sub-text h2 {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    color: #18092e;
    margin: 0 0 20px;
    letter-spacing: -.01em
}

.abt-us .sub-text p {
    font-size: 19px;
    line-height: 1.55;
    color: #2d2040;
    margin: 0
}

.abt-us .sub-form-wrap {
    flex: 0 0 400px;
    max-width: 400px;
    background: #fff;
    border-radius: 6px;
    padding: 32px;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.abt-us .sub-form-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: #18092e;
    margin: 0 0 20px;
    line-height: 1.3
}

.abt-us .sub-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-us .sub-form .field-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-us .sub-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2d2040
}

.abt-us .sub-form input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1.5px solid #480bbf33;
    border-radius: 6px;
    background: #faf8ff;
    color: #18092e;
    outline: none;
    transition: border-color .12s ease-out, box-shadow .12s ease-out;
    box-sizing: border-box
}

.abt-us .sub-form input::placeholder {
    font-style: italic;
    opacity: .55;
    color: #5a4a72
}

.abt-us .sub-form input:focus {
    border-color: #480BBF;
    box-shadow: inset 0 1px 4px #480bbf1a
}

.abt-us .sub-btn {
    margin-top: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(127deg, #480BBF 0%, #F90C9C 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .02em;
    transition: opacity .1s linear, transform .1s ease-out;
    box-shadow: 0 4px 18px 0 #480bbf1a
}

.abt-us .sub-btn:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.abt-us .sub-btn:active {
    transform: translateY(0);
    opacity: 1
}

@keyframes btn-shake {
    0% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-4px)
    }

    40% {
        transform: translateX(4px)
    }

    60% {
        transform: translateX(-3px)
    }

    80% {
        transform: translateX(2px)
    }

    100% {
        transform: translateX(0)
    }
}

.abt-us .sub-btn:invalid,
.abt-us .sub-btn.shake {
    animation: btn-shake .22s ease-out
}

.abt-us .sub-notice {
    font-size: 15px;
    color: #5a4a72;
    margin: 8px 0 0;
    line-height: 1.3;
    text-align: center
}

.abt-us .contact-strip {
    padding: 48px 0;
    background: #18092e
}

.abt-us .cstrip-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px
}

.abt-us .cstrip-img {
    flex: 0 0 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 48px 0 #f90c9c21
}

.abt-us .cstrip-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.abt-us .cstrip-body {
    flex: 1 1 0
}

.abt-us .cstrip-body h3 {
    font-size: 31px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3
}

.abt-us .cstrip-body p {
    font-size: 19px;
    line-height: 1.55;
    color: #ffffffbf;
    margin: 0 0 20px
}

.abt-us .cstrip-details {
    display: flex;
    flex-direction: column;
    gap: 8px
}

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

.abt-us .cdet .material-icons {
    font-size: 19px;
    color: #F90C9C
}

.abt-us .cdet a,
.abt-us .cdet span {
    font-size: 15px;
    color: #ffffffd1;
    text-decoration: none;
    transition: color .1s linear
}

.abt-us .cdet a:hover {
    color: #F90C9C;
    outline: 1px solid #f90c9c66;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .abt-us .tb-inner {
        gap: 32px
    }

    .abt-us .tb-img-card {
        flex: 0 0 260px;
        width: 260px
    }

    .abt-us .story-grid {
        grid-template-columns: 2fr 1fr;
        gap: 32px
    }

    .abt-us .prog-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px
    }

    .abt-us .approach-cols {
        flex-direction: column;
        gap: 12px
    }

    .abt-us .sub-inner {
        gap: 32px
    }

    .abt-us .sub-form-wrap {
        flex: 0 0 320px;
        max-width: 320px
    }
}

@media (max-width: 768px) {
    .abt-us .tb-inner {
        flex-direction: column;
        gap: 32px
    }

    .abt-us .tb-img-card {
        flex: none;
        width: 100%;
        max-width: 400px
    }

    .abt-us .tb-h1 {
        font-size: 41px
    }

    .abt-us .story-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-us .story-side {
        flex-direction: row;
        flex-wrap: wrap
    }

    .abt-us .stat-box {
        flex: 1 1 140px
    }

    .abt-us .approach-head {
        flex-direction: column;
        gap: 20px
    }

    .abt-us .approach-head p {
        flex: none;
        max-width: 100%
    }

    .abt-us .prog-layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .abt-us .prog-img-wrap {
        max-width: 100%
    }

    .abt-us .sub-inner {
        flex-direction: column;
        gap: 32px
    }

    .abt-us .sub-form-wrap {
        flex: none;
        max-width: 100%;
        width: 100%
    }

    .abt-us .cstrip-inner {
        flex-direction: column;
        gap: 32px
    }

    .abt-us .cstrip-img {
        flex: none;
        width: 100%;
        max-width: 400px
    }
}

@media (max-width: 320px) {
    .abt-us .tb-h1 {
        font-size: 31px
    }

    .abt-us .pg-wrap {
        padding: 0 12px
    }

    .abt-us .sub-form-wrap {
        padding: 20px
    }

    .abt-us .approach-head h2,
    .abt-us .story-main h2,
    .abt-us .prog-text h2 {
        font-size: 31px
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 20px;
    background: linear-gradient(160deg, #fff 60%, #f0eaff 100%)
}

.success-pg .success-card {
    max-width: 540px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 18px 0 #480bbf1a 0 1px 3px 0 #480bbf0f;
    padding: 64px 32px 48px;
    text-align: center;
    position: relative
}

.success-pg .success-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 48px;
    background: linear-gradient(135deg, #480BBF 0%, #F90C9C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 4px 18px 0 #f90c9c1a
}

.success-pg .success-card .icon-wrap svg {
    width: 32px;
    height: 32px;
    display: block
}

.success-pg .success-card .s-title {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b0a3e;
    margin: 0 0 20px
}

.success-pg .success-card .s-body {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #3a3050;
    margin: 0 0 32px
}

.success-pg .success-card .s-ref {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, #480BBF 0%, #F90C9C 100%);
    border-radius: 6px;
    padding: 12px 32px;
    text-decoration: none;
    box-shadow: 0 1px 3px 0 #480bbf0f;
    transition: box-shadow .12s ease-out, opacity .1s linear
}

.success-pg .success-card .s-ref:hover {
    box-shadow: 0 4px 18px 0 #480bbf21;
    opacity: .92
}

.success-pg .success-card .s-ref:focus {
    outline: 2px solid #480BBF;
    outline-offset: 3px
}

.success-pg .success-card .divider-line {
    width: 48px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, #480BBF, #F90C9C);
    margin: 32px auto 0
}

@media (max-width: 768px) {
    .success-pg {
        padding: 32px 12px
    }

    .success-pg .success-card {
        padding: 32px 20px
    }

    .success-pg .success-card .s-title {
        font-size: 24px
    }
}