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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    color: #1d1d1d;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em
}

.top-bar {
    background: linear-gradient(135deg, #f7f7f9 0%, #fefefe 100%);
    border-bottom: 1px solid #914af71f;
    position: relative
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #914AF7 50%, transparent 100%);
    opacity: .3
}

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

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

.logo-frame {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 44px;
    box-shadow: 0 0 0 3px #914af714 1px 4px 18px 0 #914af714;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.logo-frame:hover {
    box-shadow: 0 0 0 3px #914af726 1px 10px 60px 0 #914af721
}

.logo-frame img {
    width: 86px;
    height: 86px;
    object-fit: contain
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.brand-name {
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #14483A
}

.brand-tag {
    font-size: 14px;
    line-height: 1.4;
    color: #5a5a5a;
    letter-spacing: .02em
}

.nav-primary {
    flex: 1;
    display: flex;
    justify-content: flex-end
}

.nav-primary ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center
}

.nav-primary li {
    position: relative
}

.nav-primary a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #2d2d2d;
    text-decoration: none;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    transition: background .52s cubic-bezier(0.22, 1, 0.36, 1), border-color .48s ease-in-out, color .45s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: .01em;
    position: relative
}

.nav-primary a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #914AF7 0%, #FFEEA0 100%);
    opacity: 0;
    transition: opacity .58s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1
}

.nav-primary a:hover {
    color: #14483A;
    border-color: #914af733;
    background: #ffeea01f
}

.nav-primary a:hover::before {
    opacity: .06
}

.nav-primary a:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 4px
}

.nav-primary li:first-child a {
    font-weight: 700;
    color: #914AF7;
    background: #914af70f;
    border-color: #914af72e
}

.nav-primary li:first-child a:hover {
    background: #914af71f;
    border-color: #914af747
}

.location-display {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #14483a1a;
    box-shadow: 1px 2px 5px 0 #14483a12;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s ease-in-out
}

.location-display:hover {
    box-shadow: 1px 4px 18px 0 #14483a14;
    border-color: #14483a2e
}

.location-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.location-icon svg {
    width: 100%;
    height: 100%;
    fill: #914AF7;
    transition: transform .62s cubic-bezier(0.22, 1, 0.36, 1)
}

.location-display:hover .location-icon svg {
    transform: translateY(-2px)
}

.location-text {
    font-size: 14px;
    line-height: 1.4;
    color: #3d3d3d;
    letter-spacing: .005em
}

@media (max-width: 1280px) {
    .top-bar__inner {
        padding: 24px
    }

    .nav-primary {
        flex-basis: 100%;
        justify-content: center
    }

    .location-display {
        flex-basis: 100%;
        justify-content: center
    }
}

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

    .brand-zone {
        flex-direction: column;
        text-align: center;
        width: 100%
    }

    .logo-frame {
        width: 80px;
        height: 80px
    }

    .logo-frame img {
        width: 74px;
        height: 74px
    }

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

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

    .nav-primary li {
        width: 100%
    }

    .nav-primary a {
        text-align: center;
        padding: 16px 24px
    }
}

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

    .brand-name {
        font-size: 20px
    }

    .brand-tag {
        font-size: 13px
    }

    .location-text {
        font-size: 13px
    }
}

.base-footer {
    background: linear-gradient(180deg, #fafbfc 0%, #f4f5f7 100%);
    border-top: 1px solid #914af71a;
    margin-top: 96px;
    position: relative
}

.base-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFEEA0 30%, #914AF7 70%, transparent 100%);
    opacity: .4
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 48px 48px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 96px
}

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

.footer-col.tall {
    gap: 48px
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #914af71f;
    box-shadow: 1px 2px 5px 0 #914af712
}

.footer-logo-frame {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #914af714 0%, #ffeea014 100%);
    border-radius: 44px;
    flex-shrink: 0
}

.footer-logo-frame img {
    width: 58px;
    height: 58px;
    object-fit: contain
}

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

.footer-brand-name {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: #14483A;
    letter-spacing: -.005em
}

.footer-brand-tag {
    font-size: 13px;
    line-height: 1.4;
    color: #5a5a5a;
    letter-spacing: .015em
}

.footer-about {
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #14483a14;
    box-shadow: 1px 2px 5px 0 #14483a12
}

.footer-about-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #14483A;
    margin-bottom: 16px;
    letter-spacing: .005em
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    letter-spacing: .01em
}

.footer-heading {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #14483A;
    letter-spacing: .005em;
    padding-bottom: 8px;
    border-bottom: 2px solid #914af726
}

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

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #3d3d3d;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), transform .48s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: .005em
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background: #914AF7;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), background .5s ease-in-out
}

.footer-links a:hover {
    color: #914AF7;
    transform: translateX(4px)
}

.footer-links a:hover::before {
    transform: scale(1.4);
    background: #FFEEA0
}

.footer-links a:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 4px;
    border-radius: 4px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #914af714;
    transition: border-color .52s ease-in-out, box-shadow .58s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-item:hover {
    border-color: #914af72e;
    box-shadow: 1px 2px 5px 0 #914af712
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: #914AF7;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-item:hover .contact-icon svg {
    transform: rotate(8deg) scale(1.08)
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-label {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: #14483A;
    letter-spacing: .01em
}

.contact-value {
    font-size: 14px;
    line-height: 1.4;
    color: #3d3d3d;
    letter-spacing: .005em
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color .48s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-value a:hover {
    color: #914AF7
}

.contact-value a:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 2px;
    border-radius: 4px
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #914af726 50%, transparent 100%);
    margin: 48px 0
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.4;
    color: #5a5a5a;
    letter-spacing: .005em
}

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

.footer-legal-links a {
    font-size: 14px;
    line-height: 1.4;
    color: #5a5a5a;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: .005em
}

.footer-legal-links a:hover {
    color: #914AF7
}

.footer-legal-links a:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 4px;
    border-radius: 4px
}

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 48px
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 24px
    }

    .footer-legal-links {
        justify-content: center
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 48px 8px 24px
    }

    .footer-logo-box {
        flex-direction: column;
        text-align: center
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 16px;
        align-items: center
    }
}

.consent-overlay {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 460px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #914af733;
    box-shadow: 1px 10px 60px 0 #914af721;
    z-index: 1200;
    padding: 24px;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .58s cubic-bezier(0.22, 1, 0.36, 1), transform .62s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent-overlay.visible {
    opacity: 1;
    transform: translateY(0)
}

.consent-headline {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #14483A;
    margin-bottom: 16px;
    letter-spacing: -.005em
}

.consent-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
    letter-spacing: .005em
}

.consent-description a {
    color: #914AF7;
    text-decoration: none;
    border-bottom: 1px solid #914af74d;
    transition: border-color .48s ease-in-out
}

.consent-description a:hover {
    border-bottom-color: #914AF7
}

.consent-description a:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 2px;
    border-radius: 4px
}

.consent-categories {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px
}

.consent-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #914af70a;
    border-radius: 16px;
    border: 1px solid #914af714
}

.consent-category-label {
    font-size: 14px;
    line-height: 1.4;
    color: #2d2d2d;
    font-weight: 700;
    letter-spacing: .005em
}

.consent-toggle {
    width: 48px;
    height: 26px;
    background: #914af726;
    border-radius: 44px;
    border: 1px solid #914af733;
    position: relative;
    cursor: pointer;
    transition: background .52s cubic-bezier(0.22, 1, 0.36, 1), border-color .48s ease-in-out
}

.consent-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 44px;
    box-shadow: 1px 2px 5px 0 #914af712;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent-toggle.active {
    background: #914AF7;
    border-color: #914AF7
}

.consent-toggle.active::after {
    transform: translateX(22px)
}

.consent-toggle.disabled {
    opacity: .5;
    cursor: not-allowed
}

