* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(165deg, #fefefe 0%, #f9f6f3 100%);
    color: #2a2a2a;
    font-size: 16px;
    line-height: 1.6
}

.topbar-box {
    background: linear-gradient(180deg, #f3d1af26 0%, #ffffffeb 100%);
    border-bottom: 1px solid #d108951f;
    padding: 24px 40px 16px;
    position: relative
}

.topbar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 8%;
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg, #D10895 0%, #d108954d 100%);
    border-radius: 2px
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.brand-zone {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px
}

.identity-cluster {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative
}

.identity-cluster::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, #201e4033 50%, transparent 100%)
}

.mark-box {
    width: 92px;
    height: 92px;
    padding: 8px;
    background: #fff;
    border: 2px solid #f3d1af66;
    border-radius: 46px;
    box-shadow: 2px 6px 25px -2px #d108951c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.mark-box img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

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

.brand-name {
    font-family: 'EB Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #201E40;
    letter-spacing: -.02em
}

.brand-tagline {
    font-size: 13px;
    line-height: 1.2;
    color: #D10895;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700
}

.established-label {
    font-size: 13px;
    line-height: 1.2;
    color: #6a6a6a;
    align-self: flex-start;
    margin-top: 8px;
    padding: 8px 16px;
    background: #f3d1af40;
    border-radius: 2px
}

.routes-box {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 4px
}

.route-link {
    font-size: 16px;
    line-height: 1.2;
    color: #201E40;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    background: #fff9;
    border: 1px solid #f3d1af4d;
    font-weight: 400;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .32s ease-in-out
}

.route-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, #f3d1af80 0%, #d1089526 100%);
    transition: height .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.route-link:hover::before {
    height: 100%
}

.route-link:hover {
    color: #D10895;
    border-color: #d1089566
}

.route-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #d108954d
}

.route-link span {
    position: relative;
    z-index: 1
}

.route-link.active-route {
    background: #d1089514;
    border-color: #d1089559;
    color: #D10895;
    font-weight: 700
}

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

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

    .identity-cluster::after {
        display: none
    }

    .routes-box {
        width: 100%;
        justify-content: flex-start
    }
}

@media (max-width: 900px) {
    .topbar-inner {
        gap: 16px
    }

    .identity-cluster {
        gap: 16px
    }

    .mark-box {
        width: 76px;
        height: 76px
    }

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

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

    .route-link {
        font-size: 16px;
        padding: 16px
    }
}

@media (max-width: 600px) {
    .topbar-box {
        padding: 16px
    }

    .topbar-box::before {
        left: 16px;
        width: 100px
    }

    .identity-cluster {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .mark-box {
        width: 68px;
        height: 68px
    }

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

    .established-label {
        align-self: stretch;
        text-align: center
    }

    .routes-box {
        flex-direction: column;
        width: 100%;
        gap: 8px
    }

    .route-link {
        width: 100%;
        text-align: center;
        padding: 16px
    }
}

.basement-box {
    background: linear-gradient(0deg, #201e40f7 0%, #201e40eb 100%);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden
}

.basement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #D10895 20%, #F3D1AF 50%, #D10895 80%, transparent 100%)
}

.basement-box::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #f3d1af14 0%, transparent 70%);
    border-radius: 46px;
    transform: rotate(25deg);
    pointer-events: none
}

.basement-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    position: relative;
    z-index: 1
}

.foundation-zone {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.foundation-mark {
    width: 88px;
    height: 88px;
    padding: 8px;
    background: #ffffff14;
    border: 1px solid #f3d1af33;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 6px 25px -2px #d108951c
}

.foundation-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.foundation-text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.foundation-title {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #F3D1AF
}

.foundation-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffbf
}

.contact-cluster {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffd9
}

.contact-item i {
    font-size: 21px;
    color: #D10895;
    flex-shrink: 0
}

.contact-item a {
    color: #ffffffd9;
    text-decoration: none;
    transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-item a:hover {
    color: #F3D1AF
}

.contact-item a:focus {
    outline: none;
    text-decoration: underline;
    text-decoration-color: #D10895;
    text-decoration-thickness: 2px
}

.pathways-zone {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

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

.pathway-heading {
    font-family: 'EB Garamond', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #F3D1AF;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding-bottom: 8px;
    border-bottom: 2px solid #d108954d
}

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

.pathway-list li {
    position: relative;
    padding-left: 0
}

.pathway-list a {
    font-size: 16px;
    line-height: 1.6;
    color: #fffc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .32s ease-in-out, transform .28s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative
}

.pathway-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D10895;
    border-radius: 46px;
    flex-shrink: 0;
    transition: background .32s ease-in-out, transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.pathway-list a:hover {
    color: #F3D1AF;
    transform: translateX(4px)
}

.pathway-list a:hover::before {
    background: #F3D1AF;
    transform: scale(1.3)
}

.pathway-list a:focus {
    outline: none;
    color: #F3D1AF;
    box-shadow: 0 0 0 2px #f3d1af66;
    padding: 4px 8px;
    margin: -4px -8px;
    border-radius: 2px
}

.legal-strip {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #f3d1af26;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.copyright-text {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff80
}

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

.legal-link {
    font-size: 13px;
    line-height: 1.6;
    color: #fff9;
    text-decoration: none;
    transition: color .3s ease-in-out
}

.legal-link:hover {
    color: #F3D1AF
}

.legal-link:focus {
    outline: none;
    text-decoration: underline;
    text-decoration-color: #D10895;
    color: #F3D1AF
}

@media (max-width: 1200px) {
    .basement-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .pathways-zone {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
}

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

    .basement-inner {
        gap: 40px
    }

    .pathways-zone {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .legal-strip {
        margin-top: 40px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }
}

@media (max-width: 600px) {
    .basement-box {
        padding: 40px 16px 24px
    }

    .foundation-mark {
        width: 72px;
        height: 72px
    }

    .foundation-title {
        font-size: 21px
    }

    .pathway-heading {
        font-size: 16px
    }

    .legal-links {
        flex-direction: column;
        gap: 16px
    }
}

.policy-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    background: #fff
}

.policy-container h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 40px
}

.policy-container h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 80px 0 24px
}

.policy-container h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #201E40;
    margin: 40px 0 16px
}

.policy-container h4 {
    font-size: 21px;
    line-height: 1.6;
    color: #201E40;
    margin: 24px 0 16px
}

.policy-container h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 24px 0 8px;
    font-weight: 600
}

.policy-container h6 {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 16px 0 8px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase
}

.policy-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 16px
}

.policy-container ul {
    margin: 0 0 24px;
    padding: 0 0 0 24px;
    list-style-type: disc
}

.policy-container ol {
    margin: 0 0 24px;
    padding: 0 0 0 24px;
    list-style-type: decimal
}

.policy-container li {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 8px;
    padding: 0 0 0 8px
}

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

.policy-container ul ul,
.policy-container ol ol,
.policy-container ul ol,
.policy-container ol ul {
    margin: 8px 0 0
}

.policy-container em,
.policy-container i {
    font-style: italic;
    color: #201E40
}

.policy-container strong,
.policy-container b {
    font-weight: 600;
    color: #201E40
}

.policy-container a {
    color: #D10895;
    text-decoration: underline;
    transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.policy-container a:hover {
    color: #201E40
}

.policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px;
    background: #fff;
    box-shadow: 2px 6px 25px -2px #201e401c;
    border-radius: 2px;
    overflow: hidden
}

.policy-container thead {
    background: #F3D1AF
}

.policy-container th {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    font-weight: 600;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 2px solid #201E40
}

.policy-container td {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    padding: 16px 24px;
    border-bottom: 1px solid #201e401a
}

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

.policy-container tbody tr:hover {
    background: #f3d1af26;
    transition: background .3s ease-in-out
}

.policy-container hr {
    border: none;
    height: 1px;
    background: #201e4026;
    margin: 40px 0
}

.policy-container div {
    margin: 0 0 16px
}

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

    .policy-container h1 {
        font-size: 38px;
        margin-bottom: 24px
    }

    .policy-container h2 {
        font-size: 28px;
        margin-top: 40px
    }

    .policy-container h3 {
        font-size: 21px;
        margin-top: 24px
    }

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

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

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

    .policy-container h1 {
        font-size: 28px;
        margin-bottom: 16px
    }

    .policy-container h2 {
        font-size: 21px;
        margin-top: 24px
    }

    .policy-container h3 {
        font-size: 16px;
        margin-top: 16px
    }

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

    .policy-container th,
    .policy-container td {
        padding: 8px;
        font-size: 13px
    }
}

.portal {
    max-width: 1100px;
    margin: 0 auto;
    background: #fefefe;
    overflow-x: clip
}

.portal__opener {
    display: flex;
    gap: 40px;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(247deg, #F3D1AF 0%, #D10895 48%, #201E40 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: portal-gradient-drift 8s ease-in-out infinite
}

@keyframes portal-gradient-drift {

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

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

.portal__opener::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    background: #D10895;
    border-radius: 50%;
    opacity: .15;
    box-shadow: 24px 24px 0 #D10895, 48px 8px 0 #201E40, 72px 40px 0 #F3D1AF, 16px 56px 0 #201E40, 40px 72px 0 #D10895, 64px 64px 0 #F3D1AF, 88px 24px 0 #201E40, 104px 56px 0 #D10895, 120px 8px 0 #F3D1AF, 136px 40px 0 #201E40, 152px 72px 0 #D10895, 168px 16px 0 #F3D1AF, 184px 48px 0 #201E40, 200px 32px 0 #D10895, 216px 64px 0 #F3D1AF, 232px 24px 0 #201E40, 248px 56px 0 #D10895, 264px 8px 0 #F3D1AF;
    z-index: 0
}

.portal__opener-content {
    flex: 1;
    z-index: 1;
    position: relative
}

.portal__opener-title {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #201E40;
    -webkit-text-fill-color: #201E40
}

.portal__opener-text {
    font-size: 21px;
    line-height: 1.6;
    color: #201E40;
    -webkit-text-fill-color: #201E40;
    margin: 0;
    max-width: 520px
}

.portal__opener-visual {
    width: 340px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.portal__opener-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    display: block;
    box-shadow: 2px 10px 36px -2px #d208951c;
    position: relative
}

.portal__opener-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #201e4040);
    pointer-events: none;
    border-radius: 2px
}

@media (max-width: 900px) {
    .portal__opener {
        flex-direction: column;
        padding: 40px 24px
    }

    .portal__opener-title {
        font-size: 38px
    }

    .portal__opener-visual {
        width: 100%
    }

    .portal__opener-img {
        height: 400px
    }
}

@media (max-width: 600px) {
    .portal__opener {
        padding: 40px 16px
    }

    .portal__opener-title {
        font-size: 28px
    }

    .portal__opener-text {
        font-size: 16px
    }

    .portal__opener-img {
        height: 320px
    }
}

.portal__lasting {
    padding: 80px 24px;
    background: #fefefe;
    position: relative
}

.portal__lasting-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center
}

.portal__lasting-label {
    font-size: 28px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 40px;
    position: relative;
    display: inline-block
}

.portal__lasting-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D10895;
    transition: width .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.portal__lasting:hover .portal__lasting-label::after {
    width: 100%
}

.portal__lasting-body {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 24px
}

.portal__lasting-body:last-child {
    margin: 0
}

.portal__lasting-highlight {
    background: #f3d1af38;
    padding: 4px 8px;
    border-radius: 2px
}

@media (max-width: 600px) {
    .portal__lasting {
        padding: 40px 16px
    }

    .portal__lasting-label {
        font-size: 21px
    }

    .portal__lasting-body {
        font-size: 13px
    }
}

.portal__options {
    padding: 80px 24px;
    background: linear-gradient(247deg, #f3d1af14 0%, #d208950a 48%, #201e4014 100%);
    position: relative;
    overflow: hidden
}

.portal__options::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(118deg, transparent, transparent 80px, #d2089508 80px, #d2089508 82px);
    animation: portal-drift-diagonal 24s linear infinite
}

@keyframes portal-drift-diagonal {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(50%)
    }
}

.portal__options-header {
    text-align: center;
    margin: 0 0 80px;
    position: relative;
    z-index: 1
}

.portal__options-title {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0
}

.portal__options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1
}

.portal__options-card {
    background: #fff;
    padding: 40px 24px;
    border-radius: 46px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s ease-in-out;
    position: relative;
    overflow: hidden
}

.portal__options-card:nth-child(1) {
    background: linear-gradient(180deg, #fff 0%, #f3d1af1f 100%)
}

.portal__options-card:nth-child(2) {
    background: linear-gradient(180deg, #fff 0%, #d2089514 100%)
}

.portal__options-card:nth-child(3) {
    background: linear-gradient(180deg, #fff 0%, #201e400f 100%)
}

.portal__options-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #d208950a;
    transition: height .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.portal__options-card:hover::before {
    height: 100%
}

.portal__options-card:hover {
    transform: translateY(-8px);
    box-shadow: 2px 10px 36px -2px #201e401c
}

.portal__options-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.portal__options-card:nth-child(1) .portal__options-card-icon {
    background: #f3d1af40
}

.portal__options-card:nth-child(2) .portal__options-card-icon {
    background: #d2089526
}

.portal__options-card:nth-child(3) .portal__options-card-icon {
    background: #201e401f
}

.portal__options-card-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #201E40;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.portal__options-card-label {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    text-align: center;
    position: relative;
    z-index: 1
}

.portal__options-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1
}

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

    .portal__options-header {
        margin: 0 0 40px
    }

    .portal__options-title {
        font-size: 28px
    }

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

@media (max-width: 600px) {
    .portal__options {
        padding: 40px 16px
    }

    .portal__options-title {
        font-size: 21px
    }

    .portal__options-card {
        padding: 24px 16px
    }
}

.portal__community {
    padding: 0;
    background: #201E40;
    display: flex;
    align-items: stretch;
    position: relative
}

.portal__community-visual {
    width: 48%;
    flex-shrink: 0
}

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

.portal__community-content {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.portal__community-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #F3D1AF;
    margin: 0 0 24px
}

.portal__community-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0 0 24px
}

.portal__community-paragraph:last-child {
    margin: 0
}

@media (max-width: 900px) {
    .portal__community {
        flex-direction: column
    }

    .portal__community-visual {
        width: 100%;
        height: 320px
    }

    .portal__community-content {
        padding: 40px 24px
    }

    .portal__community-heading {
        font-size: 28px
    }
}

@media (max-width: 600px) {
    .portal__community-content {
        padding: 40px 16px
    }

    .portal__community-heading {
        font-size: 21px
    }

    .portal__community-paragraph {
        font-size: 13px
    }
}

.portal__journey {
    padding: 80px 24px;
    background: #fefefe;
    position: relative
}

.portal__journey-header {
    text-align: left;
    margin: 0 0 80px;
    max-width: 680px
}

.portal__journey-title {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px
}

.portal__journey-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.portal__journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative
}

.portal__journey-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg, #F3D1AF 0%, #D10895 50%, #201E40 100%)
}

.portal__journey-phase {
    display: flex;
    gap: 24px;
    position: relative
}

.portal__journey-marker {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: transform .32s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.portal__journey-phase:nth-child(1) .portal__journey-marker {
    background: #f3d1af59;
    color: #201E40
}

.portal__journey-phase:nth-child(2) .portal__journey-marker {
    background: #d2089538;
    color: #201E40
}

.portal__journey-phase:nth-child(3) .portal__journey-marker {
    background: #201e402e;
    color: #201E40
}

.portal__journey-phase:nth-child(4) .portal__journey-marker {
    background: linear-gradient(135deg, #f3d1af4d 0%, #d2089533 100%);
    color: #201E40
}

.portal__journey-phase:hover .portal__journey-marker {
    transform: scale(1.12)
}

.portal__journey-detail {
    flex: 1;
    padding: 16px 0
}

.portal__journey-label {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 8px
}

.portal__journey-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

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

    .portal__journey-header {
        margin: 0 0 40px
    }

    .portal__journey-title {
        font-size: 28px
    }

    .portal__journey-timeline::before {
        left: 24px
    }

    .portal__journey-marker {
        width: 48px;
        height: 48px;
        font-size: 21px
    }
}

@media (max-width: 600px) {
    .portal__journey {
        padding: 40px 16px
    }

    .portal__journey-title {
        font-size: 21px
    }

    .portal__journey-subtitle {
        font-size: 13px
    }

    .portal__journey-timeline::before {
        left: 16px
    }

    .portal__journey-marker {
        width: 32px;
        height: 32px;
        font-size: 16px
    }

    .portal__journey-phase {
        gap: 16px
    }
}

.portal__outcome {
    padding: 80px 24px;
    background: linear-gradient(247deg, #f3d1af26 0%, #d2089514 48%, #201e401f 100%);
    position: relative;
    overflow: hidden
}

.portal__outcome::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    background: linear-gradient(135deg, #f3d1af1f, #d2089514);
    transform: translate(-50%, -50%) rotate(0deg);
    border-radius: 2px;
    animation: portal-rotate-slow 32s linear infinite;
    z-index: 0
}

@keyframes portal-rotate-slow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

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

.portal__outcome-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 40px;
    text-align: center
}

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

.portal__outcome-item {
    background: #ffffffeb;
    padding: 40px 24px;
    border-radius: 2px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    position: relative;
    overflow: hidden
}

.portal__outcome-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #d208950f;
    transform: translate(-50%, -50%);
    transition: width .45s cubic-bezier(0.34, 1.2, 0.64, 1), height .45s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.portal__outcome-item:hover::before {
    width: 100%;
    height: 100%
}

.portal__outcome-item-label {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    position: relative;
    z-index: 1
}

.portal__outcome-item-text {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0;
    position: relative;
    z-index: 1
}

.portal__outcome-visual {
    margin: 80px 0 0;
    display: flex;
    justify-content: center;
    gap: 24px
}

.portal__outcome-img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 2px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    transition: transform .38s ease-in-out
}

.portal__outcome-img:hover {
    transform: scale(1.06)
}

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

    .portal__outcome-heading {
        font-size: 28px
    }

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

    .portal__outcome-visual {
        margin: 40px 0 0;
        flex-wrap: wrap
    }

    .portal__outcome-img {
        width: calc(50% - 12px)
    }
}

@media (max-width: 600px) {
    .portal__outcome {
        padding: 40px 16px
    }

    .portal__outcome-heading {
        font-size: 21px
    }

    .portal__outcome-item {
        padding: 24px 16px
    }

    .portal__outcome-visual {
        flex-direction: column
    }

    .portal__outcome-img {
        width: 100%
    }
}

.portal__distinction {
    padding: 80px 24px;
    background: #fefefe;
    position: relative
}

.portal__distinction-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden
}

.portal__distinction-wave svg {
    width: 100%;
    height: 100%;
    display: block
}

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

.portal__distinction-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 80px;
    text-align: center
}

.portal__distinction-comparison {
    display: flex;
    gap: 40px;
    align-items: flex-start
}

.portal__distinction-column {
    flex: 1;
    background: #fff;
    padding: 40px 24px;
    border-radius: 46px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    position: relative
}

.portal__distinction-column:first-child {
    background: linear-gradient(180deg, #fff 0%, #f3d1af14 100%)
}

.portal__distinction-column:last-child {
    background: linear-gradient(180deg, #fff 0%, #d208950f 100%)
}

.portal__distinction-column-title {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 24px;
    text-align: center;
    padding: 0 0 16px;
    border-bottom: 2px solid #d2089526
}

.portal__distinction-point {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 16px;
    padding: 0 0 0 24px;
    position: relative
}

.portal__distinction-point:last-child {
    margin: 0
}

.portal__distinction-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #D10895;
    border-radius: 50%
}

.portal__distinction-column:last-child .portal__distinction-point::before {
    background: #201E40
}

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

    .portal__distinction-heading {
        font-size: 28px;
        margin: 0 0 40px
    }

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

@media (max-width: 600px) {
    .portal__distinction {
        padding: 40px 16px
    }

    .portal__distinction-heading {
        font-size: 21px
    }

    .portal__distinction-column {
        padding: 24px 16px
    }
}

.about-us {
    background: #fefefe;
    color: #201E40;
    overflow-x: clip
}

.about-us .intro-section {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.about-us .intro-section__image-zone {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: 2px 6px 25px -2px #d108951c 2px 10px 36px -2px #d108951c
}

.about-us .intro-section__image-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 35% 45%, transparent 25%, #201e40b8 100%);
    z-index: 2;
    pointer-events: none
}

.about-us .intro-section__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.about-us .intro-section__decorative-strokes {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3
}

.about-us .intro-section__stroke {
    width: 46px;
    height: 2px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 48%, #201E40 100%);
    opacity: .85
}

.about-us .intro-section__stroke:nth-child(2) {
    width: 38px
}

.about-us .intro-section__stroke:nth-child(3) {
    width: 52px
}

.about-us .intro-section__text-zone {
    text-align: center;
    padding: 0 16px
}

.about-us .intro-section__title {
    font-size: 66px;
    line-height: 1.2;
    color: #201E40;
    margin: 0;
    font-weight: 700
}

@media (max-width: 900px) {
    .about-us .intro-section {
        padding: 40px 16px;
        gap: 24px
    }

    .about-us .intro-section__image-zone {
        height: 380px
    }

    .about-us .intro-section__title {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .about-us .intro-section {
        padding: 40px 16px
    }

    .about-us .intro-section__image-zone {
        height: 280px;
        border-radius: 2px
    }

    .about-us .intro-section__title {
        font-size: 28px
    }

    .about-us .intro-section__decorative-strokes {
        top: 16px;
        right: 16px;
        gap: 4px
    }

    .about-us .intro-section__stroke {
        width: 32px
    }

    .about-us .intro-section__stroke:nth-child(2) {
        width: 26px
    }

    .about-us .intro-section__stroke:nth-child(3) {
        width: 38px
    }
}

.about-us .foundation-section {
    position: relative;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 48%, #201E40 100%);
    padding: 80px 24px;
    clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
    margin-top: -40px
}

.about-us .foundation-section__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.about-us .foundation-card {
    background: #fffffff7;
    border-radius: 46px;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 2px 1px 2px -2px #201e4012
}

.about-us .foundation-card:hover {
    transform: translateY(-8px);
    box-shadow: 2px 6px 25px -2px #201e401c 2px 10px 36px -2px #201e401c
}

.about-us .foundation-card:nth-child(1) {
    align-self: start
}

.about-us .foundation-card:nth-child(2) {
    align-self: center;
    margin-top: 40px
}

.about-us .foundation-card:nth-child(3) {
    align-self: end;
    margin-bottom: 40px
}

.about-us .foundation-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px
}

.about-us .foundation-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us .foundation-card:hover .foundation-card__image {
    transform: scale(1.06)
}

.about-us .foundation-card__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #201e40eb;
    color: #fefefe;
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: .04em;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us .foundation-card__image-wrapper:hover .foundation-card__caption {
    transform: translateY(0)
}

.about-us .foundation-card__title {
    font-size: 21px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 16px;
    font-weight: 600;
    position: relative;
    display: inline-block
}

.about-us .foundation-card__title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D10895;
    transition: width .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us .foundation-card:hover .foundation-card__title::after {
    width: 100%
}

.about-us .foundation-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 24px
}

.about-us .foundation-card__data-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px
}

.about-us .foundation-card__icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 46px;
    background: #F3D1AF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.about-us .foundation-card__icon-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #D10895;
    transition: height .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us .foundation-card:hover .foundation-card__icon-wrap::before {
    height: 100%
}

.about-us .foundation-card__icon-svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us .foundation-card:hover .foundation-card__icon-svg {
    transform: rotate(360deg)
}

.about-us .foundation-card__data-text {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.about-us .foundation-card__data-text strong {
    color: #D10895;
    font-weight: 600
}

.about-us .foundation-card__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px
}

.about-us .comparison-option {
    padding: 16px;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: all .32s ease-in-out;
    cursor: pointer;
    position: relative
}

.about-us .comparison-option.active {
    background: #d1089514;
    border-color: #D10895
}

.about-us .comparison-option:not(.active) {
    background: #201e400a;
    filter: saturate(0.4)
}

.about-us .comparison-option__label {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: .03em
}

.about-us .comparison-option__value {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.about-us .foundation-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #D10895;
    color: #fefefe;
    font-size: 13px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 46px;
    font-weight: 600;
    letter-spacing: .02em;
    box-shadow: 2px 1px 2px -2px #201e4012
}

@media (max-width: 1200px) {
    .about-us .foundation-section__container {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .about-us .foundation-card:nth-child(1),
    .about-us .foundation-card:nth-child(2),
    .about-us .foundation-card:nth-child(3) {
        align-self: stretch;
        margin: 0
    }
}

@media (max-width: 900px) {
    .about-us .foundation-section {
        padding: 40px 16px;
        clip-path: polygon(0 0, 100% 2%, 100% 100%, 0 98%)
    }

    .about-us .foundation-card {
        padding: 24px 16px
    }

    .about-us .foundation-card__image-wrapper {
        height: 180px
    }
}

@media (max-width: 600px) {
    .about-us .foundation-section {
        padding: 40px 16px;
        margin-top: -24px
    }

    .about-us .foundation-card {
        border-radius: 2px
    }

    .about-us .foundation-card__comparison {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .about-us .foundation-card__image-wrapper {
        height: 160px;
        margin-bottom: 16px
    }
}

.about-us .divider-accent {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 10
}

.about-us .divider-accent__line {
    width: 80px;
    height: 2px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 48%, #201E40 100%)
}

.about-us .divider-accent__dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #D10895
}

@media (max-width: 600px) {
    .about-us .divider-accent {
        margin-top: -24px
    }

    .about-us .divider-accent__line {
        width: 46px
    }

    .about-us .divider-accent__dot {
        width: 4px;
        height: 4px
    }
}

.learning-program {
    background: #FDFCFB;
    color: #201E40;
    overflow-x: clip
}

.learning-program__split-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
    overflow: hidden
}

.learning-program__hero-left {
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative
}

.learning-program__hero-right {
    background: #201E40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px
}

.learning-program__dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #ffffff26 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.learning-program__manifesto {
    max-width: 480px;
    position: relative;
    z-index: 1
}

.learning-program__manifesto-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px;
    letter-spacing: -.02em
}

.learning-program__manifesto-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffeb;
    margin: 0
}

.learning-program__hero-content {
    max-width: 520px
}

.learning-program__hero-label {
    font-size: 13px;
    line-height: 1.6;
    color: #F3D1AF;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 16px
}

.learning-program__hero-title {
    font-size: 66px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 24px;
    font-weight: 700
}

.learning-program__hero-description {
    font-size: 21px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0
}

@media (max-width: 900px) {
    .learning-program__split-hero {
        grid-template-columns: 1fr
    }

    .learning-program__hero-left {
        min-height: 320px
    }

    .learning-program__hero-right {
        min-height: 380px
    }

    .learning-program__hero-title {
        font-size: 38px
    }

    .learning-program__hero-description {
        font-size: 16px
    }
}

@media (max-width: 600px) {

    .learning-program__hero-left,
    .learning-program__hero-right {
        padding: 24px
    }

    .learning-program__manifesto-heading {
        font-size: 28px
    }

    .learning-program__hero-title {
        font-size: 28px
    }
}

.learning-program__curriculum {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative
}

.learning-program__curriculum-header {
    text-align: center;
    margin: 0 0 80px
}

.learning-program__curriculum-title {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.learning-program__curriculum-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    animation: learning-program-line-draw .8s cubic-bezier(0.34, 1.2, 0.64, 1) .3s forwards
}

@keyframes learning-program-line-draw {
    to {
        width: 100%
    }
}

.learning-program__curriculum-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    max-width: 680px;
    margin: 0 auto
}

.learning-program__grid-outer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.learning-program__grid-inner {
    display: grid;
    gap: 24px
}

.learning-program__module {
    background: #FFF;
    border: 1px solid #201e4014;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 2px 1px 2px -2px #d1089512 2px 6px 25px -2px #d108951c;
    transition: transform .32s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .32s ease-in-out;
    opacity: 0;
    transform: translateX(-40px);
    animation: learning-program-slide-in-odd .65s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.learning-program__module:nth-child(even) {
    transform: translateX(40px);
    animation: learning-program-slide-in-even .65s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.learning-program__module:nth-child(1) {
    animation-delay: .1s
}

.learning-program__module:nth-child(2) {
    animation-delay: .2s
}

.learning-program__module:nth-child(3) {
    animation-delay: .3s
}

.learning-program__module:nth-child(4) {
    animation-delay: .4s
}

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

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

.learning-program__module:hover {
    transform: translateY(-4px);
    box-shadow: 2px 10px 36px -2px #d108951c
}

.learning-program__module-number {
    font-size: 13px;
    line-height: 1.2;
    color: #D10895;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 8px
}

.learning-program__module-name {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    font-weight: 600
}

.learning-program__module-description {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 16px
}

.learning-program__module-topics {
    list-style: decimal;
    padding-left: 24px;
    margin: 0
}

.learning-program__module-topic {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 8px
}

.learning-program__module-topic:last-child {
    margin-bottom: 0
}

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

    .learning-program__curriculum-header {
        margin: 0 0 40px
    }

    .learning-program__curriculum-title {
        font-size: 28px
    }

    .learning-program__grid-outer {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 600px) {
    .learning-program__module-name {
        font-size: 16px
    }
}

.learning-program__approach {
    background: #201E40;
    position: relative;
    overflow: hidden
}

.learning-program__approach-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
    z-index: 0
}

.learning-program__approach-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.learning-program__approach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(127deg, #f3d1af1f 0%, #d1089526 52%, #201e40d9 100%);
    z-index: 1;
    pointer-events: none
}

.learning-program__approach-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 2
}

.learning-program__approach-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start
}

.learning-program__approach-sidebar {
    position: sticky;
    top: 40px
}

.learning-program__approach-heading {
    font-size: 28px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 16px
}

.learning-program__approach-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #D10895;
    border-radius: 2px
}

.learning-program__approach-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffd1;
    margin: 0
}

.learning-program__approach-main {
    display: grid;
    gap: 24px
}

.learning-program__feature {
    background: #ffffff0f;
    border: 1px solid #ffffff1f;
    border-radius: 2px;
    padding: 24px;
    backdrop-filter: blur(8px);
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .35s ease-in-out;
    opacity: 0;
    transform: translateX(40px);
    animation: learning-program-slide-in-even .7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.learning-program__feature:nth-child(odd) {
    transform: translateX(-40px);
    animation: learning-program-slide-in-odd .7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.learning-program__feature:nth-child(1) {
    animation-delay: .15s
}

.learning-program__feature:nth-child(2) {
    animation-delay: .3s
}

.learning-program__feature:nth-child(3) {
    animation-delay: .45s
}

.learning-program__feature:hover {
    background: #ffffff17;
    border-color: #f3d1af40
}

.learning-program__feature-title {
    font-size: 21px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px;
    font-weight: 600
}

.learning-program__feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0 0 16px
}

.learning-program__feature-highlight {
    background: #f3d1af1f;
    padding: 16px;
    border-radius: 2px;
    border-left: 3px solid #F3D1AF;
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
    margin: 0
}

@media (max-width: 900px) {
    .learning-program__approach-container {
        padding: 40px 24px
    }

    .learning-program__approach-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .learning-program__approach-sidebar {
        position: static
    }

    .learning-program__approach-heading {
        font-size: 21px
    }
}

.learning-program__activity {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 4px solid #D10895
}

.learning-program__activity-header {
    margin: 0 0 40px
}

.learning-program__activity-title {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%
}

.learning-program__activity-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    animation: learning-program-line-draw-center .9s cubic-bezier(0.34, 1.2, 0.64, 1) .2s forwards
}

@keyframes learning-program-line-draw-center {
    to {
        width: 220px
    }
}

.learning-program__activity-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative
}

.learning-program__activity-main {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learning-program__activity-card {
    background: #FFF;
    border: 1px solid #201e4014;
    border-radius: 46px;
    padding: 24px;
    box-shadow: 2px 1px 2px -2px #201e4012 2px 6px 25px -2px #201e401c;
    position: relative
}

.learning-program__diamond {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    transform: rotate(45deg);
    opacity: .85;
    pointer-events: none
}

.learning-program__activity-card-title {
    font-size: 21px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    font-weight: 600
}

.learning-program__activity-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.learning-program__activity-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learning-program__activity-image {
    width: 100%;
    height: 280px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 2px 6px 25px -2px #201e401c
}

.learning-program__activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.learning-program__activity-image:hover img {
    transform: scale(1.05)
}

.learning-program__feed {
    background: #FFF;
    border: 1px solid #201e4014;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 2px 1px 2px -2px #201e4012 2px 6px 25px -2px #201e401c
}

.learning-program__feed-heading {
    font-size: 16px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.learning-program__feed-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learning-program__feed-entry {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 16px;
    border-bottom: 1px solid #201e400f
}

.learning-program__feed-entry:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.learning-program__feed-icon {
    width: 40px;
    height: 40px;
    border-radius: 46px;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.learning-program__feed-icon svg {
    width: 20px;
    height: 20px;
    fill: #FFF
}

.learning-program__feed-content {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.learning-program__feed-time {
    font-size: 13px;
    line-height: 1.2;
    color: #D10895;
    font-weight: 600
}

.learning-program__feed-description {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

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

    .learning-program__activity-title {
        font-size: 28px
    }

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

@media (max-width: 600px) {
    .learning-program__activity-card-title {
        font-size: 16px
    }

    .learning-program__diamond {
        width: 24px;
        height: 24px
    }

    .learning-program__activity-image {
        height: 220px
    }
}

.learning-program__cta {
    background: #FFF;
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.learning-program__cta-box {
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    border-radius: 2px;
    padding: 40px;
    box-shadow: 2px 10px 36px -2px #d108951c
}

.learning-program__cta-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #FFF;
    margin: 0 0 16px;
    font-weight: 700
}

.learning-program__cta-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffeb;
    margin: 0 0 24px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.learning-program__cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #FFF;
    color: #201E40;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .28s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .28s ease-in-out
}

.learning-program__cta-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #F3D1AF;
    transition: height .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: -1
}

.learning-program__cta-button:hover::before {
    height: 100%
}

.learning-program__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 2px 10px 36px -2px #201e401c
}

.learning-program__cta-button:active {
    transform: translateY(0)
}

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

    .learning-program__cta-box {
        padding: 24px
    }

    .learning-program__cta-heading {
        font-size: 28px
    }
}

@media (max-width: 600px) {
    .learning-program__cta-heading {
        font-size: 21px
    }

    .learning-program__cta-button {
        padding: 16px 24px;
        font-size: 13px
    }
}

.contact-page {
    background: linear-gradient(157deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    padding: 0;
    margin: 0
}

.contact-page__hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative
}

.contact-page__hero-visual {
    flex: 0 0 280px;
    position: relative
}

.contact-page__hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    filter: blur(3px);
    mask-image: radial-gradient(ellipse 70% 65% at center, black 45%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at center, black 45%, transparent 85%)
}

.contact-page__hero-shapes {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    pointer-events: none
}

.contact-page__shape {
    position: absolute;
    border-radius: 46px;
    opacity: .15
}

.contact-page__shape--one {
    width: 45px;
    height: 45px;
    background: #D10895;
    top: 0;
    right: 0;
    transform: rotate(12deg)
}

.contact-page__shape--two {
    width: 28px;
    height: 28px;
    background: #201E40;
    bottom: 24px;
    right: 8px;
    transform: rotate(-8deg)
}

.contact-page__shape--three {
    width: 18px;
    height: 18px;
    background: #F3D1AF;
    top: 50px;
    left: -8px;
    transform: rotate(22deg)
}

.contact-page__hero-content {
    flex: 1;
    padding-top: 80px
}

.contact-page__headline {
    font-size: 66px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px;
    animation: elasticEntry .65s cubic-bezier(0.34, 1.56, 0.64, 1)
}

@keyframes elasticEntry {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(24px)
    }

    60% {
        transform: scale(1.04) translateY(-4px)
    }

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

.contact-page__numerical {
    display: inline-block;
    color: #D10895;
    font-size: 38px;
    margin-right: 8px;
    font-weight: 600
}

.contact-page__tagline {
    font-size: 21px;
    line-height: 1.6;
    color: #201E40;
    margin: 0;
    max-width: 520px
}

.contact-page__main-section {
    background: #FDFCFB;
    padding: 80px 24px;
    position: relative
}

.contact-page__main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(to right, #201E40 0px, #201E40 1px, transparent 1px, transparent 8px, #201E40 8px, #201E40 9px, transparent 9px, transparent 24px);
    opacity: .2
}

.contact-page__main-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 16px;
    background: #201E40;
    opacity: .2
}

.contact-page__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.contact-page__info-zone {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.contact-page__info-header {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.contact-page__info-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D10895 0%, #201E40 100%);
    animation: underlineDraw .8s cubic-bezier(0.34, 1.2, 0.64, 1) .3s forwards
}

@keyframes underlineDraw {
    to {
        width: 100%
    }
}

.contact-page__info-text {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 40px
}

.contact-page__details-grid {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contact-page__detail-card {
    background: #FFF;
    padding: 24px;
    border-radius: 2px;
    box-shadow: 2px 6px 25px -2px #d108951c;
    transition: box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative
}

.contact-page__detail-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 2px;
    padding: 2px;
    background: transparent;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s cubic-bezier(0.34, 1.2, 0.64, 1) .1s
}

.contact-page__detail-card:hover {
    box-shadow: 2px 10px 36px -2px #d108951c;
    transform: translateY(-4px)
}

.contact-page__detail-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #D10895 0%, #201E40 100%)
}

.contact-page__detail-label {
    font-size: 13px;
    line-height: 1.6;
    color: #D10895;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 8px;
    font-weight: 600
}

.contact-page__detail-value {
    font-size: 21px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.contact-page__detail-link {
    color: #201E40;
    text-decoration: none;
    transition: color .3s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-page__detail-link:hover {
    color: #D10895
}

.contact-page__feature-strip {
    display: flex;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid #201e401a;
    margin-top: 16px
}

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

.contact-page__feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3D1AF 0%, #D10895 100%);
    border-radius: 46px;
    color: #FFF;
    font-size: 21px
}

.contact-page__feature-label {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.contact-page__form-zone {
    background: #FFF;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    position: relative;
    overflow: hidden
}

.contact-page__form-zone::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top right, #f3d1af26 0%, transparent 70%);
    pointer-events: none
}

.contact-page__form-header {
    font-size: 28px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 8px
}

.contact-page__form-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    opacity: .7;
    margin: 0 0 40px
}

.contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.contact-page__label {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    font-weight: 600;
    letter-spacing: .5px
}

.contact-page__input {
    padding: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    border: 2px solid #201e4026;
    border-radius: 2px;
    background: #FDFCFB;
    transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), background .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-page__input::placeholder {
    color: #201e4066
}

.contact-page__input:focus {
    outline: none;
    border-color: #D10895;
    background: #FFF
}

.contact-page__budget-section {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-page__budget-label {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    font-weight: 600;
    letter-spacing: .5px
}

.contact-page__budget-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.contact-page__radio-wrapper {
    position: relative
}

.contact-page__radio-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contact-page__radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    border: 2px solid #201e4026;
    border-radius: 2px;
    background: #FDFCFB;
    cursor: pointer;
    transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    text-align: center
}

.contact-page__radio-label:hover {
    border-color: #D10895;
    background: #FFF
}

.contact-page__radio-input:checked+.contact-page__radio-label {
    border-color: #D10895;
    background: linear-gradient(135deg, #f3d1af33 0%, #d108951a 100%);
    color: #D10895;
    font-weight: 600
}

.contact-page__privacy-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #f3d1af14;
    border-radius: 2px;
    margin-top: 8px
}

.contact-page__checkbox-input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #D10895
}

.contact-page__privacy-text {
    font-size: 13px;
    line-height: 1.6;
    color: #201E40;
    margin: 0
}

.contact-page__privacy-link {
    color: #D10895;
    text-decoration: none;
    font-weight: 600;
    transition: color .3s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-page__privacy-link:hover {
    color: #201E40
}

.contact-page__submit {
    padding: 16px 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
    background: #201E40;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .5px;
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 2px 6px 25px -2px #201e401c
}

.contact-page__submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #D10895 0%, #F3D1AF 100%);
    transition: height .4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.contact-page__submit:hover::before {
    height: 100%
}

.contact-page__submit:hover {
    transform: translateY(-2px);
    box-shadow: 2px 10px 36px -2px #201e401c
}

.contact-page__submit span {
    position: relative;
    z-index: 1
}

.contact-page__photo-accent {
    margin-top: 40px;
    position: relative
}

.contact-page__accent-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 2px 6px 25px -2px #201e401c
}

@media (max-width: 1200px) {
    .contact-page__hero {
        gap: 24px
    }

    .contact-page__hero-visual {
        flex: 0 0 240px
    }

    .contact-page__hero-image {
        height: 360px
    }

    .contact-page__headline {
        font-size: 38px
    }

    .contact-page__numerical {
        font-size: 28px
    }

    .contact-page__container {
        gap: 40px
    }
}

@media (max-width: 900px) {
    .contact-page__hero {
        flex-direction: column;
        padding: 40px 24px
    }

    .contact-page__hero-visual {
        flex: 0 0 auto;
        width: 100%
    }

    .contact-page__hero-image {
        height: 280px
    }

    .contact-page__hero-content {
        padding-top: 0
    }

    .contact-page__headline {
        font-size: 38px
    }

    .contact-page__tagline {
        font-size: 16px
    }

    .contact-page__container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-page__main-section {
        padding: 40px 24px
    }

    .contact-page__info-header {
        font-size: 28px
    }

    .contact-page__feature-strip {
        gap: 24px
    }

    .contact-page__form-zone {
        padding: 24px
    }

    .contact-page__budget-options {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .contact-page__hero {
        padding: 24px 16px
    }

    .contact-page__hero-image {
        height: 240px
    }

    .contact-page__headline {
        font-size: 28px
    }

    .contact-page__numerical {
        font-size: 21px
    }

    .contact-page__tagline {
        font-size: 16px
    }

    .contact-page__main-section {
        padding: 24px 16px
    }

    .contact-page__info-header {
        font-size: 21px
    }

    .contact-page__detail-card {
        padding: 16px
    }

    .contact-page__detail-value {
        font-size: 16px
    }

    .contact-page__feature-strip {
        flex-direction: column;
        gap: 16px
    }

    .contact-page__form-zone {
        padding: 16px
    }

    .contact-page__form-header {
        font-size: 21px
    }

    .contact-page__accent-image {
        height: 240px
    }
}

.podcast {
    background: #fefefe;
    color: #201E40;
    overflow-x: clip
}

.podcast__title-block {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
    border-bottom: 1px solid #D10895
}

.podcast__title-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(127deg, #F3D1AF 0%, #D10895 48%, #201E40 100%);
    animation: podcast-gradient-shift 8s cubic-bezier(0.34, 1.2, 0.64, 1) infinite alternate;
    opacity: .08
}

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

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

.podcast__title-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.podcast__title-heading {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.podcast__title-theses {
    font-size: 21px;
    line-height: 1.6;
    max-width: 780px;
    margin: 0
}

.podcast__episodes {
    padding: 80px 24px;
    position: relative;
    background: linear-gradient(180deg, #F3D1AF08 0%, #fff 40%)
}

.podcast__episodes-container {
    max-width: 1100px;
    margin: 0 auto
}

.podcast__episodes-heading {
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%)
}

.podcast__episodes-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D10895;
    animation: podcast-underline-draw 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes podcast-underline-draw {
    to {
        width: 100%
    }
}

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

.podcast__card {
    background: #fff;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 2px 1px 2px -2px #d1089512 2px 6px 25px -2px #d108951c;
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative
}

.podcast__card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 10px 36px -2px #d108951c
}

.podcast__card-number {
    font-size: 13px;
    line-height: 1.2;
    color: #D10895;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.podcast__card-title {
    font-size: 21px;
    line-height: 1.6;
    margin: 0 0 16px;
    font-weight: 600
}

.podcast__card-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 16px;
    color: #201E40
}

.podcast__card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    line-height: 1.2;
    color: #201E40;
    opacity: .7
}

.podcast__card-duration,
.podcast__card-date {
    display: flex;
    align-items: center;
    gap: 4px
}

.podcast__diamond {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #F3D1AF;
    transform: rotate(45deg);
    opacity: .3
}

.podcast__divider {
    height: 8px;
    background: #D10895;
    width: 100%
}

.podcast__insights {
    padding: 80px 24px;
    position: relative;
    background: #fefefe;
    overflow: hidden
}

.podcast__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .03;
    background-image: repeating-linear-gradient(0deg, #201E40 0px, #201E40 1px, transparent 1px, transparent 8px), repeating-linear-gradient(90deg, #201E40 0px, #201E40 1px, transparent 1px, transparent 8px), repeating-linear-gradient(45deg, transparent 0px, transparent 16px, #201E40 16px, #201E40 17px), repeating-linear-gradient(-45deg, transparent 0px, transparent 16px, #201E40 16px, #201E40 17px);
    animation: podcast-pattern-pan 60s linear infinite
}

@keyframes podcast-pattern-pan {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-32px)
    }
}

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

.podcast__insights-heading {
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 40px;
    text-align: center
}

.podcast__complex-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

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

.podcast__step {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.podcast__step-num {
    min-width: 40px;
    height: 40px;
    border-radius: 46px;
    background: #D10895;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0
}

.podcast__step-content {
    flex: 1
}

.podcast__step-label {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 600
}

.podcast__step-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

.podcast__outcome {
    background: #fff;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 2px 6px 25px -2px #201e401c;
    position: sticky;
    top: 24px
}

.podcast__outcome-label {
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 600;
    text-align: center
}

.podcast__chart {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.podcast__bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.podcast__bar-label {
    font-size: 13px;
    line-height: 1.2;
    color: #201E40;
    font-weight: 600
}

.podcast__bar-track {
    width: 100%;
    height: 24px;
    background: #F3D1AF20;
    border-radius: 2px;
    overflow: hidden;
    position: relative
}

.podcast__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #F3D1AF 0%, #D10895 100%);
    transition: width 1.2s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative
}

.podcast__bar-value {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700
}

.podcast__bar-fill[data-percent="87"] {
    width: 87%
}

.podcast__bar-fill[data-percent="74"] {
    width: 74%
}

.podcast__bar-fill[data-percent="91"] {
    width: 91%
}

.podcast__bar-fill[data-percent="68"] {
    width: 68%
}

.podcast__quote-wrapper {
    margin: 40px 0 0;
    padding: 24px;
    background: #F3D1AF15;
    border-radius: 2px;
    position: relative
}

.podcast__quote-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #D10895
}

.podcast__quote-text {
    font-size: 21px;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    color: #201E40
}

.podcast__img-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin: 24px 0 0
}

.podcast__img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #fefefe 100%);
    pointer-events: none
}

.podcast__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

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

    .podcast__title-heading {
        font-size: 38px
    }

    .podcast__title-theses {
        font-size: 16px
    }

    .podcast__episodes {
        padding: 40px 24px
    }

    .podcast__episodes-heading {
        font-size: 28px;
        margin: 0 0 24px
    }

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

    .podcast__card {
        padding: 16px
    }

    .podcast__insights {
        padding: 40px 24px
    }

    .podcast__insights-heading {
        font-size: 28px;
        margin: 0 0 24px
    }

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

    .podcast__outcome {
        position: static
    }

    .podcast__img-wrapper {
        height: 240px
    }
}

@media (max-width: 600px) {
    .podcast__title-heading {
        font-size: 28px
    }

    .podcast__title-theses {
        font-size: 13px
    }

    .podcast__episodes-heading {
        font-size: 21px
    }

    .podcast__card-title {
        font-size: 16px
    }

    .podcast__insights-heading {
        font-size: 21px
    }

    .podcast__step-label,
    .podcast__outcome-label,
    .podcast__quote-text {
        font-size: 16px
    }

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

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(217deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    padding: 40px 24px
}

.success-page .confirmation-container {
    background: #FFF;
    max-width: 580px;
    width: 100%;
    padding: 80px 40px;
    border-radius: 46px;
    text-align: center;
    box-shadow: 2px 10px 36px -2px #d108951c
}

.success-page .icon-wrapper {
    width: 104px;
    height: 104px;
    margin: 0 auto 40px;
    background: linear-gradient(217deg, #F3D1AF 0%, #D10895 52%, #201E40 100%);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.success-page .icon-wrapper::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 64px;
    border-right: 8px solid #FFF;
    border-bottom: 8px solid #FFF;
    transform: rotate(42deg) translateY(-8px)
}

.success-page .confirmation-title {
    font-size: 38px;
    line-height: 1.2;
    color: #201E40;
    margin: 0 0 16px
}

.success-page .confirmation-message {
    font-size: 16px;
    line-height: 1.6;
    color: #201E40;
    margin: 0 0 40px;
    opacity: .82
}

.success-page .action-group {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.success-page .primary-button {
    background: #D10895;
    color: #FFF;
    font-size: 16px;
    padding: 16px 40px;
    border: none;
    border-radius: 46px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-page .primary-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #201E40;
    transition: height .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.success-page .primary-button:hover::before {
    height: 100%
}

.success-page .primary-button span {
    position: relative;
    z-index: 1
}

.success-page .primary-button:hover {
    transform: translateY(-2px)
}

.success-page .secondary-link {
    color: #D10895;
    font-size: 16px;
    text-decoration: none;
    transition: color .32s ease-in-out
}

.success-page .secondary-link:hover {
    color: #201E40
}

.success-page .info-note {
    margin: 40px 0 0;
    padding: 24px;
    background: #F3D1AF;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1.6;
    color: #201E40
}

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

    .success-page .confirmation-title {
        font-size: 28px
    }

    .success-page .icon-wrapper {
        width: 84px;
        height: 84px;
        margin-bottom: 24px
    }

    .success-page .icon-wrapper::before {
        width: 28px;
        height: 52px;
        border-right-width: 6px;
        border-bottom-width: 6px
    }
}