@import url('https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/700.css');

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

body {
    margin: 0;
    padding: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Fira Code', monospace;
}

.pg-header {
    position: relative;
    background: linear-gradient(135deg, #F2ECF1 0%, #ffffff 55%, #F2ECF1 100%);
    border-bottom: 2px solid #C695C0;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    z-index: 100;
}

.pg-header__top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #C695C0;
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    flex-shrink: 0;
}

.brand-pill__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2ECF1;
    border-radius: 12px;
    border: 1px solid #C695C0;
    box-shadow: inset 0 1px 4px 0 rgba(190, 67, 177, 0.09);
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-pill__img-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.brand-pill__name {
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #BE43B1;
    white-space: nowrap;
}

.brand-pill__year {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #C695C0;
    white-space: nowrap;
}

.pg-header__credential {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.2;
    color: #BE43B1;
    background: #F2ECF1;
    border: 1px solid #C695C0;
    border-radius: 6px;
    padding: 8px 16px;
    white-space: nowrap;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
}

.pg-header__nav-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pg-header__nav-row a {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #3d1a3a;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.15s ease-out, border-color 0.15s ease-out, color 0.12s ease-out, padding 0.18s ease-out;
}

.pg-header__nav-row a:hover {
    background: #F2ECF1;
    border-color: #C695C0;
    color: #BE43B1;
    padding: 8px 24px;
}

.pg-header__nav-row a:focus {
    outline: none;
    background: #BE43B1;
    color: #ffffff;
    border-color: #BE43B1;
}

.pg-header__nav-row a.active-link {
    background: #BE43B1;
    color: #ffffff;
    border-color: #BE43B1;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
}

.pg-header__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #C695C0 30%, #BE43B1 50%, #C695C0 70%, transparent);
    margin: 0;
}

.pg-footer {
    background: #2a0d27;
    position: relative;
    overflow: hidden;
}

.pg-footer__depth {
    position: absolute;
    top: -24px;
    right: 48px;
    font-family: 'Fira Code', monospace;
    font-size: 200px;
    font-weight: 700;
    color: rgba(198, 149, 192, 0.06);
    line-height: 1.2;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.pg-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 0 24px;
    position: relative;
    z-index: 1;
}

.pg-footer__brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(198, 149, 192, 0.2);
    flex-wrap: wrap;
}

.ftr-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ftr-brand__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #C695C0;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07), inset 0 1px 4px 0 rgba(190, 67, 177, 0.07);
    width: 44px;
    height: 44px;
    overflow: hidden;
    flex-shrink: 0;
}

.ftr-brand__img-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.ftr-brand__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ftr-brand__name {
    font-family: 'Fira Code', monospace;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #C695C0;
}

.ftr-brand__since {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.2;
    color: rgba(198, 149, 192, 0.6);
}

.ftr-brand__tagline {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
}

.pg-footer__cols {
    display: flex;
    gap: 48px;
    padding: 48px 0;
    flex-wrap: wrap;
}

.ftr-col {
    flex: 1;
    min-width: 180px;
}

.ftr-col__label {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #BE43B1;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(190, 67, 177, 0.3);
    border-left: 3px solid #BE43B1;
    padding-left: 8px;
}

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

.ftr-col__links li a {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-block;
    transition: color 0.12s ease-out, padding-left 0.18s ease-out;
}

.ftr-col__links li a:hover {
    color: #C695C0;
    padding-left: 8px;
}

.ftr-col__links li a:focus {
    outline: none;
    color: #2a0d27;
    background: #C695C0;
    border-radius: 4px;
    padding: 0 4px;
}

.ftr-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.ftr-contact__label {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(198, 149, 192, 0.5);
    white-space: nowrap;
}

.ftr-contact__val {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    word-break: break-all;
}

.ftr-contact__val a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.12s ease-out;
}

.ftr-contact__val a:hover {
    color: #C695C0;
}

.ftr-contact__val a:focus {
    outline: none;
    color: #2a0d27;
    background: #C695C0;
    border-radius: 4px;
    padding: 0 4px;
}

.pg-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(198, 149, 192, 0.15);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ftr-copy {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.2;
    color: rgba(198, 149, 192, 0.45);
}

.ftr-domain {
    font-family: 'Fira Code', monospace;
    font-size: 15px;
    line-height: 1.2;
    color: rgba(198, 149, 192, 0.35);
}

@media (max-width: 700px) {
    .pg-header__top {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pg-header__credential {
        display: none;
    }

    .pg-footer__cols {
        flex-direction: column;
        gap: 24px;
    }

    .pg-footer__brand-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .pg-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.policy-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}

.policy-section h1 {
    font-size: 43px;
    line-height: 1.2;
    color: #BE43B1;
    margin-bottom: 24px;
    margin-top: 0;
}

.policy-section h2 {
    font-size: 31px;
    line-height: 1.2;
    color: #BE43B1;
    margin-top: 48px;
    margin-bottom: 16px;
}

.policy-section h3 {
    font-size: 19px;
    line-height: 1.7;
    color: #C695C0;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-section h4 {
    font-size: 16px;
    line-height: 1.7;
    color: #C695C0;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-section h5 {
    font-size: 15px;
    line-height: 1.7;
    color: #C695C0;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-section h6 {
    font-size: 15px;
    line-height: 1.7;
    color: #C695C0;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 16px;
}

.policy-section strong,
.policy-section b {
    font-weight: 700;
    color: #1e1e1e;
}

.policy-section em,
.policy-section i {
    font-style: italic;
    color: #3a3a3a;
}

.policy-section a {
    color: #BE43B1;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.policy-section a:hover {
    color: #C695C0;
    text-decoration-color: #C695C0;
}

.policy-section hr {
    border: none;
    border-top: 2px solid #F2ECF1;
    margin-top: 48px;
    margin-bottom: 48px;
    border-radius: 2px;
}

.policy-section div {
    margin-bottom: 16px;
}

@media (max-width: 700px) {
    .policy-section {
        padding: 24px 16px;
    }

    .policy-section h1 {
        font-size: 31px;
    }

    .policy-section h2 {
        font-size: 19px;
    }

    .policy-section h3 {
        font-size: 16px;
    }
}

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

.prtn__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.prtn__hero {
    background-color: #F2ECF1;
    position: relative;
}

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

.prtn__hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.5;
}