.consent-sale-notice {
    padding: 16px;
    background: #ffeea026;
    border-radius: 16px;
    border: 1px solid #ffeea066;
    margin-bottom: 24px
}

.consent-sale-text {
    font-size: 13px;
    line-height: 1.6;
    color: #3d3d3d;
    margin-bottom: 16px;
    letter-spacing: .005em
}

.consent-sale-control {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.consent-sale-label {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #14483A;
    letter-spacing: .005em
}

.consent-actions {
    display: flex;
    gap: 16px
}

.consent-btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Cabin', sans-serif;
    color: #914AF7;
    background: transparent;
    border: 2px solid #914AF7;
    border-radius: 16px;
    cursor: pointer;
    transition: background .52s cubic-bezier(0.22, 1, 0.36, 1), color .48s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s ease-in-out, transform .55s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: .01em
}

.consent-btn:hover {
    background: #914AF7;
    color: #fff;
    transform: translateY(-2px)
}

.consent-btn:focus-visible {
    outline: 2px solid #914AF7;
    outline-offset: 4px
}

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

@media (max-width: 768px) {
    .consent-overlay {
        top: auto;
        bottom: 24px;
        right: 24px;
        left: 24px;
        width: auto;
        max-width: none
    }
}

@media (max-width: 480px) {
    .consent-overlay {
        bottom: 8px;
        right: 8px;
        left: 8px;
        padding: 24px
    }

    .consent-actions {
        flex-direction: column
    }

    .consent-btn {
        width: 100%
    }
}

.policy-details {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff
}

.policy-details h1 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #14483A;
    margin: 0 0 48px
}

.policy-details h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 96px 0 24px
}

.policy-details h2:first-of-type {
    margin-top: 48px
}

.policy-details h3 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #14483A;
    margin: 48px 0 24px
}

.policy-details h4 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #14483A;
    margin: 24px 0 8px
}

.policy-details h5 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #14483A;
    margin: 24px 0 8px;
    font-weight: 600
}

.policy-details h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #14483A;
    margin: 24px 0 8px;
    font-weight: 600
}

.policy-details p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1a1a1a;
    margin: 0 0 24px
}

.policy-details ul,
.policy-details ol {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1a1a1a;
    margin: 0 0 24px;
    padding: 0 0 0 24px
}

.policy-details li {
    margin: 0 0 8px
}

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

.policy-details strong,
.policy-details b {
    font-weight: 600;
    color: #14483A
}

.policy-details a {
    color: #914AF7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.policy-details a:hover {
    border-bottom-color: #914AF7
}

.policy-details table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 48px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .01em
}

.policy-details thead {
    background: #f5f5f5
}

.policy-details th {
    text-align: left;
    padding: 24px;
    font-weight: 600;
    color: #14483A;
    border-bottom: 2px solid #914AF7
}

.policy-details td {
    padding: 24px;
    color: #1a1a1a;
    border-bottom: 1px solid #e8e8e8
}

.policy-details tbody tr:last-child td {
    border-bottom: none
}

.policy-details tbody tr:hover {
    background: #fafafa
}

@media (max-width: 768px) {
    .policy-details {
        padding: 24px
    }

    .policy-details h1 {
        font-size: 37px;
        margin-bottom: 24px
    }

    .policy-details h2 {
        font-size: 27px;
        margin-top: 48px
    }

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

    .policy-details table {
        font-size: 13px
    }

    .policy-details th,
    .policy-details td {
        padding: 8px
    }
}

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

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

    .policy-details table {
        display: block;
        overflow-x: auto
    }
}

.usluge-page {
    background: #fff;
    color: #2a2a2a;
    max-width: 1440px;
    margin: 0 auto
}

.usluge-page .intro-hero {
    background: linear-gradient(168deg, #f8f5ff 0%, #fff 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.usluge-page .intro-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 100%)
}

.usluge-page .intro-hero__container {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.usluge-page .intro-hero__heading {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #14483A;
    margin: 0 0 24px
}

.usluge-page .intro-hero__subtext {
    font-size: 20px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 0 48px
}

.usluge-page .intro-hero__description {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    max-width: 780px
}

.usluge-page .intro-hero__triangle-left {
    position: absolute;
    top: 48px;
    left: 24px;
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
    border-bottom: 56px solid #914AF7;
    opacity: .12;
    transform: rotate(25deg);
    pointer-events: none
}

.usluge-page .intro-hero__triangle-right {
    position: absolute;
    bottom: 120px;
    right: 48px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 68px solid #FFEEA0;
    opacity: .18;
    transform: rotate(-15deg);
    pointer-events: none
}

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

    .usluge-page .intro-hero__heading {
        font-size: 37px
    }

    .usluge-page .intro-hero__subtext {
        font-size: 16px
    }

    .usluge-page .intro-hero__triangle-left,
    .usluge-page .intro-hero__triangle-right {
        display: none
    }
}

.usluge-page .offerings-grid {
    background: linear-gradient(180deg, #fff 0%, #faf9fc 100%);
    padding: 96px 24px;
    position: relative;
    animation: gradientRotate 18s linear infinite
}

@keyframes gradientRotate {
    0% {
        background: linear-gradient(180deg, #fff 0%, #faf9fc 100%)
    }

    25% {
        background: linear-gradient(225deg, #fff 0%, #faf9fc 100%)
    }

    50% {
        background: linear-gradient(270deg, #fff 0%, #faf9fc 100%)
    }

    75% {
        background: linear-gradient(315deg, #fff 0%, #faf9fc 100%)
    }

    100% {
        background: linear-gradient(360deg, #fff 0%, #faf9fc 100%)
    }
}

.usluge-page .offerings-grid__container {
    max-width: 1280px;
    margin: 0 auto
}

.usluge-page .offerings-grid__header {
    text-align: center;
    margin: 0 0 48px
}

.usluge-page .offerings-grid__title {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.usluge-page .offerings-grid__title::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #914AF7 0%, #14483A 100%)
}

.usluge-page .offerings-grid__intro {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.usluge-page .offerings-grid__layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    align-items: start
}

.usluge-page .offering-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 1px 4px 18px 0 #914af714;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
    display: flex;
    flex-direction: column
}

.usluge-page .offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 1px 10px 60px 0 #914af721
}

.usluge-page .offering-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 44px;
    background: linear-gradient(135deg, #914AF7 0%, #14483A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    transition: transform .48s ease-in-out
}

.usluge-page .offering-card:hover .offering-card__icon {
    transform: rotate(12deg)
}

.usluge-page .offering-card__icon svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.usluge-page .offering-card__name {
    font-size: 20px;
    line-height: 1.4;
    color: #14483A;
    margin: 0 0 8px;
    font-weight: 600
}

.usluge-page .offering-card__detail {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0 0 24px;
    flex-grow: 1
}

.usluge-page .offering-card__features {
    list-style: none;
    margin: 0;
    padding: 0
}

.usluge-page .offering-card__features li {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8
}

.usluge-page .offering-card__features li:last-child {
    border-bottom: none
}

.usluge-page .offering-card--center {
    grid-column: 2;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff 100%)
}

.usluge-page .offering-card__image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 0 24px
}

.usluge-page .offering-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .62s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.85)
}

.usluge-page .offering-card:hover .offering-card__image {
    filter: brightness(1.1)
}

.usluge-page .offerings-grid__arrows {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0 0
}

.usluge-page .offerings-grid__arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #914AF7;
    opacity: .6
}

@media (max-width: 1280px) {
    .usluge-page .offerings-grid__layout {
        grid-template-columns: 1fr 1fr
    }

    .usluge-page .offering-card--center {
        grid-column: 1 / -1
    }
}

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

    .usluge-page .offerings-grid__title {
        font-size: 27px
    }

    .usluge-page .offerings-grid__title::before {
        left: -24px
    }

    .usluge-page .offerings-grid__layout {
        grid-template-columns: 1fr
    }

    .usluge-page .offering-card--center {
        grid-column: 1
    }
}

