*::before,
*::after {
    content: none;
    box-sizing: inherit;
}

body {
    font-family: 'Rubik', sans-serif;
    box-sizing: border-box;
}

.brand-bar {
    background: linear-gradient(135deg, #8A287F 0%, #6b1e62 60%, #4a1545 100%);
    width: 100%;
}

.brand-bar__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-identity__logo-ring {
    width: 62px;
    height: 62px;
    border-radius: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        -1px 3px 2px 0 rgba(138, 40, 127, 0.07),
        -1px 4px 14px 0 rgba(138, 40, 127, 0.10),
        0 0 0 3px rgba(205, 90, 199, 0.35),
        0 0 0 6px rgba(205, 90, 199, 0.15);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-identity__logo-ring img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

.brand-identity__name {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 14px;
    color: #DFBFD8;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: right;
    max-width: 280px;
}

.primary-navigation {
    background: #fff;
    border-bottom: 2px solid #DFBFD8;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    width: 100%;
}

.primary-navigation__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.primary-navigation__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #2d0a29;
    text-decoration: none;
    line-height: 1.35;
    letter-spacing: 0.01em;
    border-bottom: 3px solid transparent;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 44px;
}

.primary-navigation__link:hover {
    color: #8A287F;
    border-bottom-color: #CD5AC7;
    background-color: rgba(223, 191, 216, 0.18);
}

.primary-navigation__link:focus {
    outline: none;
    transform: scale(1.02);
    color: #8A287F;
    border-bottom-color: #8A287F;
}

.primary-navigation__link i {
    font-size: 17px;
    color: #CD5AC7;
}

@media (max-width: 960px) {
    .brand-bar__inner {
        padding: 12px 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .brand-tagline {
        text-align: left;
        max-width: 100%;
        font-size: 14px;
    }

    .brand-identity__name {
        font-size: 36px;
    }

    .primary-navigation__inner {
        padding: 0 24px;
    }

    .primary-navigation__link {
        padding: 12px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .brand-bar__inner {
        padding: 12px;
    }

    .brand-identity__name {
        font-size: 36px;
    }

    .primary-navigation__inner {
        padding: 0 8px;
        gap: 0;
    }

    .primary-navigation__link {
        padding: 8px 8px;
        font-size: 14px;
    }

    .primary-navigation__link span {
        display: none;
    }
}

.site-footer {
    background: linear-gradient(160deg, #8A287F 0%, #5c1a56 55%, #3a0f37 100%);
    color: #DFBFD8;
    padding: 80px 0 40px;
}

.site-footer__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

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

.footer-brand__logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand__logo-ring {
    width: 58px;
    height: 58px;
    border-radius: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        -1px 3px 2px 0 rgba(138, 40, 127, 0.07),
        -1px 4px 14px 0 rgba(138, 40, 127, 0.10),
        0 0 0 3px rgba(223, 191, 216, 0.4);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-brand__logo-ring img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.footer-brand__name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.footer-brand__address {
    font-size: 14px;
    line-height: 1.55;
    color: #DFBFD8;
    letter-spacing: 0.01em;
}

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

.footer-brand__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #DFBFD8;
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-brand__contact-item:hover {
    color: #fff;
}

.footer-brand__contact-item i {
    font-size: 17px;
    color: #CD5AC7;
    flex-shrink: 0;
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-group__label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(223, 191, 216, 0.25);
}

.footer-group__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #DFBFD8;
    text-decoration: none;
    line-height: 1.35;
    letter-spacing: 0.01em;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
}

.footer-group__link:hover {
    color: #fff;
}

.footer-group__link:focus {
    outline: none;
    transform: scale(1.02);
    color: #fff;
}

.footer-group__link i {
    font-size: 17px;
    color: #CD5AC7;
    flex-shrink: 0;
}

.site-footer__bottom {
    max-width: 1366px;
    margin: 40px auto 0;
    padding: 24px 40px 0;
    border-top: 1px solid rgba(223, 191, 216, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__copyright {
    font-size: 14px;
    color: rgba(223, 191, 216, 0.7);
    line-height: 1.35;
}

.site-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(205, 90, 199, 0.2);
    border: 1px solid rgba(205, 90, 199, 0.3);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 14px;
    color: #DFBFD8;
    line-height: 1.35;
}

.site-footer__badge i {
    font-size: 14px;
    color: #CD5AC7;
}

@media (max-width: 960px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 24px;
        gap: 40px;
    }

    .site-footer__bottom {
        padding: 24px 24px 0;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 24px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        padding: 0 12px;
        gap: 24px;
    }

    .site-footer__bottom {
        padding: 24px 12px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

.consent-popup {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    background: #fff;
    border-radius: 12px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    padding: 24px;
    max-width: 320px;
    width: calc(100vw - 48px);
}

.consent-popup__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #DFBFD8 0%, #CD5AC7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.consent-popup__icon i {
    font-size: 20px;
    color: #fff;
}

.consent-popup__text {
    font-size: 14px;
    color: #2d0a29;
    line-height: 1.55;
    margin-bottom: 12px;
    font-family: 'Rubik', sans-serif;
}

.consent-popup__actions {
    display: flex;
    gap: 8px;
}

.consent-popup__button {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid #8A287F;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.1;
}

.consent-popup__button:focus {
    outline: none;
    transform: scale(1.02);
}

.consent-popup__button.accept {
    background: #8A287F;
    color: #fff;
}

.consent-popup__button.accept:hover {
    background: #6b1e62;
    border-color: #6b1e62;
}

.consent-popup__button.decline {
    background: #fff;
    color: #8A287F;
}

.consent-popup__button.decline:hover {
    background: rgba(138, 40, 127, 0.08);
}

.terms-box-iq {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #1b1b2e;
    line-height: 1.55;
    font-size: 17px;
}

.terms-box-iq h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #8A287F;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #DFBFD8;
}

.terms-box-iq h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #6b1f62;
    margin-top: 80px;
    margin-bottom: 24px;
}

.terms-box-iq h3 {
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #8A287F;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 12px;
}

.terms-box-iq h4 {
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #3d1239;
    margin-top: 24px;
    margin-bottom: 8px;
}

.terms-box-iq h5 {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.03em;
    font-weight: 700;
    color: #5a1a52;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 8px;
}

.terms-box-iq h6 {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: #6b1f62;
    margin-top: 12px;
    margin-bottom: 8px;
}

.terms-box-iq ul {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none;
}

.terms-box-iq ol {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.terms-box-iq ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.55;
    color: #1b1b2e;
}

.terms-box-iq ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #CD5AC7;
    border-radius: 50%;
}

.terms-box-iq ol li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.55;
    color: #1b1b2e;
    counter-increment: policy-counter;
}

.terms-box-iq ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #8A287F;
    line-height: 1.55;
}

.terms-box-iq ul ul,
.terms-box-iq ol ol,
.terms-box-iq ul ol,
.terms-box-iq ol ul {
    margin: 8px 0;
    padding-left: 20px;
}

.terms-box-iq ul ul li::before {
    width: 4px;
    height: 4px;
    background-color: #DFBFD8;
    top: 11px;
}

.terms-box-iq strong,
.terms-box-iq b {
    font-weight: 700;
    color: #3d1239;
}

.terms-box-iq em,
.terms-box-iq i {
    font-style: italic;
    color: #5a1a52;
}

.terms-box-iq a {
    color: #8A287F;
    text-decoration: underline;
    text-decoration-color: #DFBFD8;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-box-iq a:hover {
    color: #CD5AC7;
    text-decoration-color: #CD5AC7;
}

.terms-box-iq a:focus-visible {
    outline: 2px solid #8A287F;
    outline-offset: 2px;
    border-radius: 6px;
}

@media (max-width: 960px) {
    .terms-box-iq {
        padding: 80px 24px;
    }

    .terms-box-iq h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .terms-box-iq h2 {
        font-size: 36px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .terms-box-iq {
        padding: 40px 24px;
    }

    .terms-box-iq h1 {
        font-size: 36px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .terms-box-iq h2 {
        font-size: 36px;
        margin-top: 40px;
        margin-bottom: 12px;
    }

    .terms-box-iq ul,
    .terms-box-iq ol {
        padding-left: 12px;
    }
}

.services-page {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.services-page * {
    box-sizing: border-box;
}

.services-page a {
    text-decoration: none !important;
    color: inherit;
}

.services-page .page-schema {
    display: none;
}

/* ── BLOCK 1: TITLE BLOCK ── */
.services-page .title-block {
    padding: 80px 24px;
    text-align: center;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.services-page .title-block .atmosphere {
    position: absolute;
    border-radius: 48px;
    pointer-events: none;
    z-index: 0;
}

.services-page .title-block .atmosphere.spot-a {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.13), transparent 70%);
    top: -80px;
    left: -60px;
    filter: blur(48px);
}

.services-page .title-block .atmosphere.spot-b {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at top left, rgba(205, 90, 199, 0.10), transparent 70%);
    top: 40px;
    right: -40px;
    filter: blur(40px);
}

.services-page .title-block .atmosphere.spot-c {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at top left, rgba(223, 191, 216, 0.18), transparent 70%);
    bottom: 0;
    left: 40%;
    filter: blur(36px);
}

.services-page .title-block .picture-frame {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 40px;
}