.prtn__hero-curl {
    position: absolute;
    top: 24px;
    right: 48px;
    width: 80px;
    height: 80px;
    opacity: 0.08;
    pointer-events: none;
}

.prtn__hero-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

.prtn__hero-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.prtn__hero-label {
    font-size: 15px;
    color: #BE43B1;
    font-weight: 600;
    letter-spacing: 0;
}

.prtn__hero-h1 {
    font-size: 43px;
    line-height: 1.2;
    color: #BE43B1;
    font-weight: 700;
    margin: 0;
}

.prtn__hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0;
}

.prtn__hero-desc em {
    font-style: italic;
    font-size: 19px;
    color: #BE43B1;
}

.prtn__hero-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.prtn__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #BE43B1;
    text-decoration: none;
    transition: padding 0.15s ease-out, background-color 0.15s ease-out, color 0.12s ease;
}

.prtn__btn--fill {
    background-color: #BE43B1;
    color: #fff;
}

.prtn__btn--fill:hover {
    background-color: #a83a9e;
    padding-left: 32px;
    padding-right: 32px;
}

.prtn__btn--outline {
    background-color: transparent;
    color: #BE43B1;
}

.prtn__btn--outline:hover {
    background-color: #F2ECF1;
    padding-left: 32px;
    padding-right: 32px;
}

.prtn__hero-img-col {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
}

.prtn__hero-img-wrap {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    position: relative;
}

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

.prtn__hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(190, 67, 177, 0.18) 0%, rgba(198, 149, 192, 0.10) 55%, rgba(242, 236, 241, 0.04) 100%);
    mix-blend-mode: multiply;
}

.prtn__scallop {
    display: block;
    width: 100%;
    height: 32px;
    overflow: hidden;
    line-height: 0;
}

.prtn__scallop svg {
    display: block;
    width: 100%;
    height: 32px;
}

.prtn__stats {
    background-color: #fff;
    padding: 48px 0;
}

.prtn__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prtn__stat-card {
    background: #F2ECF1;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
    position: relative;
    overflow: hidden;
}

.prtn__stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 2px 8px 0 rgba(190, 67, 177, 0.07);
    border-radius: 12px;
    pointer-events: none;
}

.prtn__stat-card:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transform: translateY(-2px);
}

.prtn__stat-num {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    color: #BE43B1;
    display: block;
}

.prtn__stat-label {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    display: block;
    margin-top: 8px;
}

.prtn__grid-anim {
    background-color: #2a1a29;
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.prtn__grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prtn__grid-lines svg {
    width: 100%;
    height: 100%;
}

.prtn__grid-anim-inner {
    position: relative;
    z-index: 1;
}

.prtn__grid-anim-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.prtn__grid-anim-lead {
    flex: 0 0 320px;
}

.prtn__grid-anim-lead-h2 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #C695C0;
    margin: 0 0 16px 0;
}

.prtn__grid-anim-lead-p {
    font-size: 16px;
    line-height: 1.7;
    color: #d4c2d2;
    margin: 0;
}