.usluge-page .contact-timeline {
    background: #14483A !important;
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.usluge-page .contact-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 120px solid #FFEEA0;
    border-left: 120px solid transparent;
    opacity: .15;
    pointer-events: none
}

.usluge-page .contact-timeline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 100px solid #914AF7;
    border-right: 100px solid transparent;
    opacity: .12;
    pointer-events: none
}

.usluge-page .contact-timeline__container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.usluge-page .contact-timeline__left {
    position: relative
}

.usluge-page .contact-timeline__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #FFEEA0;
    margin: 0 0 24px
}

.usluge-page .contact-timeline__text {
    font-size: 16px;
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0 0 48px
}

.usluge-page .timeline-steps {
    position: relative;
    padding: 0 0 0 48px
}

.usluge-page .timeline-steps::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #914AF7 0%, #FFEEA0 100%)
}

.usluge-page .timeline-step {
    position: relative;
    margin: 0 0 24px
}

.usluge-page .timeline-step:last-child {
    margin-bottom: 0
}

.usluge-page .timeline-step__marker {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 44px;
    background: #FFEEA0;
    border: 2px solid #14483A;
    box-shadow: 1px 2px 5px 0 #ffeea012
}

.usluge-page .timeline-step__label {
    font-size: 14px;
    line-height: 1.4;
    color: #c8c8c8;
    margin: 0 0 8px
}

.usluge-page .timeline-step__title {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0;
    font-weight: 600
}

.usluge-page .contact-timeline__right {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 1px 10px 60px 0 #914af721
}

.usluge-page .contact-form__title {
    font-size: 27px;
    line-height: 1.1;
    color: #14483A;
    margin: 0 0 8px;
    font-weight: 700
}

.usluge-page .contact-form__subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6a6a;
    margin: 0 0 24px
}

.usluge-page .contact-form__field {
    margin: 0 0 24px
}

.usluge-page .contact-form__label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #3a3a3a;
    margin: 0 0 8px;
    font-weight: 600
}

.usluge-page .contact-form__input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    line-height: 1.4;
    color: #2a2a2a;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    transition: border-color .48s ease-in-out, box-shadow .48s ease-in-out;
    box-sizing: border-box
}

.usluge-page .contact-form__input::placeholder {
    color: #9a9a9a
}

.usluge-page .contact-form__input:focus {
    outline: none;
    border-color: #914AF7;
    box-shadow: 0 0 0 3px #914af71f
}

.usluge-page .contact-form__input:invalid:not(:placeholder-shown) {
    border-color: #d94848
}

.usluge-page .contact-form__select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    line-height: 1.4;
    color: #2a2a2a;
    background: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    transition: border-color .48s ease-in-out, box-shadow .48s ease-in-out;
    box-sizing: border-box;
    cursor: pointer
}

.usluge-page .contact-form__select:focus {
    outline: none;
    border-color: #914AF7;
    box-shadow: 0 0 0 3px #914af71f
}

.usluge-page .contact-form__privacy {
    margin: 0 0 24px;
    display: flex;
    align-items: start;
    gap: 8px
}

.usluge-page .contact-form__checkbox {
    margin: 4px 0 0;
    flex-shrink: 0;
    cursor: pointer
}

.usluge-page .contact-form__privacy-text {
    font-size: 13px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0
}

.usluge-page .contact-form__privacy-link {
    color: #914AF7;
    text-decoration: underline;
    transition: color .48s ease-in-out
}

.usluge-page .contact-form__privacy-link:hover {
    color: #14483A
}

.usluge-page .contact-form__submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    background: #14483A;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 1px 4px 18px 0 #14483a14
}

.usluge-page .contact-form__submit:hover {
    background: #0f3a2e;
    transform: translateY(-2px);
    box-shadow: 1px 10px 60px 0 #14483a21
}

.usluge-page .contact-form__submit:active {
    transform: translateY(0)
}

.usluge-page .contact-form__submit:disabled {
    background: #c8c8c8;
    cursor: not-allowed;
    transform: none
}

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

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

    .usluge-page .contact-timeline__heading {
        font-size: 27px
    }

    .usluge-page .contact-timeline__right {
        padding: 24px
    }

    .usluge-page .contact-form__title {
        font-size: 20px
    }
}

@media (max-width: 480px) {
    .usluge-page .timeline-steps {
        padding-left: 32px
    }

    .usluge-page .timeline-step__marker {
        left: -24px
    }
}

.usluge-page ::selection {
    background: #914AF7;
    color: #fff
}

.about-page {
    background: #fff;
    color: #1a1a1a;
    max-width: 1440px;
    margin: 0 auto
}

.about-page .split-intro {
    display: flex;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    margin-bottom: 96px
}

.about-page .split-intro__left {
    flex: 1;
    background: #914AF7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 96px 48px;
    position: relative
}

.about-page .split-intro__right {
    flex: 1;
    background: #14483A;
    position: relative;
    overflow: hidden
}

.about-page .split-intro__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative
}

.about-page .split-intro__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #14483acc 0%, #14483a00 100%);
    pointer-events: none
}

.about-page .split-intro__atmosphere {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 44px;
    filter: blur(80px);
    opacity: .15;
    pointer-events: none;
    z-index: 1
}

.about-page .split-intro__atmosphere:first-of-type {
    background: #FFEEA0;
    top: -80px;
    left: -80px
}

.about-page .split-intro__atmosphere:last-of-type {
    background: #14483A;
    bottom: -80px;
    right: -80px
}

.about-page .split-intro__text {
    max-width: 520px;
    position: relative;
    z-index: 2
}

.about-page .split-intro__heading {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 24px
}

.about-page .split-intro__desc {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffeb;
    margin: 0
}

.about-page .foundation {
    padding: 96px 48px;
    background: #FFEEA0;
    position: relative;
    overflow: hidden
}

.about-page .foundation__anchor {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 180px;
    line-height: 1;
    font-weight: 700;
    color: #914af714;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none
}

.about-page .foundation__wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.about-page .foundation__label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #14483A;
    margin: 0 0 24px;
    padding-left: 8px;
    border-left: 4px solid #914AF7
}

.about-page .foundation__title {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 48px
}

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

.about-page .foundation__card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 24px;
    box-shadow: 1px 4px 18px 0 #914af714;
    position: relative;
    overflow: hidden;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-page .foundation__card:hover {
    transform: translateY(-4px);
    box-shadow: 1px 10px 60px 0 #914af721
}

.about-page .foundation__card:nth-child(1) {
    background: linear-gradient(135deg, #fff 0%, #914af70a 100%)
}

.about-page .foundation__card:nth-child(2) {
    background: linear-gradient(135deg, #fff 0%, #14483a0a 100%)
}

.about-page .foundation__card:nth-child(3) {
    background: linear-gradient(135deg, #fff 0%, #ffeea026 100%)
}

.about-page .foundation__card-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-page .foundation__card:hover .foundation__card-icon {
    transform: rotate(8deg) scale(1.05)
}

.about-page .foundation__card-icon svg {
    width: 100%;
    height: 100%
}

.about-page .foundation__card:nth-child(1) .foundation__card-icon svg {
    fill: #914AF7
}

.about-page .foundation__card:nth-child(2) .foundation__card-icon svg {
    fill: #14483A
}

.about-page .foundation__card:nth-child(3) .foundation__card-icon svg {
    fill: #914AF7
}

.about-page .foundation__card-name {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 8px;
    font-weight: 600
}

.about-page .foundation__card-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #14483acc;
    margin: 0
}

.about-page .foundation__shared {
    margin-top: 48px;
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 1px 2px 5px 0 #914af712;
    position: relative
}

.about-page .foundation__shared-bar {
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 4px;
    background: linear-gradient(90deg, #914AF7 0%, #14483A 100%);
    border-radius: 4px
}

.about-page .foundation__shared-title {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 24px
}

.about-page .foundation__shared-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.about-page .foundation__shared-col p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #14483ae6;
    margin: 0 0 24px
}

.about-page .foundation__shared-col p:last-child {
    margin-bottom: 0
}

.about-page .foundation__shared-col p:first-child {
    text-indent: -24px;
    padding-left: 24px
}

.about-page .divider {
    max-width: 360px;
    height: 8px;
    background: linear-gradient(90deg, #914af733 0%, #14483a33 100%);
    border-radius: 44px;
    margin: 0 auto 96px
}

.about-page .team-showcase {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.about-page .team-showcase__wrap {
    max-width: 1200px;
    margin: 0 auto
}

.about-page .team-showcase__label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #14483A;
    margin: 0 0 24px;
    padding-left: 8px;
    border-left: 4px solid #914AF7
}

.about-page .team-showcase__title {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 48px
}

.about-page .team-showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.about-page .team-member {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 4px 18px 0 #14483a14;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .65s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative
}

.about-page .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 1px 10px 60px 0 #14483a21
}

.about-page .team-member__visual {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden
}

.about-page .team-member__visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #0006 100%);
    z-index: 1;
    pointer-events: none
}

.about-page .team-member__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1)
}

