html {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif
}

:focus-visible {
    outline: 2px solid #A972D1;
    outline-offset: 3px
}

:focus:not(:focus-visible) {
    outline: none
}

.site-header {
    background: linear-gradient(135deg, #fff 0%, #f5f0fc 60%, #eaf2ee 100%);
    border-bottom: 2px solid #A972D1;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    position: relative;
    z-index: 100;
    overflow: hidden
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A972D1 0%, #1F5D40 50%, #A972D1 100%);
    pointer-events: none
}

.header-brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 32px 16px;
    max-width: 1366px;
    margin: 0 auto;
    gap: 16px
}

.brand-logo-strip {
    background-color: #1F5D40;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 3px 2px 0 #1f5d4014 1px 7px 22px 0 #1f5d401c;
    border: 1.5px solid #A972D1;
    width: 56px;
    height: 56px;
    flex-shrink: 0
}

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

.brand-divider {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(180deg, transparent, #A972D1 30%, #1F5D40 70%, transparent);
    border-radius: 28px;
    flex-shrink: 0
}

.brand-name-text {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: #1a2e1e;
    text-decoration: none;
    display: block
}

.brand-name-text span {
    color: #A972D1
}

.header-phone-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FEFFC5;
    border: 1.5px solid #1F5D40;
    border-radius: 44px;
    padding: 8px 16px;
    text-decoration: none;
    box-shadow: 1px 3px 2px 0 #1f5d4014;
    transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.header-phone-pill:hover {
    background: #f0ffda;
    border-color: #A972D1
}

.header-phone-pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.header-phone-pill span {
    font-size: 14px;
    font-weight: 500;
    color: #1F5D40;
    letter-spacing: .04em;
    line-height: 1.75
}

.header-nav-row {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.nav-pill-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 44px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.75;
    text-decoration: none;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    transition: color .45s ease-in-out, border-color .45s ease-in-out;
    min-height: 44px
}

.nav-pill-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    border-radius: 44px;
    transition: left .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

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

.nav-pill-link:hover::after {
    left: 0
}

.nav-pill-primary {
    background: #A972D1;
    color: #fff;
    border-color: #A972D1
}

.nav-pill-primary::after {
    background: #1F5D40
}

.nav-pill-primary:hover {
    color: #fff;
    border-color: #1F5D40
}

.nav-pill-ghost {
    background: transparent;
    color: #1F5D40;
    border-color: #1F5D40
}

.nav-pill-ghost::after {
    background: #FEFFC5
}

.nav-pill-ghost:hover {
    color: #1a2e1e;
    border-color: #A972D1
}

.site-footer {
    background: linear-gradient(135deg, #1F5D40 0%, #16432e 100%);
    border-top: 2px solid #A972D1;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FEFFC5 0%, #A972D1 50%, #FEFFC5 100%);
    pointer-events: none
}

.footer-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-contact-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: .85
}

.footer-contact-item a,
.footer-contact-item address {
    font-size: 14px;
    font-weight: 400;
    color: #FEFFC5;
    line-height: 1.75;
    text-decoration: none;
    font-style: normal;
    letter-spacing: .02em;
    transition: color .45s ease-in-out
}

.footer-contact-item a:hover {
    color: #fff
}

.footer-legal-glass {
    background: #feffc514;
    border: 1px solid #feffc533;
    border-radius: 28px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.footer-legal-link {
    font-size: 14px;
    font-weight: 400;
    color: #FEFFC5;
    text-decoration: none;
    letter-spacing: .04em;
    line-height: 1.75;
    transition: color .45s ease-in-out
}

.footer-legal-link:hover {
    color: #fff
}

.footer-legal-sep {
    width: 4px;
    height: 4px;
    border-radius: 44px;
    background: #feffc566;
    flex-shrink: 0
}

.footer-copyright {
    font-size: 14px;
    font-weight: 300;
    color: #feffc5b3;
    line-height: 1.75;
    letter-spacing: .02em
}

.footer-cookie-btn {
    font-size: 14px;
    font-weight: 400;
    color: #FEFFC5;
    background: transparent;
    border: 1px solid #feffc559;
    border-radius: 44px;
    padding: 4px 16px;
    cursor: pointer;
    letter-spacing: .04em;
    line-height: 1.75;
    transition: border-color .45s ease-in-out, color .45s ease-in-out;
    min-height: 44px
}

.footer-cookie-btn:hover {
    border-color: #FEFFC5;
    color: #fff
}

.footer-logo-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEFFC5;
    border-radius: 6px;
    padding: 8px;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    box-shadow: 1px 3px 2px 0 #a972d114 1px 7px 22px 0 #a972d11c;
    border: 1.5px solid #A972D1
}

.footer-logo-anchor img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.consent-tray {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 700px;
    z-index: 4000;
    display: none
}

.consent-box {
    background: #fff;
    border: 1.5px solid #A972D1;
    border-radius: 0 0 28px 28px;
    box-shadow: 1px 12px 48px 0 #a972d11c;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.consent-desc {
    font-size: 14px;
    font-weight: 400;
    color: #1a2e1e;
    line-height: 1.75;
    letter-spacing: .02em
}

.consent-desc a {
    color: #A972D1;
    text-decoration: underline
}

.consent-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.consent-btn-accept {
    background: #A972D1;
    color: #fff;
    border: 1.5px solid #A972D1;
    border-radius: 6px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: .04em;
    min-height: 44px;
    transition: background-color .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent-btn-accept:hover {
    background: #1F5D40;
    border-color: #1F5D40
}

.consent-btn-decline {
    background: transparent;
    color: #1F5D40;
    border: 1.5px solid #1F5D40;
    border-radius: 6px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: .04em;
    min-height: 44px;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent-btn-decline:hover {
    border-color: #A972D1;
    color: #A972D1
}

@media (max-width: 900px) {
    .header-brand-row {
        padding: 16px 16px 8px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center
    }

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

    .header-nav-row {
        padding: 0 16px 16px;
        gap: 8px
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .footer-logo-anchor {
        align-self: flex-end
    }
}

@media (max-width: 600px) {
    .brand-name-text {
        font-size: 40px
    }

    .header-brand-row {
        padding: 16px 8px 8px
    }

    .brand-divider {
        display: none
    }

    .header-nav-row {
        padding: 0 8px 16px
    }

    .nav-pill-link {
        padding: 8px 16px
    }

    .footer-contact-group {
        gap: 16px
    }

    .footer-legal-glass {
        padding: 8px 16px
    }

    .site-footer {
        padding: 24px 16px
    }

    .consent-box {
        padding: 16px
    }
}

.terms-box {
    max-width: 1366px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2d2d2d
}

.terms-box ul,
.terms-box ol {
    padding-left: 32px;
    margin-top: 16px;
    margin-bottom: 16px
}

.terms-box ul {
    list-style-type: disc
}

.terms-box ol {
    list-style-type: decimal
}

.terms-box ul ul,
.terms-box ol ol,
.terms-box ul ol,
.terms-box ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.terms-box li {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 8px;
    color: #2d2d2d
}

.terms-box strong,
.terms-box b {
    font-weight: 700;
    color: #1F5D40
}

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

.terms-box a {
    color: #1F5D40;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.terms-box a:visited {
    color: #7a4fa0
}

.terms-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.75;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    border-radius: 16px;
    overflow: hidden
}

.terms-box thead {
    background-color: #1F5D40
}

.terms-box thead th {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 2px solid #A972D1
}

.terms-box tbody tr {
    border-bottom: 1px solid #a972d126;
    transition: background-color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.terms-box tbody tr:last-child {
    border-bottom: none
}

.terms-box tbody tr:nth-child(even) {
    background-color: #FEFFC5
}

.terms-box tbody tr:hover {
    background-color: #a972d114
}

.terms-box td {
    padding: 16px 24px;
    color: #2d2d2d;
    vertical-align: top
}

.terms-box th {
    padding: 16px 24px
}

.terms-box hr {
    border: none;
    border-top: 2px solid #a972d140;
    margin-top: 32px;
    margin-bottom: 32px;
    border-radius: 6px
}

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

    .terms-box table {
        display: block;
        overflow-x: auto;
        border-radius: 16px
    }

    .terms-box td,
    .terms-box thead th {
        padding: 16px
    }
}

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

    .terms-box ul,
    .terms-box ol {
        padding-left: 24px
    }

    .terms-box li {
        font-size: 14px
    }

    .terms-box td,
    .terms-box thead th {
        padding: 8px 16px;
        font-size: 14px
    }
}

.srvs-pg {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative
}

.srvs-pg .bleed-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 0% 0%, #a972d12e 0%, transparent 70%);
    pointer-events: none;
    animation: corner-bleed 6s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
    z-index: 0
}

@keyframes corner-bleed {
    0% {
        opacity: 0;
        transform: scale(0.7) translate(-40px, -40px)
    }

    60% {
        opacity: 1;
        transform: scale(1.2) translate(0, 0)
    }

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

.srvs-pg .stripe-bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(127deg, transparent 0px, transparent 18px, #a972d10a 18px, #a972d10a 20px);
    pointer-events: none;
    z-index: 0
}

.srvs-pg .title-band {
    position: relative;
    background: linear-gradient(127deg, #1F5D40 0%, #A972D1 100%);
    padding: 64px 64px 48px;
    overflow: hidden
}

.srvs-pg .title-band .tri-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #feffc526 transparent transparent;
    pointer-events: none
}

.srvs-pg .title-band .tri-accent-bl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 0 0 60px;
    border-color: transparent transparent transparent #feffc51a;
    pointer-events: none
}

.srvs-pg .title-band__eyebrow {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .12em;
    color: #FEFFC5;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.srvs-pg .title-band__eyebrow .dot-accent {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FEFFC5;
    flex-shrink: 0
}

.srvs-pg .title-band__h1 {
    font-size: 55px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
    max-width: 700px
}

.srvs-pg .title-band__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.75;
    color: #FEFFC5;
    text-decoration: none;
    border-bottom: 1px solid #feffc580;
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .6s ease-in-out
}

.srvs-pg .title-band__link:hover {
    color: #fff;
    border-color: #fff
}

.srvs-pg .title-band__link svg {
    transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.srvs-pg .title-band__link:hover svg {
    transform: translateX(6px)
}

.srvs-pg .divider-tick {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0 64px;
    height: 24px
}

.srvs-pg .divider-tick__line {
    flex: 1;
    height: 1px;
    background: #1f5d4033;
    position: relative
}

.srvs-pg .divider-tick__line::before,
.srvs-pg .divider-tick__line::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 1px;
    height: 7px;
    background: #1f5d4059
}

.srvs-pg .divider-tick__line::before {
    left: 25%
}

.srvs-pg .divider-tick__line::after {
    left: 75%
}

.srvs-pg .detail-band {
    padding: 64px;
    background: #fff;
    position: relative
}

.srvs-pg .detail-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px
}

.srvs-pg .svc-card {
    background: #f5f0fb;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.srvs-pg .svc-card:hover {
    box-shadow: 1px 12px 48px 0 #a972d11c;
    transform: translateY(-4px)
}

.srvs-pg .svc-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #a972d11f;
    flex-shrink: 0
}

.srvs-pg .svc-card__icon svg {
    width: 22px;
    height: 22px
}

.srvs-pg .svc-card__h3 {
    font-size: 17px;
    line-height: 1.1;
    color: #1a2e1f;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #a972d166;
    text-underline-offset: 4px
}

.srvs-pg .svc-card__p {
    font-size: 14px;
    line-height: 1.75;
    color: #2d3a30;
    margin: 0
}

.srvs-pg .svc-card__tri {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 44px 44px;
    border-color: transparent transparent #a972d11f;
    pointer-events: none
}

.srvs-pg .detail-band__lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start
}

.srvs-pg .checklist-block {
    background: #f7fdf9;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 1px 3px 2px 0 #1f5d4014
}

.srvs-pg .checklist-block__h4 {
    font-size: 17px;
    line-height: 1.1;
    color: #1a2e1f;
    margin: 0 0 8px;
    text-decoration: underline;
    text-decoration-color: #1f5d4059;
    text-underline-offset: 4px
}

.srvs-pg .checklist-block__sub {
    font-size: 14px;
    line-height: 1.75;
    color: #2d3a30;
    margin: 0 0 24px
}

.srvs-pg .progress-bar-wrap {
    margin-bottom: 24px
}

.srvs-pg .progress-bar-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.srvs-pg .progress-bar-label span {
    font-size: 14px;
    line-height: 1.1;
    color: #1F5D40;
    letter-spacing: .06em
}

.srvs-pg .progress-track {
    width: 100%;
    height: 6px;
    background: #1f5d401f;
    border-radius: 6px;
    overflow: hidden
}

.srvs-pg .progress-fill {
    height: 100%;
    background: linear-gradient(127deg, #1F5D40, #A972D1);
    border-radius: 6px;
    transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.srvs-pg .checklist-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0
}

.srvs-pg .checklist-items li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.75;
    color: #2d3a30
}

.srvs-pg .check-icon {
    flex-shrink: 0;
    margin-top: 4px
}

.srvs-pg .check-icon.done svg circle {
    fill: #1F5D40
}

.srvs-pg .check-icon.done svg path {
    stroke: #fff
}

.srvs-pg .check-icon.pending svg circle {
    fill: #1f5d401f
}

.srvs-pg .check-icon.pending svg path {
    stroke: #1f5d4066
}

.srvs-pg .space-block {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.srvs-pg .space-block__bg {
    position: absolute;
    inset: 0;
    background-image: url(/gallery/_MG_4367.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.55);
    z-index: 0;
    transform: scale(1.04)
}

.srvs-pg .space-block__empty {
    flex: 1;
    min-height: 120px
}

.srvs-pg .space-block__caption {
    position: relative;
    z-index: 1;
    padding: 32px;
    background: linear-gradient(0deg, #1f5d40e0 0%, transparent 100%)
}

.srvs-pg .space-block__h4 {
    font-size: 17px;
    line-height: 1.1;
    color: #FEFFC5;
    margin: 0 0 8px;
    text-decoration: underline;
    text-decoration-color: #feffc559;
    text-underline-offset: 4px
}

.srvs-pg .space-block__p {
    font-size: 14px;
    line-height: 1.75;
    color: #ffffffe0;
    margin: 0
}

.srvs-pg .divider-tick-2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 64px;
    height: 24px
}

.srvs-pg .divider-tick-2__line {
    flex: 1;
    height: 1px;
    background: #a972d133;
    position: relative
}

.srvs-pg .divider-tick-2__line::before,
.srvs-pg .divider-tick-2__line::after,
.srvs-pg .divider-tick-2__line .mid-tick {
    content: "";
    position: absolute;
    top: -3px;
    width: 1px;
    height: 7px;
    background: #a972d166
}

.srvs-pg .divider-tick-2__line::before {
    left: 20%
}

.srvs-pg .divider-tick-2__line::after {
    left: 50%
}

.srvs-pg .voices-band {
    padding: 64px;
    background: #fdfbff;
    position: relative
}

.srvs-pg .voices-band__tri-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 64px 64px 0;
    border-color: transparent #a972d114 transparent transparent;
    pointer-events: none
}

.srvs-pg .voices-band__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #1a2e1f;
    margin: 0 0 8px;
    max-width: 520px
}

.srvs-pg .voices-band__intro {
    font-size: 17px;
    line-height: 1.75;
    color: #2d3a30;
    margin: 0 0 32px;
    max-width: 520px
}

.srvs-pg .voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.srvs-pg .voice-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs-pg .voice-card__quote {
    font-size: 14px;
    line-height: 1.75;
    color: #2d3a30;
    margin: 0;
    border-top: 2px solid #A972D1;
    padding-top: 16px
}

.srvs-pg .voice-card__person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.srvs-pg .voice-card__portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0
}

.srvs-pg .voice-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srvs-pg .voice-card__name {
    font-size: 14px;
    line-height: 1.1;
    color: #1a2e1f;
    letter-spacing: .04em
}

.srvs-pg .voice-card__role {
    font-size: 14px;
    line-height: 1.1;
    color: #1F5D40;
    letter-spacing: .06em
}

.srvs-pg .voice-card.no-portrait .voice-card__person {
    padding-left: 0
}

.srvs-pg .voice-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #a972d11f;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srvs-pg .voices-band__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.srvs-pg .voices-band__right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvs-pg .info-tile {
    background: #f5f0fb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 1px 3px 2px 0 #a972d114;
    transition: background .5s ease-in-out
}

.srvs-pg .info-tile:hover {
    background: #ede4f7
}

.srvs-pg .info-tile__icon {
    flex-shrink: 0;
    margin-top: 2px
}

.srvs-pg .info-tile__body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srvs-pg .info-tile__label {
    font-size: 14px;
    line-height: 1.1;
    color: #A972D1;
    letter-spacing: .08em;
    text-transform: uppercase
}

.srvs-pg .info-tile__val {
    font-size: 17px;
    line-height: 1.75;
    color: #1a2e1f
}

.srvs-pg .cta-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.1;
    color: #fff;
    background: #1F5D40;
    border: none;
    border-radius: 6px;
    padding: 16px 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    box-shadow: 1px 7px 22px 0 #1f5d401c
}

.srvs-pg .cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: #A972D1;
    transition: left .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.srvs-pg .cta-btn:hover::after {
    left: 0
}

.srvs-pg .cta-btn span,
.srvs-pg .cta-btn svg {
    position: relative;
    z-index: 1
}

.srvs-pg .cta-btn:focus-visible {
    outline: 3px solid #A972D1;
    outline-offset: 3px
}

@media (max-width: 1200px) {
    .srvs-pg .title-band {
        padding: 48px 32px 40px
    }

    .srvs-pg .title-band__h1 {
        font-size: 40px
    }

    .srvs-pg .detail-band {
        padding: 48px 32px
    }

    .srvs-pg .detail-band__grid {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .voices-band {
        padding: 48px 32px
    }

    .srvs-pg .divider-tick {
        padding: 0 32px
    }

    .srvs-pg .divider-tick-2 {
        padding: 0 32px
    }
}

@media (max-width: 900px) {
    .srvs-pg .title-band {
        padding: 40px 24px 32px
    }

    .srvs-pg .title-band__h1 {
        font-size: 40px;
        max-width: 100%
    }

    .srvs-pg .detail-band {
        padding: 40px 24px
    }

    .srvs-pg .detail-band__grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .srvs-pg .detail-band__lower {
        grid-template-columns: 1fr
    }

    .srvs-pg .voices-band {
        padding: 40px 24px
    }

    .srvs-pg .voices-band__body {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .srvs-pg .voices-grid {
        grid-template-columns: 1fr
    }

    .srvs-pg .divider-tick {
        padding: 0 24px
    }

    .srvs-pg .divider-tick-2 {
        padding: 0 24px
    }
}

@media (max-width: 600px) {
    .srvs-pg .title-band {
        padding: 32px 16px 24px
    }

    .srvs-pg .title-band__h1 {
        font-size: 40px
    }

    .srvs-pg .detail-band {
        padding: 32px 16px
    }

    .srvs-pg .voices-band {
        padding: 32px 16px
    }

    .srvs-pg .divider-tick {
        padding: 0 16px
    }

    .srvs-pg .divider-tick-2 {
        padding: 0 16px
    }

    .srvs-pg .bleed-anim {
        width: 180px;
        height: 180px
    }
}

.ct-us {
    background: #fff;
    overflow-x: clip;
    padding: 0
}

.ct-us .pg-band {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px
}

.ct-us .reach-strip {
    background: linear-gradient(127deg, #1F5D40 0%, #A972D1 100%);
    padding: 64px 0 48px;
    position: relative
}

.ct-us .reach-strip::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #A972D1;
    position: absolute;
    bottom: 0;
    left: 0
}

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

.ct-us .reach-quote {
    font-size: 70px;
    line-height: 1.1;
    color: #feffc52e;
    font-style: italic;
    flex-shrink: 0;
    margin-top: -8px;
    user-select: none;
    pointer-events: none
}

.ct-us .reach-text {
    flex: 1
}

.ct-us .reach-text h1 {
    font-size: 55px;
    line-height: 1.1;
    color: #FEFFC5;
    margin: 0 0 16px;
    letter-spacing: -.5px
}

.ct-us .reach-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #feffc5d9;
    max-width: 560px;
    margin: 0
}

.ct-us .reach-coords {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0
}

.ct-us .coord-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .04em
}

.ct-us .coord-item a {
    color: #FEFFC5;
    text-decoration: none;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .coord-item a:hover {
    color: #fff
}

.ct-us .coord-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ct-us .coord-icon svg {
    width: 18px;
    height: 18px;
    fill: #A972D1
}

.ct-us .form-band {
    background: #fff;
    padding: 64px 0;
    position: relative
}

.ct-us .form-band::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #a972d10a 0%, #1f5d4008 100%);
    pointer-events: none
}

.ct-us .form-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
    position: relative
}

.ct-us .form-aside {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ct-us .aside-label {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .08em;
    color: #A972D1;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ct-us .aside-label svg {
    width: 14px;
    height: 14px;
    fill: #A972D1;
    flex-shrink: 0
}

.ct-us .aside-head {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #A972D1;
    text-underline-offset: 6px
}

.ct-us .aside-body {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 0
}

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

.ct-us .step-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.ct-us .step-num {
    font-size: 40px;
    line-height: 1.1;
    color: #a972d133;
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
    text-align: right
}

.ct-us .step-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    padding-top: 8px
}

.ct-us .step-desc strong {
    color: #1F5D40;
    display: block;
    font-size: 14px;
    letter-spacing: .03em
}

.ct-us .form-card {
    background: #fff;
    border: 1px solid #a972d133;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 1px 7px 22px 0 #a972d11c
}

.ct-us .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ct-us .f-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.ct-us .f-field label {
    font-size: 14px;
    line-height: 1.75;
    color: #222;
    letter-spacing: .03em
}

.ct-us .f-field input[type="text"],
.ct-us .f-field input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #a972d14d;
    border-radius: 6px;
    font-size: 17px;
    line-height: 1.75;
    color: #111;
    background: #fff;
    transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
    box-sizing: border-box
}

.ct-us .f-field input[type="text"]::placeholder,
.ct-us .f-field input[type="tel"]::placeholder {
    color: #999
}

.ct-us .f-field input[type="text"]:focus,
.ct-us .f-field input[type="tel"]:focus {
    border-color: #A972D1;
    box-shadow: 1px 3px 2px 0 #a972d114
}

.ct-us .budget-group {
    margin-bottom: 16px
}

.ct-us .budget-group legend {
    font-size: 14px;
    line-height: 1.75;
    color: #222;
    letter-spacing: .03em;
    margin-bottom: 8px;
    display: block
}

.ct-us .radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.ct-us .radio-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #a972d140;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 14px;
    line-height: 1.75;
    color: #333
}

.ct-us .radio-opt:hover {
    border-color: #A972D1;
    background: #a972d10d
}

.ct-us .radio-opt input[type="radio"] {
    accent-color: #A972D1;
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.ct-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px
}

.ct-us .privacy-row input[type="checkbox"] {
    accent-color: #1F5D40;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px
}

.ct-us .privacy-row span {
    font-size: 14px;
    line-height: 1.75;
    color: #555
}

.ct-us .privacy-row a {
    color: #1F5D40;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .45s ease-in-out
}

.ct-us .privacy-row a:hover {
    color: #A972D1
}

.ct-us .submit-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 32px;
    background: #A972D1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    line-height: 1.75;
    cursor: pointer;
    display: inline-block;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: .02em
}

.ct-us .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #1F5D40;
    border-radius: 6px;
    transition: width .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.ct-us .submit-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto
}

.ct-us .submit-btn span {
    position: relative;
    z-index: 1
}

.ct-us .submit-btn:focus {
    outline: 2px solid #1F5D40;
    outline-offset: 3px
}

.ct-us .info-band {
    background: #FEFFC5;
    padding: 48px 0;
    position: relative
}

.ct-us .info-band::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #1F5D40;
    position: absolute;
    top: 0;
    left: 0
}

.ct-us .info-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.ct-us .info-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ct-us .info-sym {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px
}

.ct-us .info-sym svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.ct-us .info-col h4 {
    font-size: 17px;
    line-height: 1.75;
    color: #1F5D40;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #A972D1;
    text-underline-offset: 4px
}

.ct-us .info-col p,
.ct-us .info-col a {
    font-size: 14px;
    line-height: 1.75;
    color: #222;
    margin: 0;
    text-decoration: none;
    letter-spacing: .02em
}

.ct-us .info-col a:hover {
    color: #A972D1;
    transition: color .45s ease-in-out
}

.ct-us .info-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #1f5d4033;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ct-us .info-note p {
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    margin: 0
}

.ct-us .info-note a {
    color: #1F5D40;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    font-size: 14px;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .info-note a:hover {
    color: #A972D1
}

.ct-us .sym-pair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ct-us .sym-pair svg {
    width: 16px;
    height: 16px;
    fill: #A972D1
}

@media (max-width: 900px) {
    .ct-us .reach-inner {
        flex-direction: column;
        gap: 32px
    }

    .ct-us .reach-quote {
        display: none
    }

    .ct-us .reach-text h1 {
        font-size: 40px
    }

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

    .ct-us .info-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .ct-us .info-note {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

@media (max-width: 600px) {
    .ct-us .pg-band {
        padding: 0 16px
    }

    .ct-us .reach-strip {
        padding: 32px 0
    }

    .ct-us .reach-text h1 {
        font-size: 40px
    }

    .ct-us .f-row {
        grid-template-columns: 1fr
    }

    .ct-us .radio-grid {
        grid-template-columns: 1fr
    }

    .ct-us .info-cols {
        grid-template-columns: 1fr
    }

    .ct-us .form-band {
        padding: 32px 0
    }

    .ct-us .info-band {
        padding: 32px 0
    }

    .ct-us .form-card {
        padding: 24px 16px
    }
}

.ct-us .form-layout:has(.form-card:hover) .form-aside {
    filter: blur(1.5px);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .form-layout:has(.form-aside:hover) .form-card {
    filter: blur(1.5px);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .form-card,
.ct-us .form-aside {
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.abt-us .abt-us__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px
}

.abt-us .divider {
    height: 1px;
    background: #d4d4d4;
    border: none;
    margin: 0
}

.abt-us .title-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px
}

.abt-us .title-block__img-zone {
    position: relative;
    overflow: hidden
}

.abt-us .title-block__img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;
    display: block
}

.abt-us .title-block__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(127deg, #1f5d402e 0%, #a972d11a 100%);
    pointer-events: none
}

.abt-us .title-block__img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fff0 0%, #ffffffb8 100%);
    pointer-events: none
}

.abt-us .title-block__corner-tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-top: 2px solid #A972D1;
    border-left: 2px solid #A972D1;
    border-radius: 6px 0 0 0;
    pointer-events: none
}

.abt-us .title-block__text-zone {
    padding: 64px 48px 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: #fff;
    position: relative
}

.abt-us .title-block__corner-br {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-bottom: 2px solid #1F5D40;
    border-right: 2px solid #1F5D40;
    border-radius: 0 0 6px 0;
    pointer-events: none
}

.abt-us .title-block__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: abt-fadein .6s cubic-bezier(0.22, 1, 0.36, 1) .1s forwards
}

.abt-us .title-block__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #A972D1;
    flex-shrink: 0
}

.abt-us .title-block__eyebrow-label {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: .12em;
    color: #A972D1;
    text-transform: uppercase;
    font-weight: 600
}

.abt-us .title-block__h1 {
    font-size: 55px;
    line-height: 1.1;
    color: #111;
    font-weight: 700;
    margin: 0;
    opacity: 0;
    animation: abt-fadein .65s cubic-bezier(0.22, 1, 0.36, 1) .22s forwards
}

.abt-us .title-block__sub {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 0;
    max-width: 420px;
    opacity: 0;
    animation: abt-fadein .7s cubic-bezier(0.22, 1, 0.36, 1) .38s forwards
}

.abt-us .title-block__founded {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #A972D1;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.1;
    color: #1F5D40;
    font-weight: 600;
    letter-spacing: .06em;
    opacity: 0;
    animation: abt-fadein .55s cubic-bezier(0.22, 1, 0.36, 1) .52s forwards;
    align-self: flex-start
}

@keyframes abt-fadein {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

.abt-us .team-sec {
    padding: 64px 0;
    background: #FEFFC5
}

.abt-us .team-sec__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start
}

.abt-us .team-sec__portrait-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .team-sec__portrait-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 1px 7px 22px 0 #a972d11c
}

.abt-us .team-sec__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt-us .team-sec__name-plate {
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 1px 3px 2px 0 #a972d114
}

.abt-us .team-sec__name {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px
}

.abt-us .team-sec__role {
    font-size: 14px;
    line-height: 1.1;
    color: #1F5D40;
    font-weight: 600;
    letter-spacing: .07em;
    margin: 0
}

.abt-us .team-sec__text-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .team-sec__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    font-weight: 700;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #A972D1;
    text-decoration-thickness: 2px
}

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

.abt-us .team-sec__accent-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.abt-us .team-sec__accent-text {
    font-size: 14px;
    line-height: 1.1;
    color: #1F5D40;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase
}

.abt-us .team-sec__para {
    font-size: 17px;
    line-height: 1.75;
    color: #222;
    margin: 0
}

.abt-us .team-sec__metrics {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 1px 3px 2px 0 #1f5d4014
}

.abt-us .metric-pair {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px
}

.abt-us .metric-pair__before {
    display: flex;
    flex-direction: column;
    align-items: center
}

.abt-us .metric-pair__num {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700
}

.abt-us .metric-pair__num.before {
    color: #bbb
}

.abt-us .metric-pair__num.after {
    color: #1F5D40 !important
}

.abt-us .metric-pair__label {
    font-size: 14px;
    line-height: 1.1;
    color: #555;
    letter-spacing: .05em;
    margin-top: 4px
}

.abt-us .metric-pair__arrow {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
    flex-shrink: 0
}

.abt-us .metric-pair__after {
    display: flex;
    flex-direction: column;
    align-items: center
}

.abt-us .approach-sec {
    padding: 64px 0;
    position: relative
}

.abt-us .approach-sec__bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
}

.abt-us .approach-sec__bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.18) saturate(0.6)
}

.abt-us .approach-sec__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1
}

.abt-us .approach-sec__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    text-align: center
}

.abt-us .approach-sec__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #FEFFC5;
    font-weight: 700;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-color: #A972D1;
    text-decoration-thickness: 2px
}

.abt-us .approach-sec__intro {
    font-size: 17px;
    line-height: 1.75;
    color: #e8e8e8;
    max-width: 560px;
    margin: 0 auto
}

.abt-us .approach-sec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.abt-us .acard {
    background: #ffffff0f;
    border: 1px solid #a972d152;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), background .5s ease-in-out;
    cursor: default
}

.abt-us .acard:hover {
    border-color: #A972D1;
    background: #a972d11a
}

.abt-us .acard__label-slide {
    position: absolute;
    top: 0;
    right: -100%;
    background: #A972D1;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 16px;
    border-radius: 0 0 0 16px;
    transition: right .55s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap
}

.abt-us .acard:hover .acard__label-slide {
    right: 0
}

.abt-us .acard__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.abt-us .acard__h3 {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    color: #FEFFC5;
    margin: 0
}

.abt-us .acard__desc {
    font-size: 14px;
    line-height: 1.75;
    color: #ccc;
    margin: 0
}

.abt-us .approach-sec__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px
}

.abt-us .approach-sec__img-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 12px 48px 0 #a972d11c
}

.abt-us .approach-sec__img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .approach-sec__img-item:hover img {
    transform: scale(1.04)
}

@media (max-width: 1200px) {
    .abt-us .title-block__h1 {
        font-size: 40px
    }

    .abt-us .team-sec__inner {
        grid-template-columns: 280px 1fr;
        gap: 40px
    }

    .abt-us .approach-sec__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 900px) {
    .abt-us .title-block {
        grid-template-columns: 1fr
    }

    .abt-us .title-block__img-zone {
        min-height: 280px
    }

    .abt-us .title-block__text-zone {
        padding: 40px 32px
    }

    .abt-us .title-block__h1 {
        font-size: 40px
    }

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

    .abt-us .team-sec__portrait-col {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px
    }

    .abt-us .team-sec__portrait-wrap {
        width: 160px;
        height: 160px;
        flex-shrink: 0
    }

    .abt-us .team-sec__metrics {
        flex-direction: column;
        gap: 16px
    }

    .abt-us .approach-sec__img-row {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .abt-us .abt-us__inner {
        padding: 0 16px
    }

    .abt-us .title-block__text-zone {
        padding: 32px 16px
    }

    .abt-us .title-block__h1 {
        font-size: 40px
    }

    .abt-us .team-sec {
        padding: 40px 0
    }

    .abt-us .team-sec__inner {
        padding: 0 16px
    }

    .abt-us .team-sec__portrait-col {
        flex-direction: column
    }

    .abt-us .team-sec__portrait-wrap {
        width: 100%;
        height: auto
    }

    .abt-us .team-sec__h2 {
        font-size: 40px
    }

    .abt-us .approach-sec__inner {
        padding: 0 16px
    }

    .abt-us .approach-sec__grid {
        grid-template-columns: 1fr
    }

    .abt-us .approach-sec__h2 {
        font-size: 40px
    }

    .abt-us .metric-pair {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .abt-us .metric-pair__arrow {
        transform: rotate(90deg);
        margin-bottom: 0;
        margin-left: 8px
    }
}

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

.frt .pg-cap {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px
}

.frt .ttl-blk {
    position: relative;
    padding: 64px 32px;
    background: linear-gradient(127deg, #1F5D40 0%, #2d4a5a 35%, #A972D1 70%, #FEFFC5 100%);
    overflow: hidden
}

.frt .ttl-blk__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.frt .ttl-blk__dot {
    position: absolute;
    border-radius: 44px;
    background: #feffc521
}

.frt .ttl-blk__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1
}

.frt .ttl-blk__text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frt .ttl-blk__label {
    font-size: 14px;
    letter-spacing: .12em;
    color: #FEFFC5;
    text-transform: uppercase;
    line-height: 1.75
}

.frt .ttl-blk__h1 {
    font-size: 55px;
    line-height: 1.1;
    color: #fff;
    margin: 0
}

.frt .ttl-blk__sub {
    font-size: 17px;
    line-height: 1.75;
    color: #ffffffe0;
    max-width: 480px
}

.frt .ttl-blk__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.frt .btn-prim {
    display: inline-block;
    padding: 16px 32px;
    font-size: 17px;
    line-height: 1.1;
    background: #A972D1;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.frt .btn-prim::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #1F5D40;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.frt .btn-prim:hover::after {
    transform: translateX(0)
}

.frt .btn-prim span {
    position: relative;
    z-index: 1
}

.frt .btn-sec {
    display: inline-block;
    padding: 16px 32px;
    font-size: 17px;
    line-height: 1.1;
    background: transparent;
    color: #fff;
    border: 2px solid #ffffff80;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .45s ease-in-out, color .45s ease-in-out
}

.frt .btn-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff1f;
    transform: translateX(100%);
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.frt .btn-sec:hover::after {
    transform: translateX(0)
}

.frt .btn-sec span {
    position: relative;
    z-index: 1
}

.frt .ttl-blk__img-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frt .ttl-blk__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 12px 48px 0 #a972d11c
}

.frt .ttl-blk__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.frt .ttl-blk__stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.frt .ttl-blk__stat {
    flex: 1;
    background: #ffffff1f;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #feffc540
}

.frt .ttl-blk__stat-num {
    font-size: 40px;
    line-height: 1.1;
    color: #FEFFC5;
    display: block
}

.frt .ttl-blk__stat-lbl {
    font-size: 14px;
    line-height: 1.75;
    color: #fffc
}

.frt .sec-support {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.frt .sec-support::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, #a972d10a 0%, transparent 70%);
    pointer-events: none
}

.frt .sec-support__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start
}

.frt .sec-support__aside {
    position: sticky;
    top: 32px
}

.frt .sec-support__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 7px 22px 0 #1f5d401c;
    margin-bottom: 24px
}

.frt .sec-support__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.frt .sec-support__num {
    font-size: 70px;
    line-height: 1.1;
    color: #a972d126;
    display: block
}

.frt .sec-support__body {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.frt .sec-support__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #A972D1;
    display: inline-block
}

.frt .sec-support__lead {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    text-align: center;
    max-width: 560px;
    margin: 0 auto
}

.frt .support-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frt .support-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #a972d12e;
    background: #fff;
    box-shadow: 1px 3px 2px 0 #a972d114;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.frt .support-item:hover {
    box-shadow: 1px 7px 22px 0 #a972d11c;
    border-color: #A972D1
}

.frt .support-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(127deg, #1F5D40, #A972D1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.frt .support-item__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.frt .support-item__h4 {
    font-size: 17px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 8px
}

.frt .support-item__p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0
}

.frt .sec-value {
    padding: 64px 32px;
    background: #f4f0fa;
    position: relative
}

.frt .sec-value__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 60%, #a972d10f 100%);
    pointer-events: none
}

.frt .sec-value__inner {
    max-width: 1366px;
    margin: 0 auto
}

.frt .sec-value__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px
}

.frt .sec-value__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1F5D40;
    display: inline-block
}

.frt .sec-value__p {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0
}

.frt .sec-value__img-wrap {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 12px 48px 0 #1f5d401c
}

.frt .sec-value__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

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

.frt .glossary__item {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    border-top: 3px solid #A972D1;
    box-shadow: 1px 3px 2px 0 #a972d114;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.frt .glossary__item:hover {
    box-shadow: 1px 7px 22px 0 #a972d11c
}

.frt .glossary__term {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1F5D40;
    display: block;
    margin-bottom: 8px;
    line-height: 1.1
}

.frt .glossary__def {
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    margin: 0
}

.frt .sec-exp {
    padding: 64px 32px;
    background: #fff
}

.frt .sec-exp__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 64px;
    align-items: start
}

.frt .sec-exp__portrait-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center
}

.frt .sec-exp__portrait-wrap {
    width: 120px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 1px 7px 22px 0 #1f5d401c;
    flex-shrink: 0
}

.frt .sec-exp__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.frt .sec-exp__name {
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    text-align: center
}

.frt .sec-exp__role {
    font-size: 14px;
    line-height: 1.1;
    color: #A972D1;
    text-align: center;
    letter-spacing: .08em
}

.frt .sec-exp__body {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frt .sec-exp__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #A972D1;
    display: inline-block
}

.frt .sec-exp__quote {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    border-radius: 16px;
    background: #f4f0fa;
    padding: 32px;
    position: relative;
    box-shadow: 1px 3px 2px 0 #a972d114
}

.frt .sec-exp__quote-mark {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 16px
}

.frt .sec-exp__quote-mark svg {
    width: 32px;
    height: 32px
}

.frt .sec-exp__p {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin: 0
}

.frt .sec-exp__corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 0 16px 0 28px;
    background: linear-gradient(127deg, #A972D1, #1F5D40)
}

.frt .sec-hes {
    padding: 64px 32px;
    background: linear-gradient(127deg, #1F5D40 0%, #2a3d4f 100%);
    position: relative
}

.frt .sec-hes__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, #0000002e 0%, transparent 70%);
    pointer-events: none
}

.frt .sec-hes__inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.frt .sec-hes__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #FEFFC5;
    margin: 0 0 32px;
    padding-bottom: 8px;
    border-bottom: 2px solid #feffc566;
    display: inline-block
}

.frt .sec-hes__lead {
    font-size: 17px;
    line-height: 1.75;
    color: #ffffffe6;
    margin-bottom: 32px
}

.frt .hes-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frt .hes-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff12;
    border: 1px solid #feffc526;
    transition: background .5s ease-in-out, border-color .5s ease-in-out
}

.frt .hes-item:hover {
    background: #ffffff1f;
    border-color: #feffc54d
}

.frt .hes-item__q {
    font-size: 17px;
    line-height: 1.75;
    color: #FEFFC5;
    margin: 0
}

.frt .hes-item__a {
    font-size: 14px;
    line-height: 1.75;
    color: #ffffffd1;
    margin: 0
}

.frt .sec-approach {
    padding: 64px 32px;
    background: #f9f7ff;
    position: relative
}

.frt .sec-approach__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, #1f5d400d 0%, transparent 60%);
    pointer-events: none
}

.frt .sec-approach__inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.frt .sec-approach__top {
    margin-bottom: 64px;
    text-align: center
}

.frt .sec-approach__h2 {
    font-size: 40px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #A972D1;
    display: inline-block
}

.frt .sec-approach__lead {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    max-width: 640px;
    margin: 16px auto 0;
    text-align: left
}

.frt .approach-cols {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 64px;
    align-items: start
}

.frt .approach-accent {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.frt .approach-accent__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 7px 22px 0 #a972d11c
}

.frt .approach-accent__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.frt .approach-accent__tag {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1F5D40;
    line-height: 1.1
}

.frt .approach-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.frt .approach-step {
    border-radius: 16px;
    padding: 24px;
    background: #fff;
    box-shadow: 1px 3px 2px 0 #a972d114;
    border: 1px solid #a972d11f;
    position: relative;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.frt .approach-step:hover {
    box-shadow: 1px 7px 22px 0 #a972d11c
}

.frt .approach-step__corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 16px 0 28px 0;
    background: linear-gradient(127deg, #A972D1, #1F5D40);
    opacity: .85
}

.frt .approach-step__num {
    font-size: 40px;
    line-height: 1.1;
    color: #a972d12e;
    margin-bottom: 8px;
    display: block
}

.frt .approach-step__h4 {
    font-size: 17px;
    line-height: 1.1;
    color: #111;
    margin: 0 0 8px
}

.frt .approach-step__p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin: 0
}

.frt .bg-flicker {
    animation: bgflicker 7s ease-in-out infinite
}

@keyframes bgflicker {

    0%,
    100% {
        opacity: 1
    }

    30% {
        opacity: .97
    }

    55% {
        opacity: .99
    }

    75% {
        opacity: .96
    }
}

@media (max-width: 1200px) {
    .frt .ttl-blk__h1 {
        font-size: 40px
    }

    .frt .glossary {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 900px) {
    .frt .ttl-blk__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frt .ttl-blk__h1 {
        font-size: 40px
    }

    .frt .sec-support__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frt .sec-support__aside {
        position: static
    }

    .frt .sec-value__top {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frt .sec-exp__inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frt .sec-exp__portrait-col {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px
    }

    .frt .hes-item {
        grid-template-columns: 1fr;
        gap: 8px
    }

    .frt .approach-cols {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frt .approach-steps {
        grid-template-columns: 1fr
    }
}

@media (max-width: 600px) {
    .frt .ttl-blk {
        padding: 32px 16px
    }

    .frt .ttl-blk__h1 {
        font-size: 40px
    }

    .frt .pg-cap {
        padding-left: 16px;
        padding-right: 16px
    }

    .frt .sec-support,
    .frt .sec-value,
    .frt .sec-exp,
    .frt .sec-hes,
    .frt .sec-approach {
        padding: 32px 16px
    }

    .frt .glossary {
        grid-template-columns: 1fr
    }

    .frt .ttl-blk__stat-row {
        flex-direction: column
    }

    .frt .approach-steps {
        grid-template-columns: 1fr
    }

    .frt .ttl-blk__actions {
        flex-direction: column
    }
}

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

.succ-page .succ-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border: 1.5px solid #A972D1;
    border-radius: 16px;
    padding: 64px 32px 48px;
    box-shadow: 1px 7px 22px 0 #a972d11c;
    text-align: center
}

.succ-page .succ-card .succ-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    width: 72px;
    height: 72px
}

.succ-page .succ-card .succ-icon svg {
    width: 72px;
    height: 72px
}

.succ-page .succ-card .succ-heading {
    font-size: 40px;
    line-height: 1.1;
    color: #1F5D40;
    margin: 0 0 16px;
    letter-spacing: -.5px;
    text-decoration: underline;
    text-decoration-color: #A972D1;
    text-underline-offset: 6px
}

.succ-page .succ-card .succ-body {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0 0 32px
}

.succ-page .succ-card .succ-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(127deg, #1F5D40, #A972D1);
    border-radius: 6px;
    margin: 0 auto 32px
}

.succ-page .succ-card .succ-meta {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    letter-spacing: .04em;
    margin: 0 0 32px
}

.succ-page .succ-card .succ-meta strong {
    color: #1F5D40
}

.succ-page .succ-card .succ-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    background: #A972D1;
    color: #fff;
    font-size: 17px;
    line-height: 1.1;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0
}

.succ-page .succ-card .succ-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #1F5D40;
    transform: translateX(100%);
    transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
    border-radius: 6px
}

.succ-page .succ-card .succ-btn:hover::after {
    transform: translateX(0)
}

.succ-page .succ-card .succ-btn:focus {
    outline: 2px solid #1F5D40;
    outline-offset: 3px
}

.succ-page .succ-note {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    letter-spacing: .03em;
    text-align: center
}

.succ-page .succ-note a {
    color: #A972D1;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .45s ease-in-out
}

.succ-page .succ-note a:hover {
    color: #1F5D40
}

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

    .succ-page .succ-card {
        padding: 32px 16px
    }

    .succ-page .succ-card .succ-heading {
        font-size: 40px
    }
}