.prtn__grid-anim-items {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prtn__item {
    background: rgba(242, 236, 241, 0.06);
    border-radius: 6px;
    padding: 16px 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: background 0.17s ease-out;
}

.prtn__item:hover {
    background: rgba(242, 236, 241, 0.11);
}

.prtn__item-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(190, 67, 177, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prtn__item-icon svg {
    width: 18px;
    height: 18px;
}

.prtn__item-body {
    flex: 1 1 0;
}

.prtn__item-h4 {
    font-size: 15px;
    font-weight: 700;
    color: #F2ECF1;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.prtn__item-p {
    font-size: 15px;
    line-height: 1.7;
    color: #c0aebe;
    margin: 0;
}

.prtn__types {
    background: linear-gradient(170deg, #F2ECF1 0%, #F2ECF1 45%, #fff 45%, #fff 100%);
    padding: 48px 0;
}

.prtn__types-h2 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 300;
    color: #BE43B1;
    margin: 0 0 8px 0;
}

.prtn__types-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0 0 48px 0;
}

.prtn__types-cols {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

.prtn__type-card {
    flex: 1 1 0;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.16s ease-out;
}

.prtn__type-card:hover {
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.prtn__type-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F2ECF1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prtn__type-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.prtn__type-h3 {
    font-size: 19px;
    font-weight: 700;
    color: #2a1a29;
    margin: 0;
    line-height: 1.2;
}

.prtn__type-p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
    flex: 1 1 auto;
}

.prtn__type-tag {
    display: inline-block;
    font-size: 15px;
    color: #BE43B1;
    background: #F2ECF1;
    border-radius: 4px;
    padding: 4px 8px;
    font-weight: 600;
    align-self: flex-start;
}

.prtn__contact {
    background-color: #BE43B1;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

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

.prtn__contact-bg svg {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 220px;
    height: 220px;
    opacity: 0.08;
}

.prtn__contact-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.prtn__contact-text {
    flex: 1 1 0;
}

.prtn__contact-h2 {
    font-size: 31px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.prtn__contact-p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.prtn__contact-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.prtn__contact-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid #fff;
    transition: padding 0.15s ease-out, background-color 0.13s ease;
}

.prtn__contact-btn--white {
    background-color: #fff;
    color: #BE43B1;
}

.prtn__contact-btn--white:hover {
    background-color: #F2ECF1;
    padding-left: 32px;
    padding-right: 32px;
}

.prtn__contact-btn--ghost {
    background-color: transparent;
    color: #fff;
}

.prtn__contact-btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.12);
    padding-left: 32px;
    padding-right: 32px;
}

.prtn__contact-detail {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.prtn__contact-detail svg {
    flex-shrink: 0;
}

@keyframes gridPulse {
    0% {
        opacity: 0.06;
    }

    50% {
        opacity: 0.18;
    }

    100% {
        opacity: 0.06;
    }
}

.prtn__grid-line--h {
    animation: gridPulse 4s ease-in-out infinite;
}

.prtn__grid-line--h:nth-child(2) {
    animation-delay: 0.8s;
}

.prtn__grid-line--h:nth-child(3) {
    animation-delay: 1.6s;
}

.prtn__grid-line--h:nth-child(4) {
    animation-delay: 2.4s;
}

.prtn__grid-line--h:nth-child(5) {
    animation-delay: 3.2s;
}

.prtn__grid-line--v {
    animation: gridPulse 4s ease-in-out infinite;
}

.prtn__grid-line--v:nth-child(6) {
    animation-delay: 0.4s;
}

.prtn__grid-line--v:nth-child(7) {
    animation-delay: 1.2s;
}

.prtn__grid-line--v:nth-child(8) {
    animation-delay: 2.0s;
}

.prtn__grid-line--v:nth-child(9) {
    animation-delay: 2.8s;
}

.prtn__grid-line--v:nth-child(10) {
    animation-delay: 3.6s;
}

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

    .prtn__hero-img-col {
        flex: 0 0 auto;
    }

    .prtn__hero-img-wrap {
        height: 240px;
    }

    .prtn__stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prtn__grid-anim-row {
        flex-direction: column;
    }

    .prtn__grid-anim-lead {
        flex: 0 0 auto;
    }

    .prtn__types-cols {
        flex-direction: column;
    }

    .prtn__contact-row {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 540px) {
    .prtn__hero-h1 {
        font-size: 31px;
    }

    .prtn__stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .prtn__stat-num {
        font-size: 31px;
    }

    .prtn__hero-actions {
        flex-direction: column;
    }

    .prtn__contact-actions {
        width: 100%;
    }
}

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

.prtl .pg-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes vignette-breathe {

    0%,
    100% {
        opacity: 0.18;
    }

    50% {
        opacity: 0.38;
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

.prtl .title-blk {
    position: relative;
    background: #F2ECF1;
    padding: 48px 0 0 0;
    overflow: hidden;
}

.prtl .title-blk__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(190, 67, 177, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(198, 149, 192, 0.10) 0%, transparent 55%);
    animation: vignette-breathe 5s ease-in-out infinite;
    pointer-events: none;
}

.prtl .title-blk__geo {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(190, 67, 177, 0.12);
    border-radius: 12px;
    animation: geo-rotate 28s linear infinite;
    pointer-events: none;
}

.prtl .title-blk__geo--sm {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(198, 149, 192, 0.15);
    border-radius: 4px;
    animation: geo-rotate 18s linear infinite reverse;
    pointer-events: none;
}

.prtl .title-blk__grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.prtl .title-blk__text-col {
    flex: 0 0 55%;
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 2px solid rgba(190, 67, 177, 0.18);
}

.prtl .title-blk__img-col {
    flex: 0 0 45%;
    padding: 16px 0 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.prtl .title-blk__eyebrow {
    font-size: 15px;
    line-height: 1.7;
    color: #BE43B1;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    font-style: italic;
}

.prtl .title-blk__h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 8px;
}

.prtl .title-blk__h2 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 300;
    color: #C695C0;
    margin-bottom: 24px;
}

.prtl .title-blk__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.prtl .title-blk__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.prtl .btn-primary {
    display: inline-block;
    background: #BE43B1;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transition: padding 0.15s ease-out, box-shadow 0.18s ease;
}

.prtl .btn-primary:hover {
    padding: 16px 32px;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.prtl .btn-primary:focus-visible {
    outline: 3px solid #BE43B1 !important;
    outline-offset: 3px !important;
}

.prtl .btn-secondary {
    display: inline-block;
    background: transparent;
    color: #BE43B1;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 24px;
    border-radius: 6px;
    border: 2px solid #BE43B1;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: padding 0.12s ease-out, background 0.15s ease;
}

.prtl .btn-secondary:hover {
    padding: 16px 32px;
    background: rgba(190, 67, 177, 0.06);
}

.prtl .btn-secondary:focus-visible {
    outline: 3px solid #BE43B1 !important;
    outline-offset: 3px !important;
}

.prtl .title-blk__img-wrap {
    width: 100%;
    height: 400px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    filter: grayscale(100%);
}

.prtl .title-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prtl .outcomes-blk {
    background: #fff;
    padding: 48px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    padding-bottom: 80px;
}

.prtl .outcomes-blk__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(190, 67, 177, 0.06) 0%, transparent 65%);
    animation: vignette-breathe 7s ease-in-out infinite;
    pointer-events: none;
}

.prtl .outcomes-blk__geo {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(190, 67, 177, 0.08);
    border-radius: 20px;
    animation: geo-rotate 35s linear infinite;
    pointer-events: none;
}

.prtl .outcomes-blk__label {
    font-size: 15px;
    line-height: 1.7;
    color: #C695C0;
    margin-bottom: 8px;
    font-style: italic;
}

.prtl .outcomes-blk__heading {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 48px;
}

.prtl .outcomes-blk__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.prtl .out-card {
    background: #F2ECF1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.18s ease-out, filter 0.15s ease;
    position: relative;
}

.prtl .out-card:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    filter: blur(0px);
}

.prtl .out-card:hover .out-card__icon-wrap {
    filter: blur(0px);
    box-shadow: inset 0 2px 8px 0 rgba(190, 67, 177, 0.18);
}

.prtl .out-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.18s ease, filter 0.15s ease;
}

.prtl .out-card__icon-svg {
    width: 24px;
    height: 24px;
}

.prtl .out-card__num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 8px;
}

.prtl .out-card__heading {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.prtl .out-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
}

.prtl .adapt-blk {
    background: #F2ECF1;
    padding: 96px 0 48px 0;
    position: relative;
}

.prtl .adapt-blk__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 30%, rgba(198, 149, 192, 0.14) 0%, transparent 55%);
    animation: vignette-breathe 6s ease-in-out infinite;
    pointer-events: none;
}

.prtl .adapt-blk__geo {
    position: absolute;
    bottom: -30px;
    right: 60px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(190, 67, 177, 0.09);
    border-radius: 20px;
    animation: geo-rotate 22s linear infinite reverse;
    pointer-events: none;
}