.about-page .team-member:hover .team-member__photo {
    transform: scale(1.06)
}

.about-page .team-member__reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #914af7d9 0%, #14483ad9 100%);
    clip-path: circle(0% at 0% 0%);
    transition: clip-path .6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.about-page .team-member:hover .team-member__reveal {
    clip-path: circle(150% at 0% 0%)
}

.about-page .team-member__reveal-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, transform .5s cubic-bezier(0.22, 1, 0.36, 1) .1s
}

.about-page .team-member:hover .team-member__reveal-text {
    opacity: 1;
    transform: translateY(0)
}

.about-page .team-member__info {
    padding: 24px
}

.about-page .team-member__name {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 8px;
    font-weight: 600
}

.about-page .team-member__role {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #14483ab3;
    margin: 0
}

.about-page .icon-cycle {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
    padding: 48px;
    background: linear-gradient(135deg, #914af70a 0%, #ffeea014 100%);
    border-radius: 16px
}

.about-page .icon-cycle__item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .3;
    transition: opacity .5s ease-in-out
}

.about-page .icon-cycle__item svg {
    width: 100%;
    height: 100%;
    fill: #914AF7
}

.about-page .icon-cycle__item:nth-child(1) {
    animation: iconHighlight 6s cubic-bezier(0.22, 1, 0.36, 1) infinite
}

.about-page .icon-cycle__item:nth-child(2) {
    animation: iconHighlight 6s cubic-bezier(0.22, 1, 0.36, 1) 1s infinite
}

.about-page .icon-cycle__item:nth-child(3) {
    animation: iconHighlight 6s cubic-bezier(0.22, 1, 0.36, 1) 2s infinite
}

.about-page .icon-cycle__item:nth-child(4) {
    animation: iconHighlight 6s cubic-bezier(0.22, 1, 0.36, 1) 3s infinite
}

.about-page .icon-cycle__item:nth-child(5) {
    animation: iconHighlight 6s cubic-bezier(0.22, 1, 0.36, 1) 4s infinite
}

@keyframes iconHighlight {

    0%,
    100% {
        opacity: .3
    }

    16.66% {
        opacity: 1
    }

    33.33% {
        opacity: .3
    }
}

@media (max-width: 1280px) {
    .about-page .split-intro {
        flex-direction: column;
        min-height: auto
    }

    .about-page .split-intro__left {
        padding: 96px 48px
    }

    .about-page .split-intro__right {
        min-height: 400px
    }

    .about-page .foundation__grid {
        grid-template-columns: 1fr
    }

    .about-page .foundation__shared-content {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .about-page .team-showcase__grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .about-page .split-intro__heading {
        font-size: 37px
    }

    .about-page .split-intro__left,
    .about-page .foundation,
    .about-page .team-showcase {
        padding: 48px 24px
    }

    .about-page .foundation__title,
    .about-page .team-showcase__title {
        font-size: 27px
    }

    .about-page .foundation__anchor {
        font-size: 120px;
        top: 24px;
        right: 24px
    }

    .about-page .foundation__shared {
        padding: 24px
    }

    .about-page .foundation__shared-bar {
        left: 24px;
        right: 24px
    }

    .about-page .icon-cycle {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px
    }

    .about-page .icon-cycle__item {
        width: 48px;
        height: 48px
    }
}

@media (max-width: 480px) {
    .about-page .split-intro__heading {
        font-size: 27px
    }

    .about-page .split-intro__desc {
        font-size: 14px
    }

    .about-page .foundation__title,
    .about-page .team-showcase__title {
        font-size: 20px
    }

    .about-page .foundation__card {
        padding: 24px
    }

    .about-page .foundation__shared-title {
        font-size: 20px
    }
}

.learning-program {
    background: #fefefe;
    color: #1a1414
}

.learning-program .program-intro {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.learning-program .intro-left {
    padding-right: 96px
}

.learning-program .intro-left h1 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    color: #1a1414
}

.learning-program .intro-stripe {
    width: 120px;
    height: 4px;
    background: linear-gradient(127deg, #914AF7 0%, #14483A 100%);
    margin-bottom: 48px;
    border-radius: 4px
}

.learning-program .intro-right {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 1px 10px 60px 0 #914af721
}

.learning-program .intro-right img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.3);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.learning-program .intro-right:hover img {
    filter: grayscale(0%) contrast(1)
}

.learning-program .intro-dashed {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    border: 2px dashed #914AF7;
    border-radius: 44px;
    opacity: .4;
    pointer-events: none
}

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

    .learning-program .intro-left {
        padding-right: 0
    }

    .learning-program .intro-left h1 {
        font-size: 37px
    }

    .learning-program .intro-right img {
        height: 380px
    }

    .learning-program .intro-dashed {
        width: 120px;
        height: 120px;
        top: -12px;
        right: -12px
    }
}

.learning-program .structure-overview {
    background: #f7f7f7;
    padding: 96px 24px;
    position: relative
}

.learning-program .structure-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1440px;
    height: 3px;
    background: #fff;
    box-shadow: 0 3px 0 0 #14483A
}

.learning-program .structure-wrap {
    max-width: 1440px;
    margin: 0 auto
}

.learning-program .structure-wrap h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 8px;
    color: #1a1414;
    padding-left: 24px;
    border-left: 5px solid #914AF7
}

.learning-program .structure-wrap>p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 48px;
    max-width: 720px;
    color: #3a3333
}

.learning-program .three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.learning-program .col-card {
    padding: 48px 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.learning-program .col-card:nth-child(1) {
    background: linear-gradient(165deg, #fff 0%, #f5f0fe 100%);
    box-shadow: 1px 2px 5px 0 #914af712
}

.learning-program .col-card:nth-child(2) {
    background: linear-gradient(165deg, #fff 0%, #e8f4f1 100%);
    box-shadow: 1px 2px 5px 0 #14483a12
}

.learning-program .col-card:nth-child(3) {
    background: linear-gradient(165deg, #fff 0%, #fffcf0 100%);
    box-shadow: 1px 2px 5px 0 #914af712
}

.learning-program .col-card:hover {
    transform: translateY(-8px)
}

.learning-program .col-card h3 {
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.005em;
    margin: 0 0 24px;
    color: #1a1414
}

.learning-program .col-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #3a3333
}

.learning-program .col-card p:last-child {
    margin-bottom: 0
}

.learning-program .col-card ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0
}

.learning-program .col-card li {
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 0;
    border-bottom: 1px solid #3a333326;
    color: #3a3333
}

.learning-program .col-card li:last-child {
    border-bottom: none
}

.learning-program .card-trace {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #914AF7;
    border-radius: 16px;
    opacity: 0;
    animation: trace-border 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    pointer-events: none
}

.learning-program .col-card:nth-child(2) .card-trace {
    border-color: #14483A;
    animation-delay: .3s
}

.learning-program .col-card:nth-child(3) .card-trace {
    border-color: #FFEEA0;
    animation-delay: .6s
}

@keyframes trace-border {
    0% {
        clip-path: polygon(0 0, 0 0, 0 0, 0 0);
        opacity: 1
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 1
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1
    }

    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0
    }
}

@media (max-width: 1280px) {
    .learning-program .three-col-grid {
        grid-template-columns: 1fr
    }

    .learning-program .col-card {
        padding: 24px
    }
}

@media (max-width: 768px) {
    .learning-program .structure-overview {
        padding: 48px 24px
    }

    .learning-program .structure-wrap h2 {
        font-size: 27px
    }
}

.learning-program .practical-focus {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.learning-program .practical-wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 96px;
    align-items: start
}

.learning-program .practical-left {
    position: sticky;
    top: 96px
}

.learning-program .practical-left h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 24px;
    color: #1a1414
}