.services-page .title-block .picture-frame img {
    width: 560px;
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    filter: saturate(0.55) brightness(0.95);
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    display: block;
}

.services-page .title-block .picture-frame .corner-lines {
    position: absolute;
    bottom: -16px;
    right: -16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.services-page .title-block .picture-frame .corner-lines span {
    display: block;
    height: 2px;
    background: rgba(138, 40, 127, 0.22);
    border-radius: 2px;
}

.services-page .title-block .picture-frame .corner-lines span:nth-child(1) {
    width: 48px;
}

.services-page .title-block .picture-frame .corner-lines span:nth-child(2) {
    width: 36px;
}

.services-page .title-block .picture-frame .corner-lines span:nth-child(3) {
    width: 24px;
}

.services-page .title-block .picture-frame .corner-lines span:nth-child(4) {
    width: 14px;
}

.services-page .title-block .text-group {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.services-page .title-block .text-group .label-tag {
    display: inline-block;
    background: rgba(223, 191, 216, 0.45);
    color: #8A287F;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 36px;
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.services-page .title-block .text-group h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b1028;
    margin: 0 0 24px;
    font-weight: 700;
}

.services-page .title-block .text-group h1 em {
    font-style: normal;
    color: #8A287F;
}

.services-page .title-block .text-group .lead {
    font-size: 17px;
    line-height: 1.55;
    color: #3a2a40;
    margin: 0 auto;
    max-width: 520px;
}

/* wavy divider */
.services-page .wavy-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.services-page .wavy-divider svg {
    display: block;
    width: 100%;
}

/* ── BLOCK 2: WHAT WE MEASURE ── */
.services-page .measure-block {
    padding: 80px 24px;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.07), transparent 60%), #fdf8fc;
    position: relative;
}

.services-page .measure-block .measure-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.services-page .measure-block .measure-aside h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #1b1028;
    font-weight: 700;
    margin: 0 0 24px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.services-page .measure-block .measure-aside h2 strong {
    font-weight: 700;
    display: block;
    color: #8A287F;
    text-transform: none;
    letter-spacing: -0.01em;
    font-size: 36px;
}

.services-page .measure-block .measure-aside .aside-note {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4060;
    border-top: 2px solid rgba(138, 40, 127, 0.18);
    padding-top: 12px;
}

.services-page .measure-block .measure-body .body-intro {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1f38;
    margin: 0 0 40px;
}

.services-page .measure-block .measure-body .body-intro .accent-quote {
    color: #8A287F;
    font-weight: 600;
}

.services-page .measure-block .measure-body .method-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.services-page .measure-block .measure-body .method-list li {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    position: relative;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    animation: appear-scale 0.26s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.services-page .measure-block .measure-body .method-list li:hover {
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.14);
    transform: translateY(-2px);
}

@keyframes appear-scale {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

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

.services-page .measure-block .measure-body .method-list li .method-icon {
    width: 40px;
    height: 40px;
    background: rgba(223, 191, 216, 0.35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #8A287F;
    font-size: 22px;
}

.services-page .measure-block .measure-body .method-list li h4 {
    font-size: 17px;
    line-height: 1.35;
    color: #1b1028;
    margin: 0 0 8px;
    font-weight: 600;
}

.services-page .measure-block .measure-body .method-list li p {
    font-size: 14px;
    line-height: 1.55;
    color: #5a4060;
    margin: 0;
}

.services-page .measure-block .measure-body .slash-list {
    font-size: 14px;
    line-height: 1.55;
    color: #8A287F;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.services-page .measure-block .measure-body .slash-list span {
    color: #bda0b8;
    margin: 0 8px;
}

/* ── BLOCK 3: EXPERT PROFILE ── */
.services-page .expert-block {
    padding: 80px 24px;
    background: #fff;
    position: relative;
}

.services-page .expert-block .expert-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: stretch;
}

.services-page .expert-block .expert-visual {
    flex: 0 0 300px;
    position: relative;
}

.services-page .expert-block .expert-visual .portrait-wrap {
    width: 100%;
    aspect-ratio: 5/7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 44px 0 rgba(205, 90, 199, 0.12);
    position: relative;
}

.services-page .expert-block .expert-visual .portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.7) brightness(0.97);
    display: block;
}

.services-page .expert-block .expert-visual .portrait-wrap .tint {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.18), transparent 65%);
    pointer-events: none;
}

.services-page .expert-block .expert-visual .corner-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.services-page .expert-block .expert-visual .corner-accent span {
    display: block;
    height: 2px;
    background: rgba(205, 90, 199, 0.3);
    border-radius: 2px;
}

.services-page .expert-block .expert-visual .corner-accent span:nth-child(1) {
    width: 40px;
}

.services-page .expert-block .expert-visual .corner-accent span:nth-child(2) {
    width: 28px;
}

.services-page .expert-block .expert-visual .corner-accent span:nth-child(3) {
    width: 16px;
}

.services-page .expert-block .expert-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.services-page .expert-block .expert-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 40, 127, 0.08);
    color: #8A287F;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 36px;
    width: fit-content;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.services-page .expert-block .expert-text h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #1b1028;
    margin: 0;
    font-weight: 700;
}

.services-page .expert-block .expert-text .expert-name {
    font-size: 17px;
    color: #8A287F;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.services-page .expert-block .expert-text .expert-bio {
    font-size: 17px;
    line-height: 1.55;
    color: #3a2a40;
    margin: 0;
}

.services-page .expert-block .expert-text .quote-phrase {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1f38;
    font-style: italic;
    margin: 0;
    padding: 12px 24px;
    background: rgba(223, 191, 216, 0.25);
    border-radius: 12px;
}

.services-page .expert-block .expert-text .quote-phrase::before {
    content: "\201C";
    color: #8A287F;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    vertical-align: -4px;
    margin-right: 4px;
}

.services-page .expert-block .expert-text .quote-phrase::after {
    content: "\201D";
    color: #8A287F;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    vertical-align: -4px;
    margin-left: 4px;
}

.services-page .expert-block .expert-text .cta-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.services-page .expert-block .expert-text .btn-primary {
    display: inline-block;
    background: #8A287F;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 12px;
    border: 2px solid #8A287F;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0px;
    text-decoration: none !important;
}

.services-page .expert-block .expert-text .btn-primary:hover {
    background: #6e1f65;
    border-color: #6e1f65;
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

.services-page .expert-block .expert-text .btn-primary:focus-visible {
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

.services-page .expert-block .expert-text .btn-secondary {
    display: inline-block;
    background: transparent;
    color: #8A287F;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 12px;
    border: 2px solid #8A287F;
    cursor: pointer;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0px;
    text-decoration: none !important;
}

.services-page .expert-block .expert-text .btn-secondary:hover {
    background: rgba(138, 40, 127, 0.07);
    outline: 2px solid #CD5AC7;
    outline-offset: 4px;
}

.services-page .expert-block .expert-text .btn-secondary:focus-visible {
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

/* ── BLOCK 4: PROGRAM OVERVIEW ── */
.services-page .program-block {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.services-page .program-block .bg-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-page .program-block .bg-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.4) brightness(0.6);
    display: block;
}

.services-page .program-block .bg-image-wrap .overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 16, 40, 0.72);
    pointer-events: none;
}

.services-page .program-block .program-inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-page .program-block .program-top {
    text-align: center;
    margin-bottom: 80px;
}

.services-page .program-block .program-top h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.services-page .program-block .program-top h2 strong {
    display: block;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #DFBFD8;
}

.services-page .program-block .program-top .program-desc {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto;
}

.services-page .program-block .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.services-page .program-block .steps-grid .step-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(223, 191, 216, 0.22);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.services-page .program-block .steps-grid .step-card:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(205, 90, 199, 0.45);
}