.prtl .adapt-blk__layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.prtl .adapt-blk__left {
    flex: 0 0 58%;
}

.prtl .adapt-blk__right {
    flex: 0 0 calc(42% - 48px);
}

.prtl .adapt-blk__label {
    font-size: 15px;
    line-height: 1.7;
    color: #BE43B1;
    font-style: italic;
    margin-bottom: 8px;
}

.prtl .adapt-blk__heading {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 16px;
}

.prtl .adapt-blk__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 24px;
}

.prtl .adapt-blk__accent {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #BE43B1;
    margin-bottom: 24px;
}

.prtl .adapt-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prtl .adapt-step {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.16s ease-out;
}

.prtl .adapt-step:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.prtl .adapt-step__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #BE43B1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.prtl .adapt-step__body {
    flex: 1;
}

.prtl .adapt-step__title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 4px;
}

.prtl .adapt-step__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
}

.prtl .adapt-blk__img-wrap {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    margin-bottom: 24px;
    transition: box-shadow 0.18s ease-out, filter 0.15s ease;
}

.prtl .adapt-blk__img-wrap:hover {
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.18);
    filter: brightness(1.03);
}

.prtl .adapt-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prtl .adapt-blk__side-note {
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    inset shadow: inset 0 2px 6px 0 rgba(190, 67, 177, 0.08);
}

.prtl .sit-blk {
    background: #fff;
    padding: 48px 0;
    position: relative;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    padding-top: 80px;
}

.prtl .sit-blk__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 90%, rgba(190, 67, 177, 0.07) 0%, transparent 60%);
    animation: vignette-breathe 8s ease-in-out infinite;
    pointer-events: none;
}

.prtl .sit-blk__geo {
    position: absolute;
    top: 60px;
    right: -50px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(198, 149, 192, 0.12);
    border-radius: 4px;
    animation: geo-rotate 30s linear infinite;
    pointer-events: none;
}

.prtl .sit-blk__label {
    font-size: 15px;
    line-height: 1.7;
    color: #C695C0;
    font-style: italic;
    margin-bottom: 8px;
}

.prtl .sit-blk__heading {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 16px;
}

.prtl .sit-blk__intro {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 48px;
    max-width: 620px;
}

.prtl .sit-blk__layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.prtl .sit-blk__img-col {
    flex: 0 0 38%;
}

.prtl .sit-blk__content-col {
    flex: 1;
}

.prtl .sit-blk__img-wrap {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    transition: filter 0.18s ease-out;
}

.prtl .sit-blk__img-wrap:hover {
    filter: brightness(1.04);
}

.prtl .sit-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prtl .sit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prtl .sit-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(190, 67, 177, 0.12);
    background: #F2ECF1;
    transition: border-color 0.15s ease-out, box-shadow 0.18s ease;
}

.prtl .sit-item:hover {
    border-color: rgba(190, 67, 177, 0.35);
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.prtl .sit-item__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #BE43B1;
    margin-top: 6px;
}

.prtl .sit-item__body {
    flex: 1;
}

.prtl .sit-item__title {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.2;
    margin-bottom: 4px;
}

.prtl .sit-item__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
}

.prtl .sit-blk__link {
    display: inline-block;
    margin-top: 24px;
    font-size: 16px;
    color: #BE43B1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.12s ease-out;
}

.prtl .sit-blk__link:hover {
    border-color: #BE43B1;
}

.prtl .sit-blk__link:focus-visible {
    outline: 3px solid #BE43B1 !important;
    outline-offset: 2px !important;
}

.prtl .obj-blk {
    background: #F2ECF1;
    padding: 48px 0;
    position: relative;
}

.prtl .obj-blk__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(190, 67, 177, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(198, 149, 192, 0.08) 0%, transparent 50%);
    animation: vignette-breathe 9s ease-in-out infinite;
    pointer-events: none;
}

.prtl .obj-blk__geo {
    position: absolute;
    top: -40px;
    left: 80px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(190, 67, 177, 0.10);
    border-radius: 20px;
    animation: geo-rotate 40s linear infinite;
    pointer-events: none;
}

.prtl .obj-blk__layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.prtl .obj-blk__left {
    flex: 1;
}

.prtl .obj-blk__right {
    flex: 0 0 33%;
}

.prtl .obj-blk__label {
    font-size: 15px;
    line-height: 1.7;
    color: #BE43B1;
    font-style: italic;
    margin-bottom: 8px;
}

.prtl .obj-blk__heading {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin-bottom: 24px;
}

.prtl .obj-blk__text {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.prtl .obj-blk__accent {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #BE43B1;
    margin-bottom: 24px;
}

.prtl .obj-blk__cta {
    margin-top: 24px;
}

.prtl .obj-blk__img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    transition: filter 0.18s ease-out, box-shadow 0.15s ease;
}

.prtl .obj-blk__img-wrap:hover {
    filter: brightness(1.04);
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.18);
}

.prtl .obj-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prtl .obj-blk__detail-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    box-shadow: inset 0 2px 6px 0 rgba(190, 67, 177, 0.08), 0 1px 5px 0 rgba(190, 67, 177, 0.07);
}

.prtl .obj-blk__detail-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(190, 67, 177, 0.10);
}

.prtl .obj-blk__detail-row:last-child {
    border-bottom: none;
}

.prtl .obj-blk__detail-label {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.7;
}

.prtl .obj-blk__detail-val {
    font-size: 15px;
    font-weight: 600;
    color: #BE43B1;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .prtl .title-blk__grid {
        flex-direction: column;
    }

    .prtl .title-blk__text-col {
        flex: unset;
        padding: 48px 0 24px 0;
        border-right: none;
        border-bottom: 2px solid rgba(190, 67, 177, 0.18);
    }

    .prtl .title-blk__img-col {
        flex: unset;
        padding: 24px 0 0 0;
    }

    .prtl .title-blk__h1 {
        font-size: 43px;
    }

    .prtl .outcomes-blk__grid {
        grid-template-columns: 1fr;
    }

    .prtl .adapt-blk__layout {
        flex-direction: column;
    }

    .prtl .adapt-blk__left,
    .prtl .adapt-blk__right {
        flex: unset;
        width: 100%;
    }

    .prtl .sit-blk__layout {
        flex-direction: column;
    }

    .prtl .sit-blk__img-col {
        flex: unset;
        width: 100%;
    }

    .prtl .obj-blk__layout {
        flex-direction: column;
    }

    .prtl .obj-blk__right {
        flex: unset;
        width: 100%;
    }

    .prtl .title-blk__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.cu .divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, transparent 20%, #BE43B1 50%, #C695C0 80%, transparent 100%);
    border: none;
    margin: 0;
}