.learning-program .practical-left p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #3a3333;
    text-indent: -24px;
    padding-left: 24px
}

.learning-program .practical-left p:first-of-type {
    font-size: 14px;
    line-height: 1.4
}

.learning-program .practical-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learning-program .exercise-block {
    background: #fefefe;
    border: 1px solid #e8e6e6;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s ease-in-out, border-color .5s ease-in-out
}

.learning-program .exercise-block:hover {
    box-shadow: 1px 4px 18px 0 #14483a14;
    border-color: #14483A
}

.learning-program .exercise-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #914af714 50%, transparent 100%);
    transition: left .65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none
}

.learning-program .exercise-block:hover::before {
    left: 100%
}

.learning-program .exercise-block h4 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -.005em;
    margin: 0 0 8px;
    color: #1a1414
}

.learning-program .exercise-block p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #3a3333
}

.learning-program .exercise-num {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: #FFEEA0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #14483A;
    box-shadow: inset 0 4px 8px 0 #14483a26
}

@media (max-width: 1280px) {
    .learning-program .practical-wrap {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .learning-program .practical-left {
        position: static
    }
}

@media (max-width: 768px) {
    .learning-program .practical-focus {
        padding: 48px 24px
    }

    .learning-program .practical-left h2 {
        font-size: 27px
    }

    .learning-program .practical-left p {
        text-indent: 0;
        padding-left: 0
    }
}

.learning-program .enrollment-details {
    background: linear-gradient(147deg, #f9f9f9 0%, #fff 100%);
    padding: 96px 24px;
    position: relative
}

.learning-program .enrollment-wrap {
    max-width: 1440px;
    margin: 0 auto
}

.learning-program .enrollment-wrap h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 48px;
    color: #1a1414;
    text-align: center
}

.learning-program .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 48px
}

.learning-program .detail-column h3 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -.005em;
    margin: 0 0 24px;
    color: #1a1414;
    padding-left: 24px;
    border-left: 4px solid #914AF7
}

.learning-program .detail-column p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #3a3333
}

.learning-program .detail-column p:last-child {
    margin-bottom: 0
}

.learning-program .photo-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 440px;
    box-shadow: 1px 4px 18px 0 #914af714
}

.learning-program .photo-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1)
}

.learning-program .photo-showcase:hover img {
    transform: scale(1.05)
}

.learning-program .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #14483ad9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    pointer-events: none
}

.learning-program .photo-showcase:hover .photo-overlay {
    opacity: 1
}

.learning-program .overlay-text {
    color: #fff;
    font-size: 27px;
    line-height: 1.4;
    text-align: center;
    padding: 24px;
    max-width: 560px
}

@media (max-width: 1280px) {
    .learning-program .details-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 768px) {
    .learning-program .enrollment-details {
        padding: 48px 24px
    }

    .learning-program .enrollment-wrap h2 {
        font-size: 27px;
        margin-bottom: 24px
    }

    .learning-program .photo-showcase {
        height: 320px
    }

    .learning-program .overlay-text {
        font-size: 20px
    }
}

.reach-out {
    background: #FFF;
    color: #14483A;
    max-width: 1440px;
    margin: 0 auto
}

.reach-out__title-zone {
    position: relative;
    padding: 48px 24px;
    background: linear-gradient(168deg, #914AF7 0%, #914af700 100%);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.reach-out__title-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFEEA0
}

.reach-out__visual-crop {
    width: 280px;
    height: 180px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, #ffeea04d 0%, #14483a26 100%);
    border: 2px solid #914af733;
    align-self: flex-start
}

.reach-out__main-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
    color: #14483A
}

.reach-out__lead-text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    margin: 0;
    max-width: 620px;
    color: #14483A
}

.reach-out__form-container {
    padding: 96px 24px;
    background: #FFF;
    position: relative
}

.reach-out__form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #914af70a 1px, transparent 1px), radial-gradient(circle, #914af70f 2px, transparent 2px), radial-gradient(circle, #914af708 1.5px, transparent 1.5px);
    background-size: 60px 60px, 120px 120px, 90px 90px;
    background-position: 0 0, 30px 30px, 15px 45px;
    pointer-events: none
}

.reach-out__layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reach-out__info-block {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.reach-out__contact-group {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.reach-out__group-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #914AF7;
    margin: 0;
    font-weight: 600
}

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

.reach-out__detail-item {
    padding: 8px 0;
    border-bottom: 1px solid #914af71f;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .005em;
    color: #14483A;
    transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-out__detail-item:hover {
    border-bottom-color: #914AF7
}

.reach-out__detail-link {
    color: inherit;
    text-decoration: none;
    transition: color .48s ease-in-out
}

.reach-out__detail-link:hover {
    color: #914AF7
}

.reach-out__connection-visual {
    position: relative;
    padding: 48px 24px;
    background: linear-gradient(217deg, #ffeea026 0%, #fff0 100%);
    border-radius: 16px;
    box-shadow: 1px 4px 18px 0 #914af714
}

.reach-out__diagram-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
}

.reach-out__node {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #FFF;
    border-radius: 16px;
    box-shadow: 1px 2px 5px 0 #14483a12;
    position: relative;
    transition: transform .62s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .62s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-out__node:hover {
    transform: translateX(8px);
    box-shadow: 1px 10px 60px 0 #914af721
}

.reach-out__node::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #914AF7 0%, #FFEEA0 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    opacity: .2;
    pointer-events: none
}

.reach-out__node-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #914af71a 0%, #ffeea01a 100%);
    border-radius: 44px;
    transition: transform .52s ease-in-out
}

.reach-out__node:hover .reach-out__node-icon {
    transform: rotate(12deg)
}

.reach-out__icon-shape {
    width: 24px;
    height: 24px;
    fill: #914AF7
}

.reach-out__node-text {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .01em;
    margin: 0;
    color: #14483A
}

.reach-out__connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, #914AF7 0%, #FFEEA0 100%);
    margin-left: 48px;
    opacity: .4
}

.reach-out__form-wrapper {
    background: #FFF;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 1px 10px 60px 0 #14483a21;
    position: relative
}

.reach-out__form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #914AF7 0%, #FFEEA0 100%);
    border-radius: 16px 0 0 16px;
    animation: reach-out-bleed 8s ease-in-out infinite
}

@keyframes reach-out-bleed {

    0%,
    100% {
        opacity: .3;
        width: 8px
    }

    50% {
        opacity: 1;
        width: 24px
    }
}

.reach-out__form-heading {
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 24px;
    color: #14483A;
    position: relative;
    padding-left: 24px
}

.reach-out__form-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #914AF7
}

.reach-out__form-element {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.reach-out__field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.reach-out__field-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #14483A;
    font-weight: 600
}

.reach-out__text-input,
.reach-out__select-input {
    padding: 24px;
    border: 2px solid #914af726;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .005em;
    color: #14483A;
    background: #FFF;
    transition: border-color .58s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .58s cubic-bezier(0.22, 1, 0.36, 1);
    appearance: none
}

.reach-out__text-input:focus,
.reach-out__select-input:focus {
    outline: none;
    border-color: #914AF7;
    box-shadow: inset 0 0 0 2px #914af71a
}

.reach-out__text-input::placeholder {
    color: #14483a66;
    font-style: italic
}

.reach-out__select-wrapper {
    position: relative
}

.reach-out__select-wrapper::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #914AF7;
    pointer-events: none;
    transition: transform .45s ease-in-out
}

.reach-out__select-input:focus+.reach-out__select-wrapper::after {
    transform: translateY(-50%) rotate(180deg)
}

.reach-out__select-input {
    width: 100%;
    cursor: pointer;
    padding-right: 56px
}

.reach-out__consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: #ffeea014;
    border-radius: 4px;
    border: 1px solid #914af71a;
    transition: background .52s cubic-bezier(0.22, 1, 0.36, 1), border-color .52s cubic-bezier(0.22, 1, 0.36, 1)
}

.reach-out__consent-wrapper:has(.reach-out__checkbox-input:checked) {
    background: #914af70d;
    border-color: #914AF7
}

.reach-out__checkbox-input {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #914AF7;
    margin: 0
}

.reach-out__consent-text {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #14483A;
    margin: 0
}

.reach-out__policy-link {
    color: #914AF7;
    text-decoration: underline;
    transition: color .48s ease-in-out
}

.reach-out__policy-link:hover {
    color: #14483A
}

.reach-out__submit-btn {
    padding: 24px 48px;
    background: #14483A;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 600;
    cursor: pointer;
    transition: background .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .65s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 1px 4px 18px 0 #14483a14;
    align-self: flex-start
}

.reach-out__submit-btn:hover {
    background: #0d3027;
    transform: translateY(-2px);
    box-shadow: 1px 10px 60px 0 #14483a21
}

.reach-out__submit-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 6px 12px 0 #00000026
}

.reach-out__submit-btn:invalid {
    animation: reach-out-shake .5s cubic-bezier(0.22, 1, 0.36, 1)
}

@keyframes reach-out-shake {

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

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

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

@media (min-width: 768px) {
    .reach-out__title-zone {
        padding: 96px 48px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }

    .reach-out__visual-crop {
        width: 380px;
        height: 240px;
        order: 2
    }

    .reach-out__text-content {
        order: 1;
        max-width: 520px
    }

    .reach-out__main-heading {
        font-size: 52px
    }

    .reach-out__lead-text {
        font-size: 20px
    }

    .reach-out__form-container {
        padding: 96px 48px
    }

    .reach-out__layout-grid {
        grid-template-columns: 380px 1fr;
        gap: 96px
    }

    .reach-out__diagram-wrapper {
        gap: 8px
    }

    .reach-out__connector {
        height: 24px
    }

    .reach-out__form-wrapper {
        padding: 48px
    }
}

@media (min-width: 1280px) {
    .reach-out__title-zone {
        padding: 96px
    }

    .reach-out__form-container {
        padding: 96px
    }

    .reach-out__layout-grid {
        grid-template-columns: 420px 1fr
    }
}

.income-budgeting-platform {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    overflow-x: clip
}

.income-budgeting-platform * {
    box-sizing: border-box
}

.income-budgeting-platform img {
    max-width: 100%;
    height: auto;
    display: block
}

.income-budgeting-platform .opening-segment {
    display: flex;
    gap: 48px;
    padding: 96px 24px;
    position: relative;
    align-items: stretch;
    flex-direction: row
}

.income-budgeting-platform .opening-segment__visual-zone {
    flex: 0 0 380px;
    position: relative
}

.income-budgeting-platform .opening-segment__image-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.income-budgeting-platform .opening-segment__image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, transparent 60%, #14483a73);
    z-index: 1;
    pointer-events: none
}

.income-budgeting-platform .opening-segment__image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, transparent 60%, #914af759);
    z-index: 1;
    pointer-events: none
}

.income-budgeting-platform .opening-segment__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.income-budgeting-platform .opening-segment__text-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.income-budgeting-platform .opening-segment__depth-character {
    position: absolute;
    top: -48px;
    left: -24px;
    font-size: 320px;
    font-weight: 700;
    color: #914af70a;
    line-height: 1;
    z-index: -1;
    user-select: none;
    pointer-events: none
}

.income-budgeting-platform .opening-segment__headline {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    font-weight: 700;
    color: #14483A
}

.income-budgeting-platform .opening-segment__highlight-word {
    background: linear-gradient(127deg, #914AF7 0%, #14483A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.income-budgeting-platform .opening-segment__description {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0
}

.income-budgeting-platform .distinction-showcase {
    padding: 96px 24px;
    background: #14483A;
    position: relative;
    overflow: hidden
}

.income-budgeting-platform .distinction-showcase__rotating-shape {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: linear-gradient(127deg, #914af71f 0%, #ffeea014 100%);
    border-radius: 44px;
    animation: slow-rotate 48s linear infinite;
    pointer-events: none;
    z-index: 0
}

@keyframes slow-rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.income-budgeting-platform .distinction-showcase__content-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.income-budgeting-platform .distinction-showcase__section-label {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FFEEA0;
    margin: 0 0 24px;
    font-weight: 600
}

.income-budgeting-platform .distinction-showcase__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #fff;
    margin: 0 0 48px;
    font-weight: 700;
    border-left: 4px solid #914AF7;
    padding-left: 24px
}

.income-budgeting-platform .distinction-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.income-budgeting-platform .distinction-card {
    background: #ffffff0d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #ffeea026;
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateX(-60px);
    animation: slide-in-left .65s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.income-budgeting-platform .distinction-card:nth-child(1) {
    animation-delay: .1s
}

.income-budgeting-platform .distinction-card:nth-child(2) {
    animation-delay: .25s
}

.income-budgeting-platform .distinction-card:nth-child(3) {
    animation-delay: .4s
}

.income-budgeting-platform .distinction-card:nth-child(4) {
    animation-delay: .55s
}

@keyframes slide-in-left {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.income-budgeting-platform .distinction-card:hover {
    transform: translateY(-8px);
    box-shadow: 1px 10px 60px 0 #914af721
}

.income-budgeting-platform .distinction-card__icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(127deg, #914AF7 0%, #FFEEA0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    transition: transform .48s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .distinction-card:hover .distinction-card__icon-wrapper {
    transform: rotate(8deg) scale(1.08)
}

.income-budgeting-platform .distinction-card__icon {
    width: 28px;
    height: 28px;
    fill: #fff
}

.income-budgeting-platform .distinction-card__title {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 600
}

.income-budgeting-platform .distinction-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #fffc;
    margin: 0
}

.income-budgeting-platform .experience-journey {
    padding: 96px 24px;
    background: linear-gradient(127deg, #914af708 0%, #ffff 100%);
    position: relative
}

.income-budgeting-platform .experience-journey__divider-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: radial-gradient(circle, #914AF7 1px, transparent 1px);
    background-size: 12px 12px;
    background-position: 0 0;
    mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,1 Q25,0 50,1 T100,1' stroke='black' stroke-width='2' fill='none' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    mask-size: 100px 2px;
    mask-repeat: repeat-x
}

.income-budgeting-platform .experience-journey__layout {
    max-width: 1120px;
    margin: 0 0 0 auto;
    padding-left: 96px
}

.income-budgeting-platform .experience-journey__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 48px;
    font-weight: 700;
    border-left: 4px solid #914AF7;
    padding-left: 24px
}

.income-budgeting-platform .experience-journey__timeline {
    position: relative;
    padding: 24px 0
}

.income-budgeting-platform .experience-journey__timeline-axis {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #914AF7 0%, #14483A 100%);
    transform: translateY(-50%);
    border-radius: 4px
}

.income-budgeting-platform .experience-journey__points {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1
}

.income-budgeting-platform .timeline-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative
}

.income-budgeting-platform .timeline-point__marker {
    width: 20px;
    height: 20px;
    border-radius: 44px;
    background: #914AF7;
    border: 4px solid #fff;
    box-shadow: 1px 4px 18px 0 #914af714;
    margin-bottom: 24px;
    transition: transform .52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .52s cubic-bezier(0.22, 1, 0.36, 1);
    animation: gentle-shake 3.2s ease-in-out infinite
}

.income-budgeting-platform .timeline-point:nth-child(1) .timeline-point__marker {
    animation-delay: 0s
}

.income-budgeting-platform .timeline-point:nth-child(2) .timeline-point__marker {
    animation-delay: .8s
}

.income-budgeting-platform .timeline-point:nth-child(3) .timeline-point__marker {
    animation-delay: 1.6s
}

.income-budgeting-platform .timeline-point:nth-child(4) .timeline-point__marker {
    animation-delay: 2.4s
}

@keyframes gentle-shake {

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

    2%,
    6% {
        transform: translateX(-3px)
    }

    4%,
    8% {
        transform: translateX(3px)
    }

    10% {
        transform: translateX(0)
    }
}

.income-budgeting-platform .timeline-point:hover .timeline-point__marker {
    transform: scale(1.3);
    box-shadow: 1px 10px 60px 0 #914af721
}

.income-budgeting-platform .timeline-point__label {
    font-size: 14px;
    line-height: 1.4;
    color: #14483A;
    font-weight: 600;
    margin: 0 0 8px
}

.income-budgeting-platform .timeline-point__detail {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    max-width: 180px
}

.income-budgeting-platform .experience-journey__narrative {
    margin-top: 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.income-budgeting-platform .experience-journey__visual-column {
    position: relative
}

.income-budgeting-platform .experience-journey__image-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 4px 18px 0 #914af714;
    transition: transform .58s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .58s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .experience-journey__image-frame:hover {
    transform: scale(1.02);
    box-shadow: 1px 10px 60px 0 #914af721
}

.income-budgeting-platform .experience-journey__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: filter .58s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .experience-journey__image-frame:hover .experience-journey__image {
    filter: brightness(1.08)
}

.income-budgeting-platform .experience-journey__text-column {
    padding-top: 24px
}

.income-budgeting-platform .experience-journey__paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 0 24px;
    padding-left: 24px;
    text-indent: -24px
}

.income-budgeting-platform .experience-journey__paragraph:last-child {
    margin-bottom: 0
}

.income-budgeting-platform .hesitation-address {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.income-budgeting-platform .hesitation-address__content-wrapper {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
    align-items: center
}

.income-budgeting-platform .hesitation-address__text-zone {
    opacity: 0;
    transform: translateX(-60px);
    animation: slide-in-left .68s cubic-bezier(0.22, 1, 0.36, 1) .2s forwards
}

.income-budgeting-platform .hesitation-address__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 0 24px;
    font-weight: 700;
    border-left: 4px solid #914AF7;
    padding-left: 24px
}

.income-budgeting-platform .hesitation-address__intro {
    font-size: 16px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 0 0 48px
}

.income-budgeting-platform .hesitation-address__points {
    list-style: none;
    padding: 0;
    margin: 0
}

.income-budgeting-platform .hesitation-point {
    padding: 24px 0;
    border-bottom: 1px solid #914af726
}

.income-budgeting-platform .hesitation-point:last-child {
    border-bottom: none
}

.income-budgeting-platform .hesitation-point__label {
    font-size: 20px;
    line-height: 1.4;
    color: #14483A;
    font-weight: 600;
    margin: 0 0 8px
}

.income-budgeting-platform .hesitation-point__explanation {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0
}

.income-budgeting-platform .hesitation-address__visual-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.income-budgeting-platform .hesitation-address__image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 2px 5px 0 #914af712;
    transition: transform .52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .52s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .hesitation-address__image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 1px 10px 60px 0 #914af721
}

.income-budgeting-platform .hesitation-address__small-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: filter .52s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .hesitation-address__image-wrapper:hover .hesitation-address__small-image {
    filter: brightness(1.06)
}

.income-budgeting-platform .longterm-value {
    padding: 96px 24px;
    background: linear-gradient(127deg, #14483a14 0%, #ffff 100%);
    position: relative;
    overflow: hidden
}

.income-budgeting-platform .longterm-value__rotating-element {
    position: absolute;
    bottom: 12%;
    left: 5%;
    width: 220px;
    height: 220px;
    background: linear-gradient(127deg, #ffeea024 0%, #914af717 100%);
    border-radius: 44px;
    animation: slow-rotate 56s linear infinite;
    pointer-events: none;
    z-index: 0
}

.income-budgeting-platform .longterm-value__content-wrapper {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center
}

.income-budgeting-platform .longterm-value__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #14483A;
    margin: 0 auto 48px;
    font-weight: 700;
    max-width: 720px
}

.income-budgeting-platform .longterm-value__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px
}

.income-budgeting-platform .value-feature {
    text-align: center;
    opacity: 0;
    transform: translateX(-60px);
    animation: slide-in-left .62s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.income-budgeting-platform .value-feature:nth-child(1) {
    animation-delay: .15s
}

.income-budgeting-platform .value-feature:nth-child(2) {
    animation-delay: .3s
}

.income-budgeting-platform .value-feature:nth-child(3) {
    animation-delay: .45s
}

.income-budgeting-platform .value-feature__icon-container {
    width: 72px;
    height: 72px;
    border-radius: 44px;
    background: linear-gradient(127deg, #914AF7 0%, #14483A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 1px 4px 18px 0 #914af714;
    transition: transform .56s cubic-bezier(0.22, 1, 0.36, 1)
}

.income-budgeting-platform .value-feature:hover .value-feature__icon-container {
    transform: rotate(-8deg) scale(1.12)
}

.income-budgeting-platform .value-feature__icon {
    width: 36px;
    height: 36px;
    fill: #fff
}

.income-budgeting-platform .value-feature__title {
    font-size: 20px;
    line-height: 1.4;
    color: #14483A;
    margin: 0 0 8px;
    font-weight: 600
}

.income-budgeting-platform .value-feature__description {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0
}

.income-budgeting-platform .longterm-value__closing {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 auto;
    max-width: 680px;
    padding-left: 24px;
    text-indent: -24px
}

.income-budgeting-platform ::selection {
    background: #914AF7;
    color: #fff
}

@media (max-width: 1280px) {
    .income-budgeting-platform .opening-segment {
        gap: 48px;
        padding: 96px 24px
    }

    .income-budgeting-platform .opening-segment__visual-zone {
        flex: 0 0 320px
    }

    .income-budgeting-platform .opening-segment__headline {
        font-size: 37px
    }

    .income-budgeting-platform .opening-segment__description {
        font-size: 16px
    }

    .income-budgeting-platform .distinction-showcase__grid {
        gap: 24px
    }

    .income-budgeting-platform .distinction-card {
        padding: 24px
    }

    .income-budgeting-platform .experience-journey__layout {
        padding-left: 48px
    }

    .income-budgeting-platform .hesitation-address__content-wrapper {
        gap: 48px
    }

    .income-budgeting-platform .longterm-value__features {
        gap: 24px
    }
}

@media (max-width: 768px) {
    .income-budgeting-platform .opening-segment {
        flex-direction: column;
        padding: 48px 24px
    }

    .income-budgeting-platform .opening-segment__visual-zone {
        flex: 0 0 auto;
        width: 100%;
        height: 320px
    }

    .income-budgeting-platform .opening-segment__depth-character {
        font-size: 180px;
        top: -24px;
        left: -8px
    }

    .income-budgeting-platform .opening-segment__headline {
        font-size: 27px;
        margin-bottom: 24px
    }

    .income-budgeting-platform .opening-segment__description {
        font-size: 16px
    }

    .income-budgeting-platform .distinction-showcase {
        padding: 48px 24px
    }

    .income-budgeting-platform .distinction-showcase__heading {
        font-size: 27px;
        margin-bottom: 24px
    }

    .income-budgeting-platform .distinction-showcase__grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .income-budgeting-platform .experience-journey {
        padding: 48px 24px
    }

    .income-budgeting-platform .experience-journey__layout {
        padding-left: 0
    }

    .income-budgeting-platform .experience-journey__heading {
        font-size: 27px;
        margin-bottom: 24px
    }

    .income-budgeting-platform .experience-journey__points {
        flex-direction: column;
        gap: 48px
    }

    .income-budgeting-platform .experience-journey__timeline-axis {
        top: 0;
        left: 50%;
        right: auto;
        width: 3px;
        height: 100%;
        transform: translateX(-50%)
    }

    .income-budgeting-platform .timeline-point__detail {
        max-width: 100%
    }

    .income-budgeting-platform .experience-journey__narrative {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px
    }

    .income-budgeting-platform .experience-journey__image {
        height: 280px
    }

    .income-budgeting-platform .hesitation-address {
        padding: 48px 24px
    }

    .income-budgeting-platform .hesitation-address__content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .income-budgeting-platform .hesitation-address__heading {
        font-size: 27px
    }

    .income-budgeting-platform .longterm-value {
        padding: 48px 24px
    }

    .income-budgeting-platform .longterm-value__heading {
        font-size: 27px;
        margin-bottom: 24px
    }

    .income-budgeting-platform .longterm-value__features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px
    }
}

@media (max-width: 480px) {
    .income-budgeting-platform .opening-segment {
        padding: 48px 8px
    }

    .income-budgeting-platform .opening-segment__headline {
        font-size: 27px
    }

    .income-budgeting-platform .opening-segment__description {
        font-size: 14px
    }

    .income-budgeting-platform .distinction-showcase {
        padding: 48px 8px
    }

    .income-budgeting-platform .distinction-card {
        padding: 24px
    }

    .income-budgeting-platform .experience-journey {
        padding: 48px 8px
    }

    .income-budgeting-platform .experience-journey__image {
        height: 220px
    }

    .income-budgeting-platform .hesitation-address {
        padding: 48px 8px
    }

    .income-budgeting-platform .hesitation-address__visual-zone {
        grid-template-columns: 1fr
    }

    .income-budgeting-platform .longterm-value {
        padding: 48px 8px
    }
}

.success-confirmation {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(127deg, #fef9f0 0%, #f8f5ff 100%)
}

.success-confirmation .confirmation-wrapper {
    padding: 96px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px
}

.success-confirmation .status-visual {
    position: relative;
    width: 160px;
    height: 160px
}

.success-confirmation .status-circle {
    width: 160px;
    height: 160px;
    background: linear-gradient(127deg, #914AF7 0%, #14483A 100%);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 10px 60px 0 #914af721;
    animation: pulse-once .6s cubic-bezier(0.22, 1, 0.36, 1)
}

@keyframes pulse-once {
    0% {
        transform: scale(0.85);
        opacity: .7
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.success-confirmation .checkmark-icon {
    width: 72px;
    height: 72px;
    stroke: #FFEEA0;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success-confirmation .message-block {
    text-align: center;
    max-width: 680px
}

.success-confirmation .primary-heading {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #14483A;
    margin: 0 0 24px
}

.success-confirmation .description-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 0 8px
}

.success-confirmation .reference-number {
    font-size: 16px;
    line-height: 1.4;
    color: #5a5a5a;
    margin: 0;
    font-style: italic
}

.success-confirmation .reference-code {
    display: inline-block;
    padding: 8px 24px;
    background: #914af714;
    border-radius: 44px;
    font-style: normal;
    font-weight: 600;
    color: #914AF7;
    margin: 0 0 0 8px
}

.success-confirmation .action-section {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 1px 4px 18px 0 #14483a14;
    max-width: 680px;
    width: 100%
}

.success-confirmation .next-steps-heading {
    font-size: 27px;
    line-height: 1.4;
    color: #14483A;
    margin: 0 0 24px;
    padding: 0 0 0 24px;
    border-left: 4px solid #914AF7
}

.success-confirmation .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.success-confirmation .step-item {
    padding: 0 0 24px;
    border-bottom: 1px solid #914af726
}

.success-confirmation .step-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.success-confirmation .step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #914AF7;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 16px 0 0;
    vertical-align: top
}

.success-confirmation .step-content {
    display: inline-block;
    width: calc(100% - 48px);
    vertical-align: top
}

.success-confirmation .step-title {
    font-size: 20px;
    line-height: 1.4;
    color: #2a2a2a;
    margin: 0 0 8px;
    font-weight: 600
}

.success-confirmation .step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0
}

.success-confirmation .button-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.success-confirmation .primary-button {
    padding: 24px 48px;
    background: #914AF7;
    color: #fff;
    border: none;
    border-radius: 44px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), transform .4s ease-in-out;
    box-shadow: 1px 4px 18px 0 #914af714;
    text-decoration: none;
    display: inline-block
}

.success-confirmation .primary-button:hover {
    background: #7a3dd4;
    transform: translateY(-2px)
}

.success-confirmation .secondary-button {
    padding: 24px 48px;
    background: #14483A;
    color: #fff;
    border: none;
    border-radius: 44px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .6s ease-in-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 1px 2px 5px 0 #14483a12;
    text-decoration: none;
    display: inline-block
}

.success-confirmation .secondary-button:hover {
    background: #0f3a2e;
    transform: translateY(-2px)
}

.success-confirmation .contact-block {
    background: linear-gradient(127deg, #ffeea04d 0%, #914af714 100%);
    padding: 48px 24px;
    text-align: center
}

.success-confirmation .contact-heading {
    font-size: 27px;
    line-height: 1.4;
    color: #14483A;
    margin: 0 0 24px
}

.success-confirmation .contact-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0 0 24px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto
}

.success-confirmation .contact-details {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap
}

.success-confirmation .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.success-confirmation .contact-label {
    font-size: 13px;
    line-height: 1.4;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0
}

.success-confirmation .contact-value {
    font-size: 16px;
    line-height: 1.4;
    color: #914AF7;
    font-weight: 600;
    margin: 0
}

.success-confirmation .contact-link {
    color: #914AF7;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-confirmation .contact-link:hover {
    color: #7a3dd4
}

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

    .success-confirmation .status-visual {
        width: 120px;
        height: 120px
    }

    .success-confirmation .status-circle {
        width: 120px;
        height: 120px
    }

    .success-confirmation .checkmark-icon {
        width: 56px;
        height: 56px
    }

    .success-confirmation .primary-heading {
        font-size: 37px
    }

    .success-confirmation .description-text {
        font-size: 16px
    }

    .success-confirmation .action-section {
        padding: 24px
    }

    .success-confirmation .next-steps-heading {
        font-size: 20px
    }

    .success-confirmation .button-group {
        flex-direction: column;
        width: 100%
    }

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

    .success-confirmation .contact-details {
        flex-direction: column;
        gap: 24px
    }
}

@media (max-width: 480px) {
    .success-confirmation .confirmation-wrapper {
        padding: 48px 8px
    }

    .success-confirmation .primary-heading {
        font-size: 27px
    }

    .success-confirmation .reference-code {
        display: block;
        margin: 8px 0 0
    }

    .success-confirmation .step-number {
        display: block;
        margin: 0 0 8px
    }

    .success-confirmation .step-content {
        width: 100%
    }
}