.services-page .program-block .steps-grid .step-card .step-num {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: rgba(205, 90, 199, 0.35);
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.services-page .program-block .steps-grid .step-card h4 {
    font-size: 17px;
    line-height: 1.35;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-page .program-block .steps-grid .step-card p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.services-page .program-block .letter-hover-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.services-page .program-block .letter-hover-row .letter-word {
    display: inline-flex;
    flex-direction: row;
    overflow: hidden;
    border-radius: 36px;
    background: rgba(138, 40, 127, 0.35);
    padding: 8px 24px;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char {
    color: #DFBFD8;
}

.services-page .program-block .letter-hover-row .letter-word .letter-char {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(1) {
    transition-delay: 0s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(2) {
    transition-delay: 0.03s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(3) {
    transition-delay: 0.06s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(4) {
    transition-delay: 0.09s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(5) {
    transition-delay: 0.12s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(6) {
    transition-delay: 0.15s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(7) {
    transition-delay: 0.18s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(8) {
    transition-delay: 0.21s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(9) {
    transition-delay: 0.24s;
}

.services-page .program-block .letter-hover-row .letter-word:hover .letter-char:nth-child(10) {
    transition-delay: 0.27s;
}

.services-page .program-block .program-cta {
    text-align: center;
}

.services-page .program-block .program-cta .btn-light {
    display: inline-block;
    background: #fff;
    color: #8A287F;
    font-size: 17px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 12px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0px;
    text-decoration: none !important;
}

.services-page .program-block .program-cta .btn-light:hover {
    background: #DFBFD8;
    color: #6e1f65;
    outline: 2px solid #DFBFD8;
    outline-offset: 4px;
}

.services-page .program-block .program-cta .btn-light:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.services-page .program-block .corner-lines-dark {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
    z-index: 1;
}

.services-page .program-block .corner-lines-dark span {
    display: block;
    height: 2px;
    background: rgba(205, 90, 199, 0.25);
    border-radius: 2px;
}

.services-page .program-block .corner-lines-dark span:nth-child(1) {
    width: 60px;
}

.services-page .program-block .corner-lines-dark span:nth-child(2) {
    width: 44px;
}

.services-page .program-block .corner-lines-dark span:nth-child(3) {
    width: 28px;
}

.services-page .program-block .corner-lines-dark span:nth-child(4) {
    width: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .services-page .measure-block .measure-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-page .measure-block .measure-body .method-list {
        grid-template-columns: 1fr;
    }

    .services-page .expert-block .expert-inner {
        flex-direction: column;
        gap: 40px;
    }

    .services-page .expert-block .expert-visual {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }

    .services-page .program-block .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-page .title-block .text-group h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .services-page .title-block {
        padding: 40px 24px;
    }

    .services-page .title-block .text-group h1 {
        font-size: 36px;
    }

    .services-page .measure-block,
    .services-page .expert-block,
    .services-page .program-block {
        padding: 40px 24px;
    }

    .services-page .program-block .steps-grid {
        grid-template-columns: 1fr;
    }

    .services-page .program-block .program-top h2 strong {
        font-size: 36px;
    }

    .services-page .expert-block .expert-text .cta-row {
        flex-direction: column;
    }

    .services-page .expert-block .expert-text .btn-primary,
    .services-page .expert-block .expert-text .btn-secondary {
        text-align: center;
    }

    .services-page .measure-block .measure-body .method-list {
        grid-template-columns: 1fr;
    }
}

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

.about-us-page * {
    box-sizing: border-box;
}

.about-us-page .page-entry {
    position: relative;
    padding: 80px 24px;
    background: #fff;
}

.about-us-page .page-entry__container {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-us-page .page-entry__left {
    padding-top: 40px;
    position: relative;
}

.about-us-page .page-entry__dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: -24px;
    top: 0;
}

.about-us-page .page-entry__dot {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #DFBFD8;
}

.about-us-page .page-entry__dot.medium {
    width: 8px;
    height: 8px;
    background: #CD5AC7;
}

.about-us-page .page-entry__dot.large {
    width: 10px;
    height: 10px;
    background: #8A287F;
}

.about-us-page .page-entry__number {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #DFBFD8;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
}

.about-us-page .page-entry__heading {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1035;
    letter-spacing: -1.5px;
    margin: 0 0 24px 0;
    animation: wipe-reveal 0.8s cubic-bezier(0.0, 0, 0.2, 1) both;
    clip-path: inset(0 100% 0 0);
}

@keyframes wipe-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

.about-us-page .page-entry__subtext {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2b4a;
    margin: 0;
    max-width: 400px;
}

.about-us-page .page-entry__right {
    position: relative;
    padding-top: 80px;
}

.about-us-page .page-entry__image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.about-us-page .page-entry__image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(0px);
    transition: filter 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .page-entry__image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(138, 40, 127, 0.18), transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

.about-us-page .page-entry__image-blur {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 40px 20px rgba(255, 255, 255, 0.55);
    pointer-events: none;
    z-index: 2;
}

.about-us-page .page-entry__label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-us-page .page-entry__decorline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #8A287F, #CD5AC7);
    border-radius: 6px;
    margin-bottom: 24px;
}

.about-us-page .divider-triangle {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: flex;
    justify-content: flex-end;
}

.about-us-page .divider-triangle svg {
    display: block;
    width: 120px;
    height: 40px;
}

.about-us-page .team-band {
    background: #f5eef4;
    padding: 80px 24px;
    position: relative;
}

.about-us-page .team-band__container {
    max-width: 1366px;
    margin: 0 auto;
}

.about-us-page .team-band__label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    display: block;
    text-align: center;
    margin-bottom: 12px;
}

.about-us-page .team-band__heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1035;
    letter-spacing: -0.8px;
    text-align: center;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.06em;
}

.about-us-page .team-band__subheading {
    font-size: 17px;
    line-height: 1.55;
    color: #5a3d6b;
    text-align: center;
    margin: 0 0 40px 0;
}

.about-us-page .team-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-us-page .team-band__portrait-col {
    position: relative;
}

.about-us-page .team-band__portrait-wrap {
    aspect-ratio: 7/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 4px 14px 0 rgba(205, 90, 199, 0.10);
    max-width: 320px;
    margin: 0 auto;
}

.about-us-page .team-band__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .team-band__portrait-name {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1035;
    margin: 12px 0 4px 0;
    text-align: center;
}

.about-us-page .team-band__portrait-role {
    font-size: 14px;
    line-height: 1.35;
    color: #8A287F;
    text-align: center;
    letter-spacing: 0.04em;
}

.about-us-page .team-band__text-col {
    padding-top: 40px;
}

.about-us-page .team-band__text-col p {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2b4a;
    margin: 0 0 24px 0;
}

.about-us-page .team-band__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-us-page .team-band__pair-portrait {
    aspect-ratio: 7/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    max-width: 220px;
    margin: 0 auto;
}

.about-us-page .team-band__pair-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .team-band__pair-name {
    font-size: 14px;
    font-weight: 700;
    color: #1b1035;
    text-align: center;
    margin: 8px 0 4px 0;
}

.about-us-page .team-band__pair-role {
    font-size: 14px;
    color: #8A287F;
    text-align: center;
}

.about-us-page .method-strip {
    background: #fff;
    padding: 80px 24px;
    position: relative;
}

.about-us-page .method-strip__container {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start;
}

.about-us-page .method-strip__left {
    position: relative;
}

.about-us-page .method-strip__accent-line {
    position: absolute;
    left: -16px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8A287F, #DFBFD8, transparent);
    border-radius: 6px;
}

.about-us-page .method-strip__heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #1b1035;
    letter-spacing: -0.6px;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.about-us-page .method-strip__body {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2b4a;
    margin: 0 0 24px 0;
}

.about-us-page .method-strip__quote {
    font-size: 17px;
    line-height: 1.55;
    color: #1b1035;
    font-style: italic;
    margin: 0;
    padding: 12px 24px;
    background: #f5eef4;
    border-radius: 12px;
}

.about-us-page .method-strip__quote::before {
    content: '\201E';
    color: #8A287F;
    font-size: 36px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.about-us-page .method-strip__quote::after {
    content: '\201D';
    color: #8A287F;
    font-size: 36px;
    line-height: 1;
    display: block;
    text-align: right;
    margin-top: 4px;
}

.about-us-page .method-strip__right {
    position: relative;
}

.about-us-page .method-strip__image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.about-us-page .method-strip__img-a {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.about-us-page .method-strip__img-b {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 4px 14px 0 rgba(205, 90, 199, 0.10);
    margin-top: 40px;
}

.about-us-page .method-strip__img-c {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.about-us-page .method-strip__img-a img,
.about-us-page .method-strip__img-b img,
.about-us-page .method-strip__img-c img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .method-strip__img-b img {
    height: 280px;
}

.about-us-page .features-zone {
    background: #f5eef4;
    padding: 80px 24px;
    position: relative;
}

.about-us-page .features-zone__container {
    max-width: 1366px;
    margin: 0 auto;
}

.about-us-page .features-zone__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: start;
}

.about-us-page .features-zone__top-left {
    position: sticky;
    top: 24px;
}

.about-us-page .features-zone__label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.about-us-page .features-zone__heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b1035;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.about-us-page .features-zone__intro {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2b4a;
    margin: 0;
}

.about-us-page .features-zone__top-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-us-page .features-zone__image-wide {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.about-us-page .features-zone__image-wide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .features-zone__groups {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.about-us-page .feature-group {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.about-us-page .feature-group__category {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    color: #8A287F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-us-page .feature-group__category-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A287F;
    font-size: 17px;
}

.about-us-page .feature-group__items {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #3d2b4a;
}

.about-us-page .feature-group__items li {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.about-us-page .feature-group__items li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #CD5AC7;
    margin-top: 6px;
    flex-shrink: 0;
}

.about-us-page .contact-strip {
    background: #fff;
    padding: 80px 24px;
    position: relative;
}

.about-us-page .contact-strip__container {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-us-page .contact-strip__left {
    position: relative;
}

.about-us-page .contact-strip__decor {
    position: absolute;
    top: -24px;
    right: -40px;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.about-us-page .contact-strip__decor-ring {
    width: 100%;
    height: 100%;
    border-radius: 48px;
    border: 2px solid #DFBFD8;
    opacity: 0.5;
}

.about-us-page .contact-strip__heading {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b1035;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.about-us-page .contact-strip__body {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2b4a;
    margin: 0 0 24px 0;
}

.about-us-page .contact-strip__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-us-page .contact-strip__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    line-height: 1.35;
    color: #1b1035;
}

.about-us-page .contact-strip__item-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #f5eef4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A287F;
    font-size: 17px;
    flex-shrink: 0;
}

.about-us-page .contact-strip__item a {
    color: #8A287F;
    text-decoration: none;
    position: relative;
}

.about-us-page .contact-strip__item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8A287F;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .contact-strip__item a:hover::after {
    width: 100%;
}

.about-us-page .contact-strip__right {
    position: relative;
}

.about-us-page .contact-strip__image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    clip-path: inset(0 100% 0 0);
    animation: wipe-reveal 0.9s cubic-bezier(0.0, 0, 0.2, 1) 0.2s both;
}

.about-us-page .contact-strip__image-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-us-page .contact-strip__cta {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 40px;
    border-radius: 12px;
    background: #8A287F;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    outline: 2px solid transparent;
    outline-offset: 0px;
}

.about-us-page .contact-strip__cta:hover {
    background: #6d1f64;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.18);
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

.about-us-page .contact-strip__cta:focus-visible {
    outline: 3px solid #8A287F;
    outline-offset: 4px;
}

@media (max-width: 960px) {
    .about-us-page .page-entry__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-page .page-entry__right {
        padding-top: 0;
    }

    .about-us-page .team-band__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-page .team-band__text-col {
        padding-top: 0;
    }

    .about-us-page .method-strip__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-page .features-zone__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-us-page .features-zone__groups {
        grid-template-columns: 1fr 1fr;
    }

    .about-us-page .contact-strip__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-us-page .page-entry__heading {
        font-size: 36px;
    }

    .about-us-page .team-band__pair {
        grid-template-columns: 1fr;
    }

    .about-us-page .features-zone__groups {
        grid-template-columns: 1fr;
    }

    .about-us-page .method-strip__image-mosaic {
        grid-template-columns: 1fr;
    }

    .about-us-page .method-strip__img-b {
        grid-column: 1 / 2;
        grid-row: auto;
        margin-top: 0;
    }
}

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

.launch .page-limiter {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

.launch .page-limiter--narrow {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 80px;
}

/* SECTION 1 - Title Block */
.launch .title-area {
    position: relative;
    background: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.launch .title-area-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.launch .title-area-aurora::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.10), transparent 70%);
    animation: aurora-shift 9s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.launch .title-area-aurora::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at top left, rgba(205, 90, 199, 0.08), transparent 70%);
    animation: aurora-shift2 11s cubic-bezier(0.0, 0, 0.2, 1) infinite alternate;
}

@keyframes aurora-shift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(40px, 30px) scale(1.08);
        opacity: 1;
    }
}

@keyframes aurora-shift2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-30px, -20px) scale(1.06);
        opacity: 0.9;
    }
}

.launch .title-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.launch .title-text-col {
    flex: 1 1 0;
    min-width: 0;
}

.launch .title-faded-letter {
    font-size: 240px;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(138, 40, 127, 0.06);
    position: absolute;
    top: -40px;
    left: -20px;
    pointer-events: none;
    letter-spacing: -8px;
    z-index: 0;
    user-select: none;
}

.launch .title-text-col-inner {
    position: relative;
    z-index: 1;
}

.launch .title-prefix {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.launch .title-prefix-shape {
    width: 28px;
    height: 4px;
    background: linear-gradient(90deg, #8A287F, #CD5AC7);
    border-radius: 6px;
    flex-shrink: 0;
}

.launch .title-prefix-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    color: #8A287F;
    text-transform: uppercase;
    font-weight: 600;
}

.launch .title-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1200;
    color: #1d0d1b;
    font-weight: 800;
    margin: 0 0 24px 0;
}

.launch .title-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #4a3047;
    margin: 0 0 40px 0;
    max-width: 480px;
}

.launch .title-action-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    line-height: 1.35;
    color: #fff;
    background: #8A287F;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 4px;
}

.launch .title-action-link:hover {
    background: #6d1f64;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.launch .title-action-link:focus-visible {
    outline: 2px solid #8A287F;
}

.launch .title-action-link i {
    font-size: 20px;
}

.launch .title-image-col {
    flex: 0 0 380px;
    position: relative;
}

.launch .title-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 380px;
    height: 480px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.launch .title-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.launch .title-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(138, 40, 127, 0.38) 0%, rgba(205, 90, 199, 0.18) 60%, transparent 100%);
    pointer-events: none;
    border-radius: 20px;
}

.launch .title-corner-dec {
    position: absolute;
    pointer-events: none;
}

.launch .title-corner-dec.top-right {
    top: -12px;
    right: -12px;
    width: 60px;
    height: 60px;
    border-top: 3px solid rgba(138, 40, 127, 0.22);
    border-right: 3px solid rgba(138, 40, 127, 0.22);
    border-radius: 0 12px 0 0;
}

.launch .title-corner-dec.bottom-left {
    bottom: -12px;
    left: -12px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid rgba(205, 90, 199, 0.22);
    border-left: 3px solid rgba(205, 90, 199, 0.22);
    border-radius: 0 0 0 12px;
}

/* SECTION 2 - Support */
.launch .support-area {
    background: #fdf7fc;
    padding: 80px 0;
    position: relative;
}

.launch .support-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 40, 127, 0.15), transparent);
}

.launch .support-grid {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.launch .support-left {
    flex: 0 0 320px;
}

.launch .support-right {
    flex: 1 1 0;
    min-width: 0;
}

.launch .support-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
}

.launch .support-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1d0d1b;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.launch .support-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 260px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.launch .support-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.launch .support-body {
    font-size: 17px;
    line-height: 1.55;
    color: #3b2438;
    margin: 0 0 24px 0;
}

.launch .support-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.launch .support-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.launch .support-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #8A287F, #CD5AC7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch .support-item-icon i {
    font-size: 18px;
    color: #fff;
}