.cu .pg-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.cu__reach {
    background: #fff;
    padding: 48px 0;
    position: relative;
}

.cu__reach::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #BE43B1 0%, #BE43B1 40%, #C695C0 100%);
    border-radius: 0 2px 2px 0;
}

.cu__reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

.cu__reach-label {
    font-size: 15px;
    color: #BE43B1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.cu__reach-heading {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0;
}

.cu__reach-heading em {
    font-style: italic;
    color: #BE43B1;
    font-size: 47px;
}

.cu__reach-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
}

.cu__reach-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 380px;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.cu__reach-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.18s ease-out;
}

.cu__reach-img-wrap:hover img {
    filter: brightness(1.04);
}

.cu__reach-img-tint {
    position: absolute;
    inset: 0;
    background: rgba(190, 67, 177, 0.10);
    border-radius: 12px;
    pointer-events: none;
}

.cu__reach-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 3px solid #C695C0;
    opacity: 0.35;
    pointer-events: none;
}

.cu__reach-shape2 {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    border: 2px solid #BE43B1;
    opacity: 0.22;
    pointer-events: none;
}

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

.cu__card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #F2ECF1;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.15s ease-out;
}

.cu__card:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.cu__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #BE43B1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cu__card-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.cu__card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cu__card-label {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2;
}

.cu__card-val {
    font-size: 15px;
    color: #2d2d2d;
    line-height: 1.7;
}

.cu__card-val a {
    color: #BE43B1;
    text-decoration: none;
    transition: color 0.12s ease-out;
}

.cu__card-val a:hover {
    color: #1b1b1b;
    text-decoration: underline;
}

.cu__divider-wrap {
    padding: 0;
}

.cu__form-band {
    background: #F2ECF1;
    padding: 48px 0;
    position: relative;
}

.cu__form-geo {
    position: absolute;
    top: 24px;
    right: 48px;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 2px solid #C695C0;
    opacity: 0.18;
    pointer-events: none;
    animation: cu-geo-pulse 3.2s ease-in-out infinite;
}

.cu__form-geo2 {
    position: absolute;
    bottom: 32px;
    left: 60px;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    border: 2px solid #BE43B1;
    opacity: 0.13;
    pointer-events: none;
    animation: cu-geo-pulse 4.5s ease-in-out infinite 1.1s;
}

@keyframes cu-geo-pulse {

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

    50% {
        opacity: 0.26;
        transform: scale(1.06);
    }
}

.cu__form-inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

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

.cu__form-side-heading {
    font-size: 31px;
    font-weight: 300;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0;
}

.cu__form-side-heading strong {
    font-weight: 700;
    color: #BE43B1;
}

.cu__form-side-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
}

.cu__form-side-note {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    border-radius: 6px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
}

.cu__form-side-note em {
    font-style: italic;
    color: #BE43B1;
    font-size: 16px;
}

.cu__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.cu__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.cu__field--full {
    grid-column: 1 / -1;
}

.cu__field label {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.2;
}

.cu__field input,
.cu__field select,
.cu__field textarea {
    border: 1.5px solid #C695C0;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    color: #1b1b1b;
    background: #fff;
    line-height: 1.7;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
    outline: none;
    box-shadow: inset 0 1px 4px 0 rgba(190, 67, 177, 0.07);
    -webkit-appearance: none;
    appearance: none;
}

.cu__field input::placeholder,
.cu__field textarea::placeholder {
    color: #b0a0af;
    transition: color 0.18s ease-out;
}

.cu__field input:focus::placeholder,
.cu__field textarea:focus::placeholder {
    color: transparent;
}

.cu__field input:focus,
.cu__field select:focus,
.cu__field textarea:focus {
    border-color: #BE43B1;
    box-shadow: inset 0 1px 4px 0 rgba(190, 67, 177, 0.12), 0 0 0 3px rgba(190, 67, 177, 0.10);
}

.cu__field textarea {
    min-height: 110px;
    resize: vertical;
}

.cu__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23BE43B1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.cu__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.cu__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid #C695C0;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    margin-top: 2px;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
    accent-color: #BE43B1;
}

.cu__privacy-text {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
}

.cu__privacy-text a {
    color: #BE43B1;
    text-decoration: underline;
    transition: color 0.12s ease-out;
}

.cu__privacy-text a:hover {
    color: #1b1b1b;
}

.cu__submit-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.cu__btn {
    background: #BE43B1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    cursor: pointer;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transition: background 0.15s ease-out, width 0.18s ease, padding 0.18s ease;
    width: auto;
    display: inline-block;
}

.cu__btn:hover {
    background: #9e2f94;
    padding-left: 32px;
    padding-right: 32px;
}

.cu__btn:focus {
    outline: 3px solid #C695C0;
    outline-offset: 2px;
}

.cu__btn:active {
    background: #7a2272;
}

.cu__form-hint {
    font-size: 15px;
    color: #7a5a78;
    line-height: 1.7;
}

.cu__metrics {
    background: #fff;
    padding: 48px 0;
    position: relative;
}

.cu__metrics::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #C695C0 0%, #BE43B1 60%, #C695C0 100%);
    border-radius: 2px 0 0 2px;
    pointer-events: none;
}

.cu__metrics-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.cu__metrics-heading {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0;
    max-width: 520px;
}

.cu__metrics-heading span {
    color: #BE43B1;
    font-style: italic;
}

.cu__metrics-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    max-width: 320px;
    margin: 0;
}

.cu__metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cu__metric {
    background: #F2ECF1;
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.17s ease-out, transform 0.17s ease-out;
    position: relative;
    overflow: hidden;
}

.cu__metric:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transform: translateY(-3px);
}

.cu__metric-num {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.2;
    color: #BE43B1;
}

.cu__metric-label {
    font-size: 15px;
    line-height: 1.7;
    color: #1b1b1b;
    font-weight: 600;
}

.cu__metric-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3a48;
}

.cu__metric-bar {
    height: 4px;
    border-radius: 2px;
    background: #C695C0;
    margin-top: 8px;
}

.cu__metric-bar--full {
    background: #BE43B1;
    width: 85%;
    height: 4px;
    border-radius: 2px;
}

.cu__metric-bar--mid {
    background: #BE43B1;
    width: 60%;
    height: 4px;
    border-radius: 2px;
}

.cu__metric-bar--low {
    background: #BE43B1;
    width: 40%;
    height: 4px;
    border-radius: 2px;
}

.cu__metric-bar--high {
    background: #BE43B1;
    width: 92%;
    height: 4px;
    border-radius: 2px;
}

.cu__metrics-img-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    margin-top: 24px;
    align-items: center;
}

.cu__metrics-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    width: 100%;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.cu__metrics-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.18s ease-out;
}

.cu__metrics-img-wrap:hover img {
    filter: brightness(1.04);
}

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

.cu__aside-quote {
    font-size: 19px;
    font-style: italic;
    color: #BE43B1;
    line-height: 1.7;
}

.cu__aside-body {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
}

.cu__aside-name {
    font-size: 15px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2;
}

.cu__aside-role {
    font-size: 15px;
    color: #7a5a78;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .cu__reach-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .cu__metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cu__metrics-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cu__metrics-img-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cu__reach-heading {
        font-size: 31px;
    }

    .cu__reach-heading em {
        font-size: 35px;
    }

    .cu__metrics-grid {
        grid-template-columns: 1fr;
    }

    .cu__form-row {
        grid-template-columns: 1fr;
    }

    .cu__metric-num {
        font-size: 31px;
    }

    .cu__reach-img-wrap {
        height: 240px;
    }

    .cu__metrics-img-wrap {
        height: 160px;
    }
}

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

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

@keyframes colReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes imgFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.abt-us .intro-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 0 48px;
}

.abt-us .intro-row .txt-col {
    flex: 1 1 0;
    animation: colReveal 0.18s ease-out both;
    animation-delay: 0.05s;
}

.abt-us .intro-row .img-col {
    flex: 0 0 340px;
    position: relative;
    animation: colReveal 0.2s ease-out both;
    animation-delay: 0.14s;
}

.abt-us .intro-row .img-col .card-img-wrap {
    width: 340px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    animation: imgFade 0.2s ease-out both;
    animation-delay: 0.18s;
}

.abt-us .intro-row .img-col .card-img-wrap img {
    width: 340px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-us .intro-row .img-col .deco-blob {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 180px;
    height: 120px;
    background: linear-gradient(120deg, #F2ECF1 0%, #F2ECF1 40%, #C695C0 40%, #C695C0 70%, #BE43B1 70%, #BE43B1 100%);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.abt-us .intro-row .lbl-tag {
    display: inline-block;
    font-size: 15px;
    color: #BE43B1;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    padding: 4px 8px;
    background: #F2ECF1;
    border-radius: 4px;
}

.abt-us .intro-row h1 {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #BE43B1;
    margin: 0 0 24px;
}

.abt-us .intro-row .desc-p {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2230;
    margin: 0 0 16px;
}

.abt-us .intro-row .desc-p em {
    font-style: italic;
    font-size: 19px;
    color: #BE43B1;
}

.abt-us .intro-row .act-lnk {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #BE43B1;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transition: padding 0.15s ease-out, background 0.12s ease;
}

.abt-us .intro-row .act-lnk:hover {
    padding: 16px 44px;
    background: #a8389c;
}

.abt-us .intro-row .act-lnk:focus {
    outline: 2px solid #BE43B1;
    outline-offset: 3px;
}

.abt-us .wavy-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.abt-us .wavy-divider svg {
    display: block;
    width: 100%;
}

.abt-us .metrics-band {
    background: #2a2230;
    padding: 48px 0 24px;
    position: relative;
}

.abt-us .metrics-band .asym-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.abt-us .metrics-band .asym-line .ln-long {
    height: 2px;
    flex: 0 0 180px;
    background: #BE43B1;
    border-radius: 2px;
}

.abt-us .metrics-band .asym-line .ln-short {
    height: 2px;
    flex: 0 0 40px;
    background: #C695C0;
    border-radius: 2px;
}

.abt-us .metrics-band h2 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 300;
    color: #F2ECF1;
    margin: 0 0 8px;
}

.abt-us .metrics-band h2 strong {
    font-weight: 800;
    color: #BE43B1;
}

.abt-us .metrics-band .sub-p {
    font-size: 16px;
    line-height: 1.7;
    color: #C695C0;
    max-width: 540px;
    margin: 0 0 48px;
}

.abt-us .metrics-band .mag-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.abt-us .metrics-band .left-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: colReveal 0.16s ease-out both;
    animation-delay: 0.06s;
}

.abt-us .metrics-band .right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: colReveal 0.2s ease-out both;
    animation-delay: 0.16s;
}

.abt-us .metrics-band .stat-card {
    background: #3a2f44;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.15s ease-out;
}

.abt-us .metrics-band .stat-card:hover {
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.abt-us .metrics-band .stat-card .ic-wrap {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 12px;
    background: #BE43B1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px 0 rgba(198, 149, 192, 0.18);
}

.abt-us .metrics-band .stat-card .ic-wrap svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.abt-us .metrics-band .stat-card .sc-body {
    flex: 1 1 0;
}

.abt-us .metrics-band .stat-card .sc-num {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
    color: #BE43B1;
}

.abt-us .metrics-band .stat-card .sc-lbl {
    font-size: 15px;
    line-height: 1.7;
    color: #C695C0;
}

.abt-us .metrics-band .feat-card {
    background: #F2ECF1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.abt-us .metrics-band .feat-card .fc-head {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    color: #2a2230;
    margin: 0 0 8px;
}

.abt-us .metrics-band .feat-card .fc-p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a2f44;
    margin: 0 0 16px;
}

.abt-us .metrics-band .feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .metrics-band .feat-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #2a2230;
}

.abt-us .metrics-band .feat-list li .dot {
    flex: 0 0 8px;
    height: 8px;
    border-radius: 20px;
    background: #BE43B1;
    margin-top: 8px;
}

.abt-us .metrics-band .img-card {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.abt-us .metrics-band .img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-us .metrics-band .team-strip {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.abt-us .metrics-band .tm-card {
    flex: 1 1 220px;
    background: #3a2f44;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    transition: box-shadow 0.18s ease;
}

.abt-us .metrics-band .tm-card:hover {
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

.abt-us .metrics-band .tm-card .tm-ava {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 2px 6px 0 rgba(198, 149, 192, 0.2);
}

.abt-us .metrics-band .tm-card .tm-ava img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-us .metrics-band .tm-card .tm-info .tm-name {
    font-size: 16px;
    font-weight: 700;
    color: #F2ECF1;
    line-height: 1.2;
}

.abt-us .metrics-band .tm-card .tm-info .tm-role {
    font-size: 15px;
    color: #C695C0;
    line-height: 1.7;
}

.abt-us .metrics-band .bottom-wavy {
    margin-top: 48px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.abt-us .metrics-band .bottom-wavy svg {
    display: block;
    width: 100%;
}

@media (max-width: 820px) {
    .abt-us .intro-row {
        flex-direction: column;
        padding: 48px 0 32px;
    }

    .abt-us .intro-row .img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .abt-us .intro-row .img-col .card-img-wrap {
        width: 100%;
        height: 260px;
    }

    .abt-us .intro-row .img-col .card-img-wrap img {
        width: 100%;
        height: 260px;
    }

    .abt-us .metrics-band .mag-grid {
        grid-template-columns: 1fr;
    }

    .abt-us .intro-row h1 {
        font-size: 31px;
    }
}

@media (max-width: 560px) {
    .abt-us .metrics-band .team-strip {
        flex-direction: column;
    }

    .abt-us .intro-row h1 {
        font-size: 31px;
    }
}

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

.srv__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.srv__title-block {
    padding: 48px 0;
    background: #fff;
}

.srv__title-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
}

.srv__title-img-col {
    flex: 0 0 380px;
    position: relative;
}

.srv__title-img-deco {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: linear-gradient(160deg, #F2ECF1 0%, #F2ECF1 40%, #C695C0 40%, #C695C0 70%, #BE43B1 70%, #BE43B1 100%);
    transform: rotate(45deg);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
}

.srv__title-img-wrap {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.srv__title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(0px);
}

.srv__title-img-wrap img.blurred-bg {
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(6px);
    transform: scale(1.08);
}

.srv__title-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.srv__eyebrow {
    font-size: 15px;
    line-height: 1.2;
    color: #BE43B1;
    letter-spacing: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.srv__h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0;
}

.srv__h1 em {
    font-style: italic;
    font-size: 43px;
    color: #BE43B1;
    font-weight: 300;
    display: block;
}

.srv__lead {
    font-size: 19px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0;
    max-width: 520px;
}

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

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

.srv__stat-num {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
}

.srv__stat-label {
    font-size: 15px;
    line-height: 1.2;
    color: #555;
}

.srv__stat-divider {
    width: 1px;
    height: 40px;
    background: #C695C0;
    opacity: 0.4;
}

.srv__btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #BE43B1;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
    transition: width 0.15s ease-out, padding 0.15s ease-out, background 0.12s ease;
    width: fit-content;
    align-self: flex-start;
}

.srv__btn-primary:hover {
    background: #a3389a;
    padding: 16px 44px;
}

.srv__btn-primary:focus {
    outline: 3px solid #BE43B1;
    outline-offset: 2px;
}

.srv__btn-primary:active {
    background: #8e2e87;
}

.srv__zigzag {
    width: 100%;
    display: block;
    line-height: 0;
}

.srv__cards-section {
    background: #F2ECF1;
    padding: 48px 0;
}

.srv__cards-head {
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 0 24px;
}

.srv__h2 {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 8px;
}

.srv__h2 span {
    color: #BE43B1;
    font-weight: 300;
}

.srv__sub {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
    max-width: 600px;
}

.srv__cards-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #C695C0 #F2ECF1;
}

.srv__card {
    flex: 0 0 260px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(190, 67, 177, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.18s ease-out, transform 0.16s ease-out;
    position: relative;
}

.srv__card:hover {
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    transform: rotate(-1deg);
}

.srv__card-icon {
    width: 44px;
    height: 44px;
    background: #F2ECF1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px 0 rgba(190, 67, 177, 0.09);
}

.srv__card-icon svg {
    width: 24px;
    height: 24px;
}

.srv__card-deco {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 18px;
    height: 18px;
    background: #F2ECF1;
    transform: rotate(45deg);
    border-radius: 2px;
    pointer-events: none;
    transition: background 0.14s ease;
}

.srv__card:hover .srv__card-deco {
    background: #C695C0;
}

.srv__card-h {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.srv__card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.srv__card-tag {
    font-size: 15px;
    color: #BE43B1;
    font-weight: 600;
    border-radius: 4px;
    background: #F2ECF1;
    padding: 4px 8px;
    align-self: flex-start;
}

.srv__matrix-section {
    background: #fff;
    padding: 48px 0 0;
}

.srv__matrix-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.srv__matrix-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srv__h3 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.srv__matrix-p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin: 0;
}

.srv__matrix-img-wrap {
    flex: 0 0 320px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 25px 0 rgba(190, 67, 177, 0.09);
}

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

.srv__matrix-grid {
    flex: 0 0 440px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.srv__quad {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.17s ease-out, box-shadow 0.17s ease-out;
}

.srv__quad:hover {
    transform: rotate(1deg);
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
}

.srv__quad--a {
    background: #BE43B1;
    color: #fff;
}

.srv__quad--b {
    background: #F2ECF1;
}

.srv__quad--c {
    background: #F2ECF1;
}

.srv__quad--d {
    background: #2d1a2b;
    color: #fff;
}

.srv__quad-label {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.srv__quad--a .srv__quad-label,
.srv__quad--d .srv__quad-label {
    color: rgba(255, 255, 255, 0.7);
}

.srv__quad--b .srv__quad-label,
.srv__quad--c .srv__quad-label {
    color: #BE43B1;
}

.srv__quad-title {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
    margin: 0;
}

.srv__quad--a .srv__quad-title,
.srv__quad--d .srv__quad-title {
    color: #fff;
}

.srv__quad--b .srv__quad-title,
.srv__quad--c .srv__quad-title {
    color: #1b1b1b;
}

.srv__quad-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.srv__quad--a .srv__quad-desc,
.srv__quad--d .srv__quad-desc {
    color: rgba(255, 255, 255, 0.85);
}

.srv__quad--b .srv__quad-desc,
.srv__quad--c .srv__quad-desc {
    color: #3a3a3a;
}

.srv__zigzag2 {
    width: 100%;
    display: block;
    line-height: 0;
    margin-top: 48px;
}

.srv__process-section {
    background: #2d1a2b;
    padding: 48px 0;
}

.srv__process-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.srv__process-head {
    margin-bottom: 24px;
}

.srv__h2-light {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.srv__h2-light span {
    color: #C695C0;
    font-weight: 300;
}

.srv__sub-light {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 580px;
}

.srv__steps {
    display: flex;
    flex-direction: row;
    gap: 8px;
    position: relative;
}

.srv__step {
    flex: 1 1 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid rgba(198, 149, 192, 0.18);
    transition: background 0.18s ease-out, border-color 0.14s ease;
    position: relative;
}

.srv__step:hover {
    background: rgba(190, 67, 177, 0.12);
    border-color: rgba(198, 149, 192, 0.5);
}

.srv__step-num {
    font-size: 43px;
    line-height: 1.2;
    font-weight: 800;
    color: #BE43B1;
    opacity: 0.4;
}

.srv__step-h {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.srv__step-p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.srv__step-tag {
    font-size: 15px;
    color: #C695C0;
    font-weight: 600;
    background: rgba(198, 149, 192, 0.12);
    border-radius: 4px;
    padding: 4px 8px;
    align-self: flex-start;
    margin-top: 8px;
}

.srv__btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid rgba(198, 149, 192, 0.5);
    cursor: pointer;
    transition: border-color 0.15s ease-out, padding 0.15s ease-out, background 0.12s ease;
    margin-top: 24px;
    width: fit-content;
}

.srv__btn-outline:hover {
    border-color: #C695C0;
    background: rgba(198, 149, 192, 0.1);
    padding: 16px 44px;
}

.srv__btn-outline:focus {
    outline: 3px solid #C695C0;
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .srv__title-inner {
        flex-direction: column;
        gap: 24px;
    }

    .srv__title-img-col {
        flex: 0 0 auto;
    }

    .srv__title-img-wrap {
        height: 260px;
    }

    .srv__h1 {
        font-size: 43px;
    }

    .srv__matrix-inner {
        flex-direction: column;
        gap: 24px;
    }

    .srv__matrix-grid {
        flex: 0 0 auto;
        width: 100%;
    }

    .srv__matrix-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }

    .srv__steps {
        flex-direction: column;
    }

    .srv__cards-list {
        flex-direction: column;
        overflow-x: visible;
    }

    .srv__card {
        flex: 0 0 auto;
    }
}

@media (max-width: 600px) {
    .srv__h1 {
        font-size: 31px;
    }

    .srv__h2,
    .srv__h2-light {
        font-size: 31px;
    }

    .srv__matrix-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .srv__title-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .srv__stat-divider {
        display: none;
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: #F2ECF1;
}

.succ-page .card-wrap {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 44px 0 rgba(190, 67, 177, 0.13);
    padding: 48px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.succ-page .card-wrap .icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #F2ECF1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: inset 0 2px 8px 0 rgba(198, 149, 192, 0.18);
}

.succ-page .card-wrap .icon-ring svg {
    width: 36px;
    height: 36px;
    display: block;
}

.succ-page .card-wrap .succ-heading {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #BE43B1;
    margin: 0 0 16px 0;
}

.succ-page .card-wrap .succ-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0 0 24px 0;
}

.succ-page .card-wrap .succ-divider {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #BE43B1 0%, #BE43B1 40%, #C695C0 40%, #C695C0 70%, #F2ECF1 70%, #F2ECF1 100%);
    margin: 0 auto 24px auto;
}

.succ-page .card-wrap .succ-meta {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 24px 0;
    padding: 16px;
    background: #F2ECF1;
    border-radius: 6px;
}

.succ-page .card-wrap .succ-meta em {
    font-style: italic;
    font-size: 16px;
    color: #BE43B1;
}

.succ-page .card-wrap .btn-wrap {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.succ-page .card-wrap .btn-primary {
    display: inline-block;
    padding: 16px 24px;
    background: #BE43B1;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #BE43B1;
    cursor: pointer;
    transition: padding 0.15s ease-out, background 0.18s ease;
}

.succ-page .card-wrap .btn-primary:hover {
    padding: 16px 32px;
    background: #a83a9e;
}

.succ-page .card-wrap .btn-primary:focus {
    outline: 3px solid #C695C0;
    outline-offset: 3px;
}

.succ-page .card-wrap .btn-secondary {
    display: inline-block;
    padding: 16px 24px;
    background: transparent;
    color: #BE43B1;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #C695C0;
    cursor: pointer;
    transition: padding 0.12s ease-out, border-color 0.15s ease;
}

.succ-page .card-wrap .btn-secondary:hover {
    padding: 16px 32px;
    border-color: #BE43B1;
}

.succ-page .card-wrap .btn-secondary:focus {
    outline: 3px solid #C695C0;
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .succ-page .card-wrap {
        padding: 32px 16px;
    }

    .succ-page .card-wrap .btn-wrap {
        flex-direction: column;
        align-items: center;
    }
}