.launch .support-item-text {
    flex: 1 1 0;
    min-width: 0;
}

.launch .support-item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1d0d1b;
    line-height: 1.35;
    margin-bottom: 4px;
}

.launch .support-item-text span {
    font-size: 14px;
    line-height: 1.55;
    color: #5a3d57;
}

/* SECTION 3 - Testimonials */
.launch .reviews-area {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.launch .reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.launch .reviews-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #CD5AC7;
    font-weight: 600;
    margin-bottom: 12px;
}

.launch .reviews-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1d0d1b;
    font-weight: 700;
    margin: 0;
}

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

.launch .review-card {
    background: #fdf7fc;
    border-radius: 20px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.launch .review-card.featured {
    background: #8A287F;
    grid-row: span 1;
}

.launch .review-quote-mark {
    font-size: 48px;
    line-height: 1.1;
    color: #CD5AC7;
    font-weight: 900;
    height: 36px;
    display: flex;
    align-items: flex-start;
}

.launch .review-card.featured .review-quote-mark {
    color: rgba(255, 255, 255, 0.4);
}

.launch .review-text {
    font-size: 17px;
    line-height: 1.55;
    color: #3b2438;
    flex: 1 1 auto;
}

.launch .review-card.featured .review-text {
    color: rgba(255, 255, 255, 0.92);
}

.launch .review-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.launch .review-portrait {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.launch .review-person-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1d0d1b;
    line-height: 1.35;
}

.launch .review-card.featured .review-person-info strong {
    color: #fff;
}

.launch .review-person-info span {
    font-size: 14px;
    color: #7a5678;
    line-height: 1.35;
}

.launch .review-card.featured .review-person-info span {
    color: rgba(255, 255, 255, 0.65);
}

.launch .review-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(135deg, #DFBFD8, #CD5AC7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.launch .review-avatar-placeholder i {
    font-size: 22px;
    color: #fff;
}

/* SECTION 4 - Approach */
.launch .method-area {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.launch .method-area-bg {
    position: absolute;
    inset: 0;
    background: #fdf7fc;
    z-index: 0;
}

.launch .method-area-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(138, 40, 127, 0.06) 0px, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='0' r='18' fill='none' stroke='rgba(138%2C40%2C127%2C0.06)' stroke-width='1.5'/%3E%3Ccircle cx='20' cy='40' r='18' fill='none' stroke='rgba(138%2C40%2C127%2C0.06)' stroke-width='1.5'/%3E%3Ccircle cx='0' cy='20' r='18' fill='none' stroke='rgba(138%2C40%2C127%2C0.06)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='20' r='18' fill='none' stroke='rgba(138%2C40%2C127%2C0.06)' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: auto, 40px 40px;
}

.launch .method-inner {
    position: relative;
    z-index: 1;
}

.launch .method-top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.launch .method-top-text {
    flex: 1 1 0;
    min-width: 0;
}

.launch .method-top-image {
    flex: 0 0 340px;
}

.launch .method-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
}

.launch .method-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1d0d1b;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.launch .method-body {
    font-size: 17px;
    line-height: 1.55;
    color: #3b2438;
    margin: 0 0 24px 0;
}

.launch .method-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 280px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.launch .method-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.launch .process-flow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
}

.launch .process-step {
    flex: 1 1 0;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.launch .process-step-number {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(138, 40, 127, 0.12);
    letter-spacing: -0.02em;
}

.launch .process-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #1d0d1b;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.launch .process-step-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #5a3d57;
}

.launch .process-arrow {
    flex-shrink: 0;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.launch .process-arrow svg {
    width: 20px;
    height: 20px;
    color: #CD5AC7;
}

/* SECTION 5 - After graduation */
.launch .outcome-area {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.launch .outcome-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.launch .outcome-left-sticky {
    position: sticky;
    top: 24px;
}

.launch .outcome-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
}

.launch .outcome-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1d0d1b;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.launch .outcome-intro {
    font-size: 17px;
    line-height: 1.55;
    color: #4a3047;
    margin: 0 0 24px 0;
}

.launch .outcome-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 220px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.launch .outcome-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.launch .outcome-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.launch .outcome-panel {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
}

.launch .outcome-panel.bg-light {
    background: #fdf7fc;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.launch .outcome-panel.bg-accent {
    background: linear-gradient(135deg, #8A287F 0%, #CD5AC7 100%);
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.launch .outcome-panel.bg-white {
    background: #fff;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.launch .outcome-panel-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch .outcome-panel.bg-light .outcome-panel-icon {
    background: #DFBFD8;
}

.launch .outcome-panel.bg-accent .outcome-panel-icon {
    background: rgba(255, 255, 255, 0.18);
}

.launch .outcome-panel.bg-white .outcome-panel-icon {
    background: rgba(138, 40, 127, 0.10);
}

.launch .outcome-panel-icon i {
    font-size: 22px;
    color: #8A287F;
}

.launch .outcome-panel.bg-accent .outcome-panel-icon i {
    color: #fff;
}

.launch .outcome-panel-body {
    flex: 1 1 0;
    min-width: 0;
}

.launch .outcome-panel-body h5 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #1d0d1b;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.launch .outcome-panel.bg-accent .outcome-panel-body h5 {
    color: #fff;
}

.launch .outcome-panel-body p {
    font-size: 17px;
    line-height: 1.55;
    color: #3b2438;
    margin: 0;
}

.launch .outcome-panel.bg-accent .outcome-panel-body p {
    color: rgba(255, 255, 255, 0.88);
}

/* SECTION 6 - Numbers */
.launch .numbers-area {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.launch .numbers-area-bg {
    position: absolute;
    inset: 0;
    background: #1d0d1b;
    z-index: 0;
}

.launch .numbers-area-bg::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.35), transparent 65%);
}

.launch .numbers-area-bg::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at top left, rgba(205, 90, 199, 0.22), transparent 65%);
}

.launch .numbers-inner {
    position: relative;
    z-index: 1;
}

.launch .numbers-header {
    text-align: center;
    margin-bottom: 40px;
}

.launch .numbers-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #DFBFD8;
    font-weight: 600;
    margin-bottom: 12px;
}

.launch .numbers-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.launch .numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.launch .number-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(205, 90, 199, 0.18);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.launch .number-card:hover {
    background: rgba(138, 40, 127, 0.22);
    border-color: rgba(205, 90, 199, 0.40);
}

.launch .number-value {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 8px;
}

.launch .number-value span {
    color: #CD5AC7;
}

.launch .number-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.70);
}

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

.launch .numbers-quote-block {
    flex: 1 1 0;
    background: rgba(138, 40, 127, 0.22);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(205, 90, 199, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.launch .numbers-quote-text {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.launch .numbers-quote-text em {
    color: #DFBFD8;
    font-style: normal;
}

.launch .numbers-cta-block {
    flex: 0 0 280px;
    background: #8A287F;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.launch .numbers-cta-block p {
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.launch .numbers-cta-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #8A287F;
    background: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.20s cubic-bezier(0.4, 0, 0.2, 1), color 0.20s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 3px;
}

.launch .numbers-cta-link:hover {
    background: #DFBFD8;
    color: #6d1f64;
}

.launch .numbers-cta-link:focus-visible {
    outline: 2px solid #fff;
}

/* Responsive */
@media (max-width: 1440px) {
    .launch .page-limiter--narrow {
        padding: 0 40px;
    }
}

@media (max-width: 960px) {
    .launch .title-grid {
        flex-direction: column;
        gap: 40px;
    }

    .launch .title-image-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .launch .title-image-frame {
        width: 100%;
        height: 320px;
    }

    .launch .title-heading {
        font-size: 36px;
    }

    .launch .support-grid {
        flex-direction: column;
        gap: 40px;
    }

    .launch .support-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .launch .reviews-grid {
        grid-template-columns: 1fr;
    }

    .launch .method-top {
        flex-direction: column;
        gap: 40px;
    }

    .launch .method-top-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .launch .process-flow {
        flex-direction: column;
    }

    .launch .process-arrow {
        width: auto;
        height: 24px;
        transform: rotate(90deg);
    }

    .launch .outcome-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .launch .outcome-left-sticky {
        position: static;
    }

    .launch .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .launch .numbers-bottom {
        flex-direction: column;
    }

    .launch .numbers-cta-block {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .launch .page-limiter {
        padding: 0 24px;
    }

    .launch .page-limiter--narrow {
        padding: 0 24px;
    }

    .launch .title-area {
        padding: 40px 0;
    }

    .launch .title-heading {
        font-size: 36px;
    }

    .launch .support-area,
    .launch .reviews-area,
    .launch .method-area,
    .launch .outcome-area,
    .launch .numbers-area {
        padding: 40px 0;
    }

    .launch .numbers-grid {
        grid-template-columns: 1fr;
    }

    .launch .support-items {
        gap: 8px;
    }

    .launch .outcome-panel {
        flex-direction: column;
        gap: 12px;
    }
}

.subscribe-page {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.subscribe-page * {
    box-sizing: border-box;
}

.subscribe-page .page-reveal {
    animation: zoomSettle 0.26s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes zoomSettle {
    from {
        transform: scale(1.04);
        opacity: 0.7;
    }

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

.subscribe-page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.subscribe-page .entry-panel {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.subscribe-page .entry-anchor {
    position: relative;
    z-index: 1;
}

.subscribe-page .entry-oversize {
    position: absolute;
    top: -24px;
    left: -40px;
    font-size: 200px;
    line-height: 1.1;
    font-weight: 900;
    color: #DFBFD8;
    opacity: 0.18;
    pointer-events: none;
    user-select: none;
    letter-spacing: -8px;
    z-index: 0;
}

.subscribe-page .entry-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.subscribe-page .entry-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1e0e1c;
    font-weight: 800;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.subscribe-page .entry-heading .accented-phrase {
    color: #8A287F;
    position: relative;
    display: inline;
}

.subscribe-page .entry-heading .accented-phrase::before {
    content: "\201C";
    color: #CD5AC7;
    font-size: 56px;
    line-height: 1;
    vertical-align: -0.1em;
    margin-right: 2px;
}

.subscribe-page .entry-heading .accented-phrase::after {
    content: "\201D";
    color: #CD5AC7;
    font-size: 56px;
    line-height: 1;
    vertical-align: -0.1em;
    margin-left: 2px;
}

.subscribe-page .entry-desc {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1a2c;
    position: relative;
    z-index: 1;
    max-width: 380px;
}

.subscribe-page .entry-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.subscribe-page .entry-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.55) contrast(1.05);
    transition: filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.subscribe-page .entry-visual:hover img {
    filter: saturate(0.75) contrast(1.02);
}

.subscribe-page .entry-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #8A287F;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.06em;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.subscribe-page .entry-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
}

.subscribe-page .entry-divider svg {
    display: block;
    width: 100%;
}

/* ─── SECTION 2: CONTENT BLOCK ─── */
.subscribe-page .updates-panel {
    background: radial-gradient(circle at top left, #DFBFD8 0%, transparent 60%), #f7f0f6;
    padding: 80px 0 0 0;
    position: relative;
}

.subscribe-page .updates-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(138, 40, 127, 0.03) 28px, rgba(138, 40, 127, 0.03) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(138, 40, 127, 0.03) 28px, rgba(138, 40, 127, 0.03) 29px);
    pointer-events: none;
}

.subscribe-page .updates-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.subscribe-page .updates-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.subscribe-page .updates-aside {
    position: sticky;
    top: 40px;
}

.subscribe-page .updates-aside-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 700;
    margin-bottom: 12px;
}

.subscribe-page .updates-aside-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1e0e1c;
    font-weight: 700;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.06em;
}

.subscribe-page .updates-aside-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1a2c;
}

.subscribe-page .updates-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.subscribe-page .fact-block {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    position: relative;
}

.subscribe-page .fact-block.wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.subscribe-page .fact-block-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1a2c;
}

.subscribe-page .fact-block-text strong {
    color: #8A287F;
}

.subscribe-page .fact-highlight {
    background: radial-gradient(circle at top left, #CD5AC7 0%, #8A287F 100%);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.subscribe-page .fact-highlight-number {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.subscribe-page .fact-highlight-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    opacity: 0.88;
}

.subscribe-page .fact-block-heading {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e0e1c;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
}

.subscribe-page .fact-tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.subscribe-page .fact-tag-list li {
    background: #DFBFD8;
    color: #1e0e1c;
    font-size: 14px;
    line-height: 1.35;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}

.subscribe-page .updates-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.subscribe-page .update-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.subscribe-page .update-card:hover {
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    transform: translateY(-4px);
}

.subscribe-page .update-card-icon {
    width: 40px;
    height: 40px;
    background: #DFBFD8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-page .update-card-icon i {
    font-size: 22px;
    color: #8A287F;
}

.subscribe-page .update-card-heading {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #1e0e1c;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 300;
}

.subscribe-page .update-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2039;
}

.subscribe-page .updates-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 80px;
}

.subscribe-page .updates-divider svg {
    display: block;
    width: 100%;
}

/* ─── SECTION 3: CONTACT / CLOSING ─── */
.subscribe-page .contact-panel {
    background: #fff;
    padding: 80px 0;
}

.subscribe-page .contact-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

.subscribe-page .contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.subscribe-page .contact-primary {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.subscribe-page .contact-eyebrow {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 700;
}

.subscribe-page .contact-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #1e0e1c;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}

.subscribe-page .contact-body {
    font-size: 17px;
    line-height: 1.55;
    color: #2e1a2c;
}

.subscribe-page .contact-link-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.subscribe-page .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.35;
    color: #8A287F;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    padding-bottom: 4px;
}

.subscribe-page .contact-link:hover {
    color: #CD5AC7;
    border-color: #CD5AC7;
}

.subscribe-page .contact-link i {
    font-size: 18px;
}

.subscribe-page .contact-detail-card {
    background: radial-gradient(circle at top left, #DFBFD8 0%, transparent 70%), #f7f0f6;
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.subscribe-page .contact-detail-card-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 700;
}

.subscribe-page .contact-detail-card-value {
    font-size: 17px;
    line-height: 1.55;
    color: #1e0e1c;
    font-weight: 600;
}

.subscribe-page .contact-detail-card-sub {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2039;
}

.subscribe-page .contact-cta-block {
    background: #8A287F;
    border-radius: 20px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.subscribe-page .contact-cta-heading {
    font-size: 17px;
    line-height: 1.35;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin: 0;
}

.subscribe-page .contact-cta-text {
    font-size: 14px;
    line-height: 1.55;
    color: #DFBFD8;
}

.subscribe-page .contact-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #8A287F;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.06em;
    border: 2px solid transparent;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.2s cubic-bezier(0.0, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 0px;
}

.subscribe-page .contact-cta-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    outline-color: rgba(255, 255, 255, 0.3);
    outline-offset: 4px;
}

.subscribe-page .contact-cta-button:focus-visible {
    outline: 3px solid #DFBFD8;
    outline-offset: 3px;
}

/* ─── DECORATIVE CURL ─── */
.subscribe-page .curl-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
    z-index: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .subscribe-page .entry-panel {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 24px;
    }

    .subscribe-page .entry-oversize {
        font-size: 120px;
        top: -12px;
        left: -12px;
    }

    .subscribe-page .entry-heading {
        font-size: 36px;
    }

    .subscribe-page .entry-visual img {
        height: 280px;
    }

    .subscribe-page .updates-container {
        padding: 0 24px;
    }

    .subscribe-page .updates-top {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .subscribe-page .updates-aside {
        position: static;
    }

    .subscribe-page .fact-block.wide {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .subscribe-page .updates-card-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .subscribe-page .contact-container {
        padding: 0 24px;
    }

    .subscribe-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .subscribe-page .updates-panel {
        padding: 40px 0 0 0;
    }

    .subscribe-page .contact-panel {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .subscribe-page .entry-heading {
        font-size: 36px;
    }

    .subscribe-page .fact-highlight-number {
        font-size: 36px;
    }

    .subscribe-page .updates-aside-heading {
        font-size: 36px;
    }

    .subscribe-page .contact-heading {
        font-size: 36px;
    }

    .subscribe-page .entry-panel {
        padding: 24px 12px;
    }

    .subscribe-page .updates-container {
        padding: 0 12px;
    }

    .subscribe-page .contact-container {
        padding: 0 12px;
    }

    .subscribe-page .fact-block {
        padding: 24px;
    }
}

.contact-us-page {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.contact-us-page .reach-panel {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.contact-us-page .reach-panel__left {
    position: sticky;
    top: 40px;
}

.contact-us-page .reach-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-us-page .reach-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #8A287F;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.contact-us-page .reach-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-us-page .reach-description {
    font-size: 17px;
    line-height: 1.55;
    color: #3a3a3a;
    margin-bottom: 40px;
}

.contact-us-page .contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-us-page .contact-detail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: #fdf6fc;
    border-radius: 12px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .contact-detail-item:hover {
    background: #f7eaf6;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.contact-us-page .detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8A287F, #CD5AC7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-us-page .detail-icon i {
    color: #ffffff;
    font-size: 20px;
}

.contact-us-page .detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-us-page .detail-text__label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
}

.contact-us-page .detail-text__value {
    font-size: 17px;
    line-height: 1.35;
    color: #1b1b1b;
    font-weight: 500;
}

.contact-us-page .detail-text__value a {
    color: #1b1b1b;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.contact-us-page .detail-text__value a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8A287F;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .detail-text__value a:hover::after {
    width: 100%;
}

.contact-us-page .decorative-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden;
}

.contact-us-page .decorative-circles svg {
    width: 100%;
    height: 100%;
    opacity: 0.06;
}

.contact-us-page .form-panel {
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-us-page .form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8A287F, #CD5AC7, #DFBFD8);
    border-radius: 20px 20px 0 0;
}

.contact-us-page .form-panel__heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-us-page .form-panel__subtext {
    font-size: 17px;
    line-height: 1.55;
    color: #555555;
    margin-bottom: 40px;
}

.contact-us-page .form-group {
    position: relative;
    margin-bottom: 24px;
}

.contact-us-page .form-group__input {
    width: 100%;
    padding: 20px 16px 8px 16px;
    font-size: 17px;
    line-height: 1.35;
    color: #1b1b1b;
    background: #fdf6fc;
    border: 1.5px solid #e8d4e6;
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    box-shadow: inset -1px 2px 4px 0 rgba(138, 40, 127, 0.05);
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
}

.contact-us-page .form-group__input:focus {
    border-color: #8A287F;
    box-shadow: inset -1px 2px 4px 0 rgba(138, 40, 127, 0.07), 0 0 0 3px rgba(138, 40, 127, 0.10);
}

.contact-us-page .form-group__input:focus-visible {
    outline: 3px solid #8A287F !important;
    outline-offset: 2px !important;
}

.contact-us-page .form-group__label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 17px;
    line-height: 1.35;
    color: #888888;
    pointer-events: none;
    transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .form-group__input:focus+.form-group__label,
.contact-us-page .form-group__input:not(:placeholder-shown)+.form-group__label {
    top: 6px;
    font-size: 14px;
    color: #8A287F;
    letter-spacing: 0.04em;
}

.contact-us-page .form-group__input::placeholder {
    color: transparent;
}

.contact-us-page .priority-group {
    margin-bottom: 24px;
}

.contact-us-page .priority-group__label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.contact-us-page .priority-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.contact-us-page .priority-option {
    position: relative;
}

.contact-us-page .priority-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-us-page .priority-option__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: #fdf6fc;
    border: 1.5px solid #e8d4e6;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.contact-us-page .priority-option input[type="radio"]:checked+.priority-option__card {
    border-color: #8A287F;
    background: #f0e0ef;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.contact-us-page .priority-option input[type="radio"]:focus-visible+.priority-option__card {
    outline: 3px solid #8A287F !important;
    outline-offset: 2px !important;
}

.contact-us-page .priority-option__card:hover {
    border-color: #CD5AC7;
    background: #f7eaf6;
}

.contact-us-page .priority-option__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us-page .priority-option__icon i {
    font-size: 18px;
}

.contact-us-page .priority-option__icon.low {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact-us-page .priority-option__icon.medium {
    background: #fff8e1;
    color: #f57f17;
}

.contact-us-page .priority-option__icon.high {
    background: #fce4ec;
    color: #c62828;
}

.contact-us-page .priority-option__text {
    font-size: 14px;
    line-height: 1.35;
    color: #1b1b1b;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.contact-us-page .priority-option__desc {
    font-size: 14px;
    line-height: 1.35;
    color: #777777;
}

.contact-us-page .message-group {
    position: relative;
    margin-bottom: 24px;
}

.contact-us-page .message-group__textarea {
    width: 100%;
    min-height: 140px;
    padding: 20px 16px 8px 16px;
    font-size: 17px;
    line-height: 1.55;
    color: #1b1b1b;
    background: #fdf6fc;
    border: 1.5px solid #e8d4e6;
    border-radius: 12px;
    outline: none;
    box-sizing: border-box;
    resize: vertical;
    box-shadow: inset -1px 2px 4px 0 rgba(138, 40, 127, 0.05);
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .message-group__textarea:focus {
    border-color: #8A287F;
    box-shadow: inset -1px 2px 4px 0 rgba(138, 40, 127, 0.07), 0 0 0 3px rgba(138, 40, 127, 0.10);
}

.contact-us-page .message-group__textarea:focus-visible {
    outline: 3px solid #8A287F !important;
    outline-offset: 2px !important;
}

.contact-us-page .message-group__label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 17px;
    line-height: 1.35;
    color: #888888;
    pointer-events: none;
    transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .message-group__textarea:focus+.message-group__label,
.contact-us-page .message-group__textarea:not(:placeholder-shown)+.message-group__label {
    top: 6px;
    font-size: 14px;
    color: #8A287F;
    letter-spacing: 0.04em;
}

.contact-us-page .message-group__textarea::placeholder {
    color: transparent;
}

.contact-us-page .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #fdf6fc;
    border-radius: 12px;
}

.contact-us-page .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #8A287F;
    cursor: pointer;
}

.contact-us-page .privacy-row input[type="checkbox"]:focus-visible {
    outline: 3px solid #8A287F !important;
    outline-offset: 2px !important;
}

.contact-us-page .privacy-text {
    font-size: 14px;
    line-height: 1.55;
    color: #555555;
}

.contact-us-page .privacy-text a {
    color: #8A287F;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-us-page .privacy-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8A287F;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .privacy-text a:hover::after {
    width: 100%;
}

.contact-us-page .submit-button {
    width: 100%;
    padding: 20px 40px;
    background: #8A287F;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 2px solid #8A287F;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.contact-us-page .submit-button:hover {
    background: #6e1f64;
    border-color: #6e1f64;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.20);
    outline: 3px solid #CD5AC7;
    outline-offset: 3px;
}

.contact-us-page .submit-button:active {
    background: #5a1952;
    box-shadow: inset -1px 2px 4px 0 rgba(138, 40, 127, 0.15);
}

.contact-us-page .submit-button:focus-visible {
    outline: 3px solid #8A287F !important;
    outline-offset: 4px !important;
}

.contact-us-page .divider-line {
    height: 1px;
    background: #eddcea;
    margin: 0 40px;
}

.contact-us-page .services-strip {
    background: linear-gradient(90deg, rgba(138, 40, 127, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    overflow: hidden;
}

.contact-us-page .services-strip__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.contact-us-page .services-strip__hex-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='%238A287F' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 60px 52px;
}

.contact-us-page .services-strip__left-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-us-page .services-strip__left-text {
    font-size: 17px;
    line-height: 1.55;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.contact-us-page .services-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #8A287F;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    border: 2px solid #8A287F;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.25s cubic-bezier(0.0, 0, 0.2, 1), color 0.25s cubic-bezier(0.0, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1), outline-offset 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .services-link:hover {
    background: #8A287F;
    color: #ffffff;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.15);
    outline: 3px solid #CD5AC7;
    outline-offset: 4px;
}

.contact-us-page .services-link:focus-visible {
    outline: 3px solid #8A287F !important;
    outline-offset: 4px !important;
}

.contact-us-page .services-strip__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-us-page .services-feature-card {
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), filter 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .services-feature-card:hover {
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    filter: brightness(0.97);
}

.contact-us-page .services-feature-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #f0e0ef 0%, #fdf6fc 100%);
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.contact-us-page .services-feature-card.featured:hover {
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    filter: none;
}

.contact-us-page .feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8A287F, #CD5AC7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.contact-us-page .services-feature-card.featured .feature-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin-bottom: 0;
}

.contact-us-page .feature-card__icon i {
    color: #ffffff;
    font-size: 22px;
}

.contact-us-page .services-feature-card.featured .feature-card__icon i {
    font-size: 30px;
}

.contact-us-page .feature-card__title {
    font-size: 17px;
    line-height: 1.35;
    color: #1b1b1b;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-us-page .feature-card__desc {
    font-size: 14px;
    line-height: 1.55;
    color: #555555;
}

.contact-us-page .form-zoom-reveal {
    animation: zoomSettle 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes zoomSettle {
    from {
        transform: scale(1.04);
        opacity: 0.7;
    }

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

@media (max-width: 960px) {
    .contact-us-page .reach-panel {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .contact-us-page .reach-panel__left {
        position: static;
    }

    .contact-us-page .reach-heading {
        font-size: 36px;
    }

    .contact-us-page .services-strip__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .contact-us-page .services-strip__right {
        grid-template-columns: 1fr;
    }

    .contact-us-page .services-feature-card.featured {
        grid-template-columns: 1fr;
    }

    .contact-us-page .priority-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-us-page .reach-panel {
        padding: 24px 12px;
    }

    .contact-us-page .reach-heading {
        font-size: 36px;
    }

    .contact-us-page .form-panel {
        padding: 24px 16px;
    }

    .contact-us-page .form-panel__heading {
        font-size: 36px;
    }

    .contact-us-page .services-strip__inner {
        padding: 24px 12px;
    }

    .contact-us-page .decorative-circles {
        width: 180px;
        height: 180px;
    }
}

.learning-program {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.learning-program .pulse-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.learning-program .pulse-ring {
    position: absolute;
    top: -120px;
    left: -120px;
    border-radius: 50%;
    border: 1.5px solid rgba(138, 40, 127, 0.10);
    animation: pulse-expand 6s cubic-bezier(0.0, 0, 0.2, 1) infinite;
}

.learning-program .pulse-ring:nth-child(1) {
    width: 320px;
    height: 320px;
    animation-delay: 0s;
}

.learning-program .pulse-ring:nth-child(2) {
    width: 520px;
    height: 520px;
    animation-delay: 1.8s;
}

.learning-program .pulse-ring:nth-child(3) {
    width: 720px;
    height: 720px;
    animation-delay: 3.6s;
}

@keyframes pulse-expand {
    0% {
        opacity: 0.7;
        transform: scale(0.85);
    }

    70% {
        opacity: 0;
        transform: scale(1.15);
    }

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

.learning-program .page-strip {
    position: relative;
    z-index: 1;
    max-width: 1366px;
    margin: 0 auto;
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.learning-program .strip-left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.learning-program .strip-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.08em;
    color: #8A287F;
    text-transform: uppercase;
    font-weight: 600;
}

.learning-program .strip-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b0f1a;
    font-weight: 300;
    margin: 0;
}

.learning-program .strip-tagline {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2438;
    margin: 0;
}

.learning-program .strip-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.learning-program .strip-link-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #8A287F;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #8A287F;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.learning-program .strip-link-primary:hover {
    background: #6e1f65;
    border-color: #6e1f65;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
    outline: 3px solid rgba(138, 40, 127, 0.18);
    outline-offset: 3px;
}

.learning-program .strip-link-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #8A287F;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #DFBFD8;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-program .strip-link-secondary:hover {
    border-color: #8A287F;
    color: #6e1f65;
    outline: 3px solid rgba(138, 40, 127, 0.12);
    outline-offset: 3px;
}

.learning-program .strip-right {
    flex: 0 0 70%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}

.learning-program .strip-image-wrap {
    position: relative;
    width: 480px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.learning-program .strip-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    filter: blur(0px);
    transition: filter 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-program .strip-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.10) 0%, transparent 65%);
    border-radius: 12px;
    pointer-events: none;
}

.learning-program .strip-dots-deco {
    position: absolute;
    bottom: -20px;
    right: -16px;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.learning-program .strip-dots-deco circle {
    fill: #DFBFD8;
}

.learning-program .divider-dots {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.learning-program .divider-dots-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.learning-program .divider-dots-row span {
    display: inline-block;
    border-radius: 50%;
    background: #DFBFD8;
    flex-shrink: 0;
}

.learning-program .program-overview {
    position: relative;
    z-index: 1;
    background: #f5edf4;
    padding: 80px 0 80px;
}

.learning-program .program-overview-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.learning-program .overview-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.learning-program .overview-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
}

.learning-program .overview-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b0f1a;
    font-weight: 300;
    margin: 0;
}

.learning-program .overview-aside-text {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2438;
    margin: 0;
}

.learning-program .milestone-tracker {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.learning-program .milestone-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 24px;
}

.learning-program .milestone-item:last-child {
    padding-bottom: 0;
}

.learning-program .milestone-line-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 36px;
}

.learning-program .milestone-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8A287F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
}

.learning-program .milestone-icon-circle i {
    font-size: 17px;
    color: #fff;
}

.learning-program .milestone-connector {
    width: 2px;
    flex: 1;
    background: #DFBFD8;
    min-height: 24px;
    margin-top: 4px;
}

.learning-program .milestone-item:last-child .milestone-connector {
    display: none;
}

.learning-program .milestone-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.learning-program .milestone-date {
    font-size: 14px;
    line-height: 1.35;
    color: #8A287F;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.learning-program .milestone-title {
    font-size: 17px;
    line-height: 1.35;
    color: #1b0f1a;
    font-weight: 600;
    margin: 0;
}

.learning-program .milestone-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2438;
    margin: 0;
}

.learning-program .overview-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.learning-program .overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.learning-program .overview-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.learning-program .overview-card.wide {
    grid-column: 1 / -1;
}

.learning-program .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #DFBFD8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-program .card-icon i {
    font-size: 20px;
    color: #8A287F;
}

.learning-program .card-heading {
    font-size: 17px;
    line-height: 1.35;
    color: #1b0f1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.learning-program .card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2438;
    margin: 0;
}

.learning-program .card-slash-list {
    font-size: 14px;
    line-height: 1.55;
    color: #8A287F;
    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
}

.learning-program .card-slash-list li {
    display: inline;
}

.learning-program .card-slash-list li+li::before {
    content: ' / ';
    color: #DFBFD8;
}

.learning-program .divider-dots-alt {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.learning-program .experts-strip {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: #fff;
}

.learning-program .experts-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
}

.learning-program .experts-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.learning-program .experts-heading-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.learning-program .experts-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
}

.learning-program .experts-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b0f1a;
    font-weight: 300;
    margin: 0;
}

.learning-program .experts-intro-text {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2438;
    max-width: 380px;
    margin: 0;
}

.learning-program .experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.learning-program .expert-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: start;
    background: #f5edf4;
    border-radius: 20px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 rgba(138, 40, 127, 0.07);
    position: relative;
    overflow: hidden;
}

.learning-program .expert-portrait-wrap {
    width: 140px;
    height: 186px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.learning-program .expert-portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-program .expert-card:hover .expert-portrait-wrap img {
    transform: scale(1.04);
}

.learning-program .expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.learning-program .expert-name {
    font-size: 17px;
    line-height: 1.35;
    color: #1b0f1a;
    font-weight: 600;
    margin: 0;
}

.learning-program .expert-role {
    font-size: 14px;
    line-height: 1.35;
    color: #8A287F;
    letter-spacing: 0.04em;
    margin: 0;
}

.learning-program .expert-bio {
    font-size: 14px;
    line-height: 1.55;
    color: #3d2438;
    margin: 0;
}

.learning-program .expert-quote {
    font-size: 14px;
    line-height: 1.55;
    color: #6e1f65;
    margin: 8px 0 0;
    font-style: italic;
}

.learning-program .expert-quote::before {
    content: '\201C';
    color: #8A287F;
    font-size: 20px;
    line-height: 1;
    vertical-align: -3px;
    margin-right: 2px;
}

.learning-program .expert-quote::after {
    content: '\201D';
    color: #8A287F;
    font-size: 20px;
    line-height: 1;
    vertical-align: -3px;
    margin-left: 2px;
}

.learning-program .triangle-reveal-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: default;
}

.learning-program .triangle-reveal-wrap .reveal-overlay {
    position: absolute;
    inset: 0;
    background: #8A287F;
    clip-path: polygon(0 0, 0% 100%, 0 100%);
    transition: clip-path 0.28s cubic-bezier(0.0, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.learning-program .triangle-reveal-wrap:hover .reveal-overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.learning-program .reveal-overlay-text {
    font-size: 14px;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.12s;
}

.learning-program .triangle-reveal-wrap:hover .reveal-overlay-text {
    opacity: 1;
}

.learning-program .expert-tag {
    display: inline-block;
    background: #DFBFD8;
    color: #6e1f65;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 6px;
    padding: 4px 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.learning-program .faq-strip {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: #1b0f1a;
}

.learning-program .faq-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 80px;
    align-items: start;
}

.learning-program .faq-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 40px;
}

.learning-program .faq-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #CD5AC7;
    font-weight: 600;
}

.learning-program .faq-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    font-weight: 300;
    margin: 0;
}

.learning-program .faq-sub {
    font-size: 17px;
    line-height: 1.55;
    color: #DFBFD8;
    margin: 0;
}

.learning-program .faq-contact-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.35;
    color: #CD5AC7;
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #8A287F;
    padding-bottom: 4px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.learning-program .faq-contact-link:hover {
    color: #fff;
    border-color: #CD5AC7;
}

.learning-program .faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.learning-program .faq-item {
    border-radius: 12px;
    background: #2a1527;
    overflow: hidden;
}

.learning-program .faq-item-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-program .faq-item-toggle::-webkit-details-marker {
    display: none;
}

.learning-program .faq-item[open] .faq-item-toggle {
    background: #3a1f37;
}

.learning-program .faq-question {
    font-size: 17px;
    line-height: 1.35;
    color: #fff;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.learning-program .faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #CD5AC7;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.learning-program .faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.learning-program .faq-answer {
    padding: 0 24px 24px;
    font-size: 17px;
    line-height: 1.55;
    color: #DFBFD8;
}

.learning-program .diamond-sep {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #8A287F;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .learning-program .page-strip {
        flex-direction: column;
        gap: 24px;
        padding: 40px 24px 24px;
    }

    .learning-program .strip-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .learning-program .strip-right {
        flex: 0 0 auto;
        width: 100%;
        justify-content: flex-start;
    }

    .learning-program .strip-image-wrap {
        width: 100%;
        height: 220px;
    }

    .learning-program .strip-heading {
        font-size: 36px;
    }

    .learning-program .program-overview-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .learning-program .experts-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .learning-program .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .learning-program .faq-left {
        position: static;
    }

    .learning-program .overview-grid {
        grid-template-columns: 1fr;
    }

    .learning-program .overview-card.wide {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .learning-program .strip-heading {
        font-size: 36px;
    }

    .learning-program .strip-links {
        flex-direction: column;
        gap: 8px;
    }

    .learning-program .expert-card {
        grid-template-columns: 1fr;
    }

    .learning-program .expert-portrait-wrap {
        width: 100%;
        height: 220px;
    }

    .learning-program .faq-inner {
        padding: 0 12px;
    }

    .learning-program .experts-inner {
        padding: 0 12px;
    }

    .learning-program .program-overview-inner {
        padding: 0 12px;
    }

    .learning-program .page-strip {
        padding: 24px 12px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: radial-gradient(circle at top left, rgba(138, 40, 127, 0.08) 0%, transparent 60%);
}

.success-page .confirmation-wrapper {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success-page .status-indicator {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    border-radius: 36px;
    background: linear-gradient(135deg, #8A287F 0%, #CD5AC7 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.success-page .status-indicator svg {
    width: 32px;
    height: 32px;
    display: block;
}

.success-page .confirmation-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b1035;
    margin: 0 0 24px;
    font-weight: 700;
}

.success-page .confirmation-subtext {
    font-size: 17px;
    line-height: 1.55;
    color: #3d2e4a;
    margin: 0 0 40px;
}

.success-page .divider-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #8A287F, #CD5AC7);
    border-radius: 6px;
    margin: 0 auto 40px;
}

.success-page .detail-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    margin-bottom: 40px;
    text-align: left;
}

.success-page .detail-block .detail-label {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8A287F;
    font-weight: 600;
    margin: 0 0 12px;
}

.success-page .detail-block .detail-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a1f35;
    margin: 0;
}

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

.success-page .action-primary {
    display: inline-block;
    padding: 12px 40px;
    background: #8A287F;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 3px;
}

.success-page .action-primary:hover {
    background: #CD5AC7;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.success-page .action-primary:focus-visible {
    outline-color: #8A287F;
}

.success-page .action-secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #8A287F;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #DFBFD8;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: 2px solid transparent;
    outline-offset: 3px;
}

.success-page .action-secondary:hover {
    border-color: #CD5AC7;
    color: #CD5AC7;
}

.success-page .action-secondary:focus-visible {
    outline-color: #8A287F;
}

@media (max-width: 480px) {
    .success-page {
        padding: 40px 24px;
    }

    .success-page .confirmation-heading {
        font-size: 36px;
    }

    .success-page .detail-block {
        padding: 24px;
    }

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

    .success-page .action-primary,
    .success-page .action-secondary {
        text-align: center;
    }
}

.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: radial-gradient(circle at top left, #DFBFD8 0%, transparent 60%), #ffffff;
    overflow: hidden;
}

.error-page .error-visual {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.error-page .error-visual .digit {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #8A287F;
}

.error-page .error-visual .digit-middle {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #CD5AC7;
    position: relative;
}

.error-page .error-visual .digit-middle::before {
    content: '';
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid #DFBFD8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
}

.error-page .error-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #8A287F, #CD5AC7);
    border-radius: 6px;
    margin: 0 auto 40px auto;
}

.error-page .error-content {
    max-width: 560px;
    text-align: center;
}

.error-page .error-content .error-heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #2a1228;
    margin-bottom: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.error-page .error-content .error-body {
    font-size: 17px;
    line-height: 1.55;
    color: #3d1f38;
    margin-bottom: 40px;
}

.error-page .error-content .error-body span.accent-quote {
    color: #8A287F;
    font-style: italic;
}

.error-page .error-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-page .error-actions .action-primary {
    display: inline-block;
    padding: 12px 40px;
    background: #8A287F;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.35;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #8A287F;
    box-shadow: -1px 4px 14px 0 rgba(138, 40, 127, 0.10);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
    position: relative;
    outline-offset: 3px;
}

.error-page .error-actions .action-primary:hover {
    background: #6d1f64;
    border-color: #6d1f64;
    box-shadow: -1px 9px 44px 0 rgba(138, 40, 127, 0.12);
}

.error-page .error-actions .action-primary:focus-visible {
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

.error-page .error-actions .action-secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #8A287F;
    font-size: 17px;
    line-height: 1.35;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #DFBFD8;
    transition: border-color 0.26s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    outline-offset: 3px;
}

.error-page .error-actions .action-secondary:hover {
    border-color: #CD5AC7;
    color: #6d1f64;
}

.error-page .error-actions .action-secondary:focus-visible {
    outline: 2px solid #8A287F;
    outline-offset: 4px;
}

.error-page .error-footer-note {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.55;
    color: #7a4872;
    letter-spacing: 0.02em;
}

.error-page .error-footer-note a {
    color: #8A287F;
    text-decoration: none;
    background-image: linear-gradient(#8A287F, #8A287F);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-page .error-footer-note a:hover {
    background-size: 100% 1px;
}

@media (max-width: 480px) {
    .error-page {
        padding: 80px 12px;
    }

    .error-page .error-visual .digit,
    .error-page .error-visual .digit-middle {
        font-size: 36px;
    }

    .error-page .error-content .error-heading {
        font-size: 36px;
    }

    .error-page .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-page .error-actions .action-primary,
    .error-page .error-actions .action-secondary {
        text-align: center;
    }
}