@import "https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700&display=swap";

html {
    scroll-behavior: auto
}

body {
    margin: 0
}

.hd-plate,
.hd-plate *,
.ft-plate,
.ft-plate * {
    box-sizing: border-box
}

.hd-plate {
    background: linear-gradient(135deg, #F4FAFD 0%, #fff 100%);
    border-bottom: 2px solid #23258b1f;
    box-shadow: -1px 3px 2px 0 #23258b14;
    padding: 24px 48px;
    position: relative
}

.hd-plate__deck {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.brand-pod {
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid #F20606;
    background: #ffffffb3;
    border-radius: 2px;
    box-shadow: -1px 6px 20px 0 #23258b1c;
    padding: 8px 24px
}

.brand-pod__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block
}

.brand-pod__label {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #23258B;
    margin: 0;
    letter-spacing: .02em
}

.nav-deck {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.nav-deck__link {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    color: #23258B;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 24px;
    background: #ffffff80;
    border: 2px solid transparent;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.nav-deck__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #f206061a, transparent);
    transition: left .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.nav-deck__link:hover {
    background: #f206060f;
    border-color: #F20606;
    color: #F20606;
    box-shadow: -1px 3px 2px 0 #f2060614
}

.nav-deck__link:hover::before {
    left: 100%
}

.nav-deck__link:focus {
    outline: none;
    box-shadow: 0 0 0 4px #f2060640;
    border-color: #F20606
}

.nav-deck__link:active {
    transform: scale(0.97);
    transition: transform .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft-plate {
    background: linear-gradient(165deg, #23258B 0%, #1a1d6b 50%, #23258B 100%);
    color: #F4FAFD;
    padding: 48px 48px 24px;
    position: relative;
    overflow: hidden
}

.ft-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #F20606 0%, #23258B 50%, #F20606 100%)
}

.ft-plate__deck {
    max-width: 1440px;
    margin: 0 auto
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px
}

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

.ft-pod__heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f2060680;
    letter-spacing: .01em
}

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

.ft-pod__link {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4FAFD;
    text-decoration: none;
    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1), padding-left .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.ft-pod__link:hover {
    color: #fff;
    border-bottom-color: #F20606;
    padding-left: 8px
}

.ft-pod__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #f2060666;
    border-radius: 2px
}

.ft-pod__text {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4FAFD;
    margin: 0
}

.ft-pod__text--bold {
    font-weight: 500;
    color: #fff
}

.ft-pod__anchor {
    color: #F4FAFD;
    text-decoration: underline;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft-pod__anchor:hover {
    color: #fff;
    text-decoration-color: #F20606
}

.ft-pod__anchor:focus {
    outline: none;
    box-shadow: 0 0 0 3px #f2060666;
    border-radius: 2px
}

.brand-ft {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: #ffffff0d;
    border-radius: 5px;
    border-left: 5px solid #F20606
}

.brand-ft__logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    background: #ffffffe6;
    padding: 8px;
    border-radius: 2px;
    box-shadow: -1px 3px 2px 0 #f2060614
}

.brand-ft__tagline {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4FAFD;
    margin: 0
}

.ft-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 2px solid #ffffff1a
}

.ft-meta__copy {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4FAFD;
    margin: 0
}

.ft-meta__legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.ft-meta__link {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #F4FAFD;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ft-meta__link:hover {
    color: #fff;
    border-bottom-color: #F20606
}

.ft-meta__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #f2060666;
    border-radius: 2px
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, #fff 0%, #F4FAFD 100%);
    border-top: 2px solid #23258B;
    box-shadow: -1px 10px 52px 0 #23258b24;
    padding: 24px 48px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .28s cubic-bezier(0.0, 0, 0.2, 1), transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

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

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

.consent-bar__text-pod {
    flex: 1;
    min-width: 280px
}

.consent-bar__desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #1a1a2e;
    margin: 0 0 8px
}

.consent-bar__headline {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: #23258B;
    margin: 0
}

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

.consent-bar__btn {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    padding: 16px 24px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .15s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.consent-bar__btn--primary {
    background: #F20606;
    color: #fff;
    box-shadow: -1px 3px 2px 0 #f2060614
}

.consent-bar__btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #fff3;
    transform: translate(-50%, -50%);
    transition: width .26s cubic-bezier(0.0, 0, 0.2, 1), height .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.consent-bar__btn--primary:hover {
    background: #d10505;
    box-shadow: -1px 6px 20px 0 #f206061c
}

.consent-bar__btn--primary:hover::before {
    width: 300px;
    height: 300px
}

.consent-bar__btn--primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px #f206064d
}

.consent-bar__btn--primary:active {
    transform: scale(0.96)
}

.consent-bar__btn--secondary {
    background: transparent;
    color: #23258B;
    text-decoration: underline;
    padding: 16px
}

.consent-bar__btn--secondary:hover {
    color: #F20606;
    text-decoration-color: #F20606;
    background: #f206060d
}

.consent-bar__btn--secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px #23258b4d;
    border-radius: 2px
}

.consent-bar__btn--secondary:active {
    transform: scale(0.97)
}

.consent-bar__policy {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: #23258B;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-bar__policy:hover {
    color: #F20606;
    border-bottom-color: #F20606
}

.consent-bar__policy:focus {
    outline: none;
    box-shadow: 0 0 0 3px #23258b4d;
    border-radius: 2px
}

.consent-bar__toggle-pod {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #23258b0d;
    border-radius: 5px;
    border: 2px solid transparent;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-bar__toggle-pod:focus-within {
    border-color: #23258B
}

.consent-bar__toggle-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
    color: #23258B;
    cursor: pointer
}

.consent-bar__toggle {
    width: 48px;
    height: 24px;
    background: #23258b33;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0
}

.consent-bar__toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: -1px 3px 2px 0 #23258b14;
    transition: left .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.consent-bar__toggle.active {
    background: #F20606
}

.consent-bar__toggle.active::after {
    left: 26px
}

.consent-bar__toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px #23258b4d
}

@media (max-width: 1024px) {
    .hd-plate {
        padding: 24px
    }

    .hd-plate__deck {
        gap: 24px
    }

    .nav-deck {
        gap: 8px
    }

    .nav-deck__link {
        padding: 16px;
        font-size: 17px
    }

    .ft-plate {
        padding: 48px 24px 24px
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .consent-bar {
        padding: 24px
    }

    .consent-bar__deck {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start
    }

    .consent-bar__actions {
        width: 100%;
        flex-direction: column
    }

    .consent-bar__btn {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 640px) {
    .hd-plate {
        padding: 16px
    }

    .hd-plate__deck {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .brand-pod {
        padding-left: 16px;
        padding-right: 16px;
        gap: 8px
    }

    .brand-pod__logo {
        width: 48px;
        height: 48px
    }

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

    .nav-deck {
        width: 100%;
        flex-direction: column;
        align-items: stretch
    }

    .nav-deck__link {
        text-align: center;
        width: 100%
    }

    .ft-plate {
        padding: 48px 16px 24px
    }

    .ft-grid {
        gap: 48px
    }

    .ft-pod__heading {
        font-size: 28px
    }

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

    .ft-meta__legal {
        flex-direction: column;
        gap: 16px
    }

    .consent-bar {
        padding: 16px
    }

    .consent-bar__desc {
        font-size: 17px
    }

    .consent-bar__btn {
        font-size: 17px
    }
}

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

.policy-info h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 48px;
    color: #23258B
}

.policy-info h2 {
    font-size: 28px;
    line-height: 1.35;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #23258B
}

.policy-info h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-top: 24px;
    margin-bottom: 16px;
    color: #23258B;
    text-transform: uppercase;
    letter-spacing: .05em
}

.policy-info p {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 16px;
    color: #1a1a1a
}

.policy-info ul,
.policy-info ol {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
    padding-left: 24px;
    color: #1a1a1a
}

.policy-info li {
    margin-bottom: 8px
}

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

.policy-info strong,
.policy-info b {
    font-weight: 600;
    color: #23258B
}

.policy-info em,
.policy-info i {
    font-style: italic
}

.policy-info a {
    color: #F20606;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-info a:hover {
    border-bottom-color: #F20606
}

.policy-info a:focus {
    outline: 2px solid #F20606;
    outline-offset: 2px;
    border-radius: 2px
}

.policy-info div {
    margin-bottom: 16px
}

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

    .policy-info h1 {
        font-size: 28px;
        margin-bottom: 24px
    }

    .policy-info h2 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 16px
    }

    .policy-info h3 {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 8px
    }

    .policy-info p,
    .policy-info ul,
    .policy-info ol {
        font-size: 14px
    }

    .policy-info ul,
    .policy-info ol {
        padding-left: 16px
    }
}

.svc {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    position: relative
}

.svc__title-zone {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 48px 24px;
    gap: 48px;
    position: relative;
    background: linear-gradient(to left, #23258B, #F20606);
    overflow: hidden
}

.svc__title-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f4fafdf2;
    z-index: 1;
    animation: svc-overlay-pulse 8s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes svc-overlay-pulse {

    0%,
    100% {
        opacity: .95
    }

    50% {
        opacity: .85
    }
}

.svc__title-content {
    flex: 1;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 48px 24px 24px
}

.svc__title-deco {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 280px;
    line-height: 1;
    color: #23258b0f;
    pointer-events: none;
    user-select: none
}

.svc__title-content h1 {
    font-size: 54px;
    line-height: 1.1;
    color: #23258B;
    margin: 0 0 24px;
    position: relative
}

.svc__title-img-wrap {
    width: 340px;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
    border-radius: 5px;
    overflow: hidden
}

.svc__title-img-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.svc__title-img-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, #f2060666, transparent);
    pointer-events: none
}

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

.svc__zigzag-top {
    width: 100%;
    height: 24px;
    position: relative;
    background: #fff
}

.svc__zigzag-top svg {
    width: 100%;
    height: 100%;
    display: block
}

.svc__offerings {
    padding: 48px 24px;
    background: #F4FAFD;
    position: relative
}

.svc__offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto
}

.svc__offerings h2 {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(to left, #23258B, #F20606);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 48px;
    text-align: center
}

.svc__offer-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 #f2060614 -1px 6px 20px 0 #f206061c;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.svc__offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #F20606, #23258B);
    transition: height .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.svc__offer-card:hover {
    transform: translateY(-8px);
    box-shadow: -1px 10px 52px 0 #f2060624
}

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

.svc__offer-card h3 {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    margin: 0 0 16px
}

.svc__offer-card p {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.svc__offer-card p::first-letter {
    font-size: 22px;
    color: #F20606;
    text-transform: uppercase
}

.svc__process {
    padding: 48px 24px 48px 48px;
    background: #fff;
    position: relative
}

.svc__process-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto
}

.svc__process-text {
    flex: 0 0 420px
}

.svc__process h2 {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(to left, #F20606, #23258B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px
}

.svc__process-intro {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 24px
}

.svc__process-intro::first-letter {
    font-size: 22px;
    color: #F20606;
    text-transform: uppercase
}

.svc__process-pullquote {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    margin: 24px 0 0;
    padding: 16px 0 16px 24px;
    border-left: none;
    position: relative
}

.svc__process-pullquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #F20606, #23258B);
    border-radius: 2px
}

.svc__process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.svc__step {
    background: #F4FAFD;
    padding: 24px;
    border-radius: 5px;
    position: relative;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc__step:hover {
    background: #f4fafdb3
}

.svc__step-num {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 70px;
    line-height: 1;
    color: #f206061a;
    font-weight: 700
}

.svc__step h4 {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    margin: 0 0 8px
}

.svc__step p {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    max-width: 85%
}

.svc__pencil-divider {
    width: 100%;
    height: 32px;
    position: relative
}

.svc__pencil-divider svg {
    width: 100%;
    height: 100%;
    display: block
}

.svc__faq {
    padding: 48px 24px;
    background: #23258B;
    position: relative
}

.svc__faq-inner {
    max-width: 900px;
    margin: 0 auto
}

.svc__faq h2 {
    font-size: 54px;
    line-height: 1.1;
    color: #F4FAFD;
    margin: 0 0 48px;
    text-align: center
}

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

.svc__faq-item {
    background: #f4fafd14;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 0 #ffffff1a inset 0 -1px 0 0 #0003
}

.svc__faq-toggle {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1);
    color: #F4FAFD;
    font-size: 28px;
    line-height: 1.35;
    position: relative
}

.svc__faq-toggle:hover {
    background: #f4fafd0d
}

.svc__faq-toggle:focus {
    outline: 2px solid #F20606;
    outline-offset: -2px
}

.svc__faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    position: relative;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.svc__faq-icon::before,
.svc__faq-icon::after {
    content: '';
    position: absolute;
    background: #F20606;
    border-radius: 2px;
    transition: transform .25s cubic-bezier(0.0, 0, 0.2, 1), opacity .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.svc__faq-icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.svc__faq-icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%)
}

.svc__faq-item.active .svc__faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0
}

.svc__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.svc__faq-item.active .svc__faq-answer {
    max-height: 500px
}

.svc__faq-answer-content {
    padding: 0 24px 24px;
    font-size: 17px;
    line-height: 1.55;
    color: #F4FAFD
}

.svc__zigzag-bottom {
    width: 100%;
    height: 24px;
    position: relative;
    background: #fff
}

.svc__zigzag-bottom svg {
    width: 100%;
    height: 100%;
    display: block
}

@media (max-width: 1024px) {
    .svc__title-zone {
        flex-direction: column;
        gap: 24px
    }

    .svc__title-img-wrap {
        width: 100%;
        height: 320px
    }

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

    .svc__process-layout {
        flex-direction: column
    }

    .svc__process-text {
        flex: 1
    }

    .svc__process-pullquote {
        margin-top: 16px
    }
}

@media (max-width: 768px) {
    .svc__title-zone {
        padding: 24px 16px
    }

    .svc__title-content {
        padding: 16px
    }

    .svc__title-content h1 {
        font-size: 28px
    }

    .svc__title-deco {
        font-size: 180px;
        left: 8px;
        top: 8px
    }

    .svc__offerings {
        padding: 24px 16px
    }

    .svc__offerings h2 {
        font-size: 28px;
        margin-bottom: 24px
    }

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

    .svc__offer-card {
        padding: 16px
    }

    .svc__offer-card h3 {
        font-size: 17px
    }

    .svc__offer-card p {
        font-size: 14px
    }

    .svc__process {
        padding: 24px 16px
    }

    .svc__process-layout {
        gap: 24px
    }

    .svc__process h2 {
        font-size: 28px
    }

    .svc__process-intro {
        font-size: 14px
    }

    .svc__process-pullquote {
        font-size: 17px;
        padding-left: 16px
    }

    .svc__step {
        padding: 16px
    }

    .svc__step-num {
        font-size: 54px;
        right: 16px;
        top: 16px
    }

    .svc__step h4 {
        font-size: 17px
    }

    .svc__step p {
        font-size: 14px;
        max-width: 100%
    }

    .svc__faq {
        padding: 24px 16px
    }

    .svc__faq h2 {
        font-size: 28px;
        margin-bottom: 24px
    }

    .svc__faq-toggle {
        font-size: 17px;
        padding: 16px;
        gap: 16px
    }

    .svc__faq-icon {
        width: 24px;
        height: 24px
    }

    .svc__faq-answer-content {
        padding: 0 16px 16px;
        font-size: 14px
    }
}

.contact__pg {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff
}

.contact__pg .intro__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden
}

.contact__pg .intro__split::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #F20606 0%, #23258B 100%);
    opacity: .12;
    z-index: 1
}

.contact__pg .intro__left {
    background: #F4FAFD;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.contact__pg .intro__left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #F20606;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%)
}

.contact__pg .intro__right {
    background: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.contact__pg .intro__right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, #23258B 0%, transparent 100%)
}

.contact__pg .intro__h1 {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(270deg, #23258B 0%, #F20606 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px;
    font-weight: 600
}

.contact__pg .intro__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.contact__pg .intro__desc::first-letter {
    font-size: 28px;
    color: #F20606;
    font-weight: 600
}

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

.contact__pg .intro__stat {
    display: flex;
    align-items: baseline;
    gap: 8px
}

.contact__pg .intro__num {
    font-size: 54px;
    line-height: 1.1;
    color: #23258B;
    font-weight: 600;
    position: relative;
    animation: contact__pg__pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes contact__pg__pulse {

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

    50% {
        transform: scale(1.08)
    }
}

.contact__pg .intro__label {
    font-size: 14px;
    line-height: 1.35;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact__pg .form__zone {
    background: #fff;
    padding: 48px 24px;
    position: relative
}

.contact__pg .form__zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, #23258b04 8px, #23258b04 16px), repeating-linear-gradient(-45deg, transparent, transparent 8px, #f2060604 8px, #f2060604 16px);
    pointer-events: none;
    z-index: 0
}

.contact__pg .form__container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.contact__pg .form__header {
    margin: 0 0 48px
}

.contact__pg .form__h2 {
    font-size: 28px;
    line-height: 1.1;
    background: linear-gradient(270deg, #F20606 0%, #23258B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
    font-weight: 600
}

.contact__pg .form__intro {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

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

.contact__pg .form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

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

.contact__pg .form__field--full {
    grid-column: 1 / -1
}

.contact__pg .form__label {
    font-size: 14px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em
}

.contact__pg .form__input {
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    font-size: 17px;
    line-height: 1.35;
    color: #2a2a2a;
    background: #fff;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none
}

.contact__pg .form__input::placeholder {
    color: #9a9a9a;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__pg .form__input:focus::placeholder {
    opacity: 0
}

.contact__pg .form__input:focus {
    border-color: #23258B;
    box-shadow: -1px 3px 2px 0 #23258b14 -1px 6px 20px 0 #23258b1c
}

.contact__pg .form__input:hover:not(:focus) {
    border-color: #d0d0d0
}

.contact__pg .form__select {
    padding: 16px;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    font-size: 17px;
    line-height: 1.35;
    color: #2a2a2a;
    background: #fff;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2323258B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px
}

.contact__pg .form__select:focus {
    border-color: #F20606;
    box-shadow: -1px 3px 2px 0 #f2060614 -1px 6px 20px 0 #f206061c
}

.contact__pg .form__select:hover:not(:focus) {
    border-color: #d0d0d0
}

.contact__pg .form__time {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.contact__pg .form__time-option {
    position: relative
}

.contact__pg .form__time-input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.contact__pg .form__time-label {
    display: block;
    padding: 16px 8px;
    border: 2px solid #e8e8e8;
    border-radius: 2px;
    font-size: 14px;
    line-height: 1.35;
    color: #5a5a5a;
    text-align: center;
    cursor: pointer;
    transition: all .2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff
}

.contact__pg .form__time-label:hover {
    border-color: #23258B;
    background: #F4FAFD
}

.contact__pg .form__time-input:checked+.form__time-label {
    border-color: #F20606;
    background: #F20606;
    color: #fff;
    font-weight: 600;
    box-shadow: -1px 3px 2px 0 #f2060614 -1px 6px 20px 0 #f206061c
}

.contact__pg .form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    background: #F4FAFD;
    border-radius: 2px;
    border: 1px solid #e0e0e0
}

.contact__pg .form__checkbox-input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    cursor: pointer;
    accent-color: #F20606
}

.contact__pg .form__privacy-text {
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0
}

.contact__pg .form__privacy-link {
    color: #23258B;
    text-decoration: underline;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__pg .form__privacy-link:hover {
    color: #F20606
}

.contact__pg .form__submit {
    padding: 16px 48px;
    background: #F20606;
    color: #fff;
    border: 2px solid #F20606;
    border-radius: 5px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    cursor: pointer;
    transition: all .24s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: -1px 3px 2px 0 #f2060614
}

.contact__pg .form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #23258B;
    transition: width .28s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.contact__pg .form__submit:hover::before {
    width: 100%
}

.contact__pg .form__submit:hover {
    border-color: #23258B;
    box-shadow: -1px 6px 20px 0 #23258b1c -1px 10px 52px 0 #23258b24
}

.contact__pg .form__submit:active {
    transform: scale(0.96)
}

.contact__pg .form__submit span {
    position: relative;
    z-index: 1
}

.contact__pg .details__asymmetric {
    background: #fff;
    padding: 48px 24px
}

.contact__pg .details__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px
}

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

.contact__pg .details__h2 {
    font-size: 28px;
    line-height: 1.1;
    background: linear-gradient(270deg, #23258B 0%, #F20606 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 600
}

.contact__pg .details__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact__pg .details__card {
    padding: 24px;
    background: #F4FAFD;
    border-radius: 5px;
    border: 1px solid #e8eef2;
    transition: all .26s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.contact__pg .details__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F20606 0%, #23258B 100%);
    transition: height .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact__pg .details__card:hover::before {
    height: 100%
}

.contact__pg .details__card:hover {
    box-shadow: -1px 6px 20px 0 #23258b1c;
    transform: translateY(-2px)
}

.contact__pg .details__card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F20606 0%, #23258B 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px
}

.contact__pg .details__card-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.contact__pg .details__card-h3 {
    font-size: 17px;
    line-height: 1.35;
    color: #23258B;
    margin: 0 0 8px;
    font-weight: 600
}

.contact__pg .details__card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.contact__pg .details__card-link {
    color: #F20606;
    text-decoration: none;
    transition: text-decoration .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__pg .details__card-link:hover {
    text-decoration: underline
}

.contact__pg .details__minimal {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0
}

.contact__pg .details__quote {
    padding: 24px;
    background: #fff;
    border-radius: 2px;
    border-top: 3px solid #F20606;
    box-shadow: -1px 3px 2px 0 #23258b14;
    position: relative
}

.contact__pg .details__quote::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F20606 0%, #23258B 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    opacity: .12
}

.contact__pg .details__quote-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1
}

.contact__pg .details__hours {
    padding: 24px;
    background: #F4FAFD;
    border-radius: 5px;
    border: 1px solid #e8eef2
}

.contact__pg .details__hours-h3 {
    font-size: 17px;
    line-height: 1.35;
    color: #23258B;
    margin: 0 0 16px;
    font-weight: 600
}

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

.contact__pg .details__hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.35;
    color: #5a5a5a
}

.contact__pg .details__hours-day {
    font-weight: 600;
    color: #2a2a2a
}

.contact__pg .details__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #23258B 8%, #F20606 92%, transparent 100%);
    margin: 24px 0;
    opacity: .2
}

@media (max-width: 1024px) {
    .contact__pg .intro__split {
        grid-template-columns: 1fr
    }

    .contact__pg .intro__split::before {
        display: none
    }

    .contact__pg .intro__left::after {
        display: none
    }

    .contact__pg .intro__right::before {
        width: 100%
    }

    .contact__pg .details__grid {
        grid-template-columns: 1fr
    }

    .contact__pg .details__cards {
        grid-template-columns: 1fr
    }

    .contact__pg .form__row {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .contact__pg .intro__h1 {
        font-size: 28px
    }

    .contact__pg .intro__num {
        font-size: 28px
    }

    .contact__pg .intro__left,
    .contact__pg .intro__right {
        padding: 24px
    }

    .contact__pg .form__zone {
        padding: 24px 16px
    }

    .contact__pg .form__h2 {
        font-size: 17px
    }

    .contact__pg .details__asymmetric {
        padding: 24px 16px
    }

    .contact__pg .details__h2 {
        font-size: 17px
    }

    .contact__pg .form__time {
        grid-template-columns: 1fr
    }
}

.deb {
    max-width: 1440px;
    margin: 0 auto;
    background: #FFF
}

.deb__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 96px
}

.deb__intro-left {
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 48px;
    padding-right: 48px;
    position: relative
}

.deb__intro-right {
    background: #F4FAFD;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 48px;
    padding-right: 48px;
    position: relative
}

.deb__intro-pattern {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff26;
    border-radius: 2px
}

.deb__intro-left .deb__intro-pattern:nth-child(1) {
    top: 48px;
    left: 48px
}

.deb__intro-left .deb__intro-pattern:nth-child(2) {
    top: 48px;
    left: 80px
}

.deb__intro-left .deb__intro-pattern:nth-child(3) {
    top: 48px;
    left: 112px
}

.deb__intro-left .deb__intro-pattern:nth-child(4) {
    bottom: 48px;
    right: 48px
}

.deb__intro-left .deb__intro-pattern:nth-child(5) {
    bottom: 48px;
    right: 80px
}

.deb__intro-right .deb__intro-pattern {
    border-color: #23258b14
}

.deb__intro-right .deb__intro-pattern:nth-child(1) {
    top: 48px;
    right: 48px
}

.deb__intro-right .deb__intro-pattern:nth-child(2) {
    top: 48px;
    right: 80px
}

.deb__intro-right .deb__intro-pattern:nth-child(3) {
    bottom: 48px;
    left: 48px
}

.deb__intro-right .deb__intro-pattern:nth-child(4) {
    bottom: 48px;
    left: 80px
}

.deb__intro-right .deb__intro-pattern:nth-child(5) {
    bottom: 48px;
    left: 112px
}

.deb__eyebrow {
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ffffffbf;
    margin-bottom: 16px
}

.deb__intro-right .deb__eyebrow {
    color: #23258B
}

.deb__intro-title {
    font-size: 54px;
    line-height: 1.1;
    color: #FFF;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2
}

.deb__intro-right .deb__intro-title {
    background: linear-gradient(270deg, #F20606 0%, #23258B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.deb__proof {
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, #F4FAFD 0%, #FFF 100%);
    position: relative
}

.deb__proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px
}

.deb__proof-head {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 700;
    margin: 0 0 48px;
    text-align: center
}

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

.deb__card {
    background: #FFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 #23258b14 -1px 6px 20px 0 #23258b1c -1px 10px 52px 0 #23258b24;
    position: relative;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.deb__card:hover {
    transform: translateY(-8px) scale(1.02)
}

.deb__card-corner {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 0;
    right: 0;
    border-width: 0 32px 32px 0;
    border-color: transparent #F20606 transparent transparent;
    opacity: .85
}

.deb__card-img-wrap {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px
}

.deb__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__card:hover .deb__card-img {
    transform: scale(1.08)
}

.deb__card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #23258beb;
    color: #FFF;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__card:hover .deb__card-caption {
    opacity: 1;
    transform: translateY(0)
}

.deb__card-title {
    font-size: 17px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 700;
    margin: 0 0 8px
}

.deb__card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0
}

.deb__card-text::first-letter {
    text-transform: uppercase;
    color: #F20606;
    font-weight: 700;
    font-size: 17px
}

.deb__divider {
    height: 2px;
    margin: 48px auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden
}

.deb__divider-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: radial-gradient(circle, #23258B 1px, transparent 1px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    animation: deb-wave 3s ease-in-out infinite
}

@keyframes deb-wave {

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

    50% {
        transform: translateY(-1px)
    }
}

.deb__approach {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #FFF;
    position: relative;
    animation: deb-temp-shift 60s ease-in-out infinite
}

@keyframes deb-temp-shift {

    0%,
    100% {
        background: #FFF
    }

    50% {
        background: #FFFBFB
    }
}

.deb__approach-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.deb__approach-content {
    display: flex;
    flex-direction: column
}

.deb__approach-head {
    font-size: 28px;
    line-height: 1.35;
    background: linear-gradient(270deg, #F20606 0%, #23258B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0 0 24px
}

.deb__approach-body {
    font-size: 14px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0 0 24px
}

.deb__approach-body::first-letter {
    text-transform: uppercase;
    color: #F20606;
    font-weight: 700;
    font-size: 17px
}

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

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

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

.deb__approach-icon svg {
    width: 100%;
    height: 100%;
    fill: #F20606
}

.deb__approach-item-text {
    font-size: 14px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0
}

.deb__approach-visual {
    position: relative;
    display: flex;
    flex-direction: column
}

.deb__approach-img-wrap {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 3px 2px 0 #23258b14 -1px 6px 20px 0 #23258b1c -1px 10px 52px 0 #23258b24
}

.deb__approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__approach-img-wrap:hover .deb__approach-img {
    transform: scale(1.05) translateZ(20px)
}

.deb__approach-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f20606e6;
    color: #FFF;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1), transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__approach-img-wrap:hover .deb__approach-img-caption {
    opacity: 1;
    transform: translateY(0)
}

.deb__approach-corner {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 0;
    left: 0;
    border-width: 0 0 48px 48px;
    border-color: transparent transparent #23258B;
    opacity: .15
}

.deb__reputation {
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(180deg, #F4FAFD 0%, #FFF 100%);
    position: relative
}

.deb__reputation-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px
}

.deb__reputation-head {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 700;
    margin: 0 0 24px
}

.deb__reputation-intro {
    font-size: 17px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0 0 48px;
    max-width: 800px
}

.deb__reputation-intro::first-letter {
    text-transform: uppercase;
    color: #F20606;
    font-weight: 700;
    font-size: 28px
}

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

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

.deb__faq-card {
    background: #FFF;
    border-radius: 5px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 #f2060614 -1px 6px 20px 0 #f206061c -1px 10px 52px 0 #f2060624;
    position: relative;
    overflow: hidden
}

.deb__faq-question {
    font-size: 17px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 700;
    margin: 0 0 16px;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.deb__faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #F20606;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__faq-card.is-open .deb__faq-toggle {
    transform: rotate(180deg)
}

.deb__faq-answer {
    font-size: 14px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s cubic-bezier(0.4, 0, 0.2, 1), opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.deb__faq-card.is-open .deb__faq-answer {
    max-height: 500px;
    opacity: 1
}

.deb__faq-corner-top {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 0;
    right: 0;
    border-width: 0 24px 24px 0;
    border-color: transparent #F4FAFD transparent transparent
}

.deb__faq-corner-bottom {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    bottom: 0;
    left: 0;
    border-width: 0 0 24px 24px;
    border-color: transparent transparent #F4FAFD
}

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

.deb__quote-box {
    background: linear-gradient(270deg, #f206060d 0%, #23258b0d 100%);
    border-radius: 5px;
    padding: 24px;
    position: relative
}

.deb__quote-mark {
    font-size: 54px;
    line-height: 1;
    color: #F20606;
    opacity: .25;
    position: absolute;
    top: 16px;
    left: 16px;
    font-weight: 700
}

.deb__quote-text {
    font-size: 14px;
    line-height: 1.55;
    color: #2A2A2A;
    margin: 0 0 16px;
    padding-left: 24px;
    font-style: italic
}

.deb__quote-author {
    font-size: 14px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 700;
    margin: 0;
    padding-left: 24px
}

.deb__stat-card {
    background: #FFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: -1px 3px 2px 0 #23258b14 -1px 6px 20px 0 #23258b1c;
    text-align: center;
    position: relative;
    overflow: hidden
}

.deb__stat-corner {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    top: 0;
    left: 0;
    border-width: 32px 32px 0 0;
    border-color: #F20606 transparent transparent;
    opacity: .12
}

.deb__stat-value {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(270deg, #F20606 0%, #23258B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0 0 8px
}

.deb__stat-label {
    font-size: 14px;
    line-height: 1.35;
    color: #2A2A2A;
    margin: 0
}

@media (max-width: 1024px) {
    .deb__intro {
        grid-template-columns: 1fr;
        padding-bottom: 48px
    }

    .deb__intro-left,
    .deb__intro-right {
        padding: 48px 24px
    }

    .deb__proof-grid {
        grid-template-columns: 1fr
    }

    .deb__proof-inner,
    .deb__approach-inner,
    .deb__reputation-inner {
        padding-left: 24px;
        padding-right: 24px
    }

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

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

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

    .deb__proof-head,
    .deb__approach-head,
    .deb__reputation-head {
        font-size: 17px
    }

    .deb__stat-value {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .deb__intro {
        min-height: auto
    }

    .deb__card-img-wrap,
    .deb__approach-img-wrap {
        height: 240px
    }

    .deb__intro-title {
        font-size: 17px
    }
}

.abt {
    max-width: 1440px;
    margin: 0 auto
}

.abt__hero {
    position: relative;
    padding-top: 96px;
    padding-bottom: 48px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #F4FAFD 0%, #fff 100%)
}

.abt__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #F20606;
    z-index: 1
}

.abt__hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #23258B;
    z-index: 1
}

.abt__hero-label {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #23258B;
    margin-bottom: 24px
}

.abt__hero-img-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto 48px;
    padding: 0 24px
}

.abt__hero-bracket {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid #F20606
}

.abt__hero-bracket--tl {
    top: 0;
    left: 24px;
    border-right: none;
    border-bottom: none
}

.abt__hero-bracket--tr {
    top: 0;
    right: 24px;
    border-left: none;
    border-bottom: none
}

.abt__hero-bracket--bl {
    bottom: 0;
    left: 24px;
    border-right: none;
    border-top: none
}

.abt__hero-bracket--br {
    bottom: 0;
    right: 24px;
    border-left: none;
    border-top: none
}

.abt__hero-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.3);
    border-radius: 5px;
    animation: abt-zoom 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes abt-zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.05)
    }
}

.abt__hero-title {
    font-size: 54px;
    line-height: 1.1;
    color: #23258B;
    margin: 0;
    padding: 0 24px;
    animation: abt-sweep 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: linear-gradient(90deg, #F20606 0%, #23258B 50%, #23258B 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

@keyframes abt-sweep {
    from {
        background-position: 100% 0
    }

    to {
        background-position: 0 0
    }
}

.abt__divider-svg {
    width: 100%;
    height: 120px;
    display: block
}

.abt__story {
    position: relative;
    padding: 48px 24px;
    background: #fff
}

.abt__story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto
}

.abt__story-col {
    position: relative
}

.abt__story-heading {
    font-size: 28px;
    line-height: 1.35;
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 24px
}

.abt__story-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 16px
}

.abt__story-text:first-letter {
    font-size: 28px;
    color: #F20606;
    text-transform: uppercase;
    font-weight: 600
}

.abt__story-pull {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    font-weight: 600;
    padding: 24px;
    border-left: 4px solid #F20606;
    background: #F4FAFD;
    border-radius: 2px
}

.abt__split {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: linear-gradient(0deg, #2a2a2a 0%, #4a4a4a 100%)
}

.abt__split-zone {
    position: relative;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.abt__split-zone--left {
    background: #F4FAFD;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
}

.abt__split-zone--right {
    background: #fff;
    padding-left: 96px
}

.abt__split-label {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #F20606;
    margin-bottom: 16px
}

.abt__split-heading {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 24px
}

.abt__split-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 16px
}

.abt__split-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: -1px 10px 52px 0 #f2060624;
    animation: abt-pan 12s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes abt-pan {
    from {
        object-position: 0 50%
    }

    to {
        object-position: 100% 50%
    }
}

.abt__team {
    position: relative;
    padding: 48px 24px;
    background: #fff
}

.abt__team-container {
    max-width: 1200px;
    margin: 0 auto
}

.abt__team-intro {
    margin-bottom: 48px;
    text-align: center
}

.abt__team-heading {
    font-size: 54px;
    line-height: 1.1;
    color: #F20606;
    margin: 0 0 24px
}

.abt__team-desc {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    max-width: 720px;
    margin: 0 auto
}

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

.abt__member {
    position: relative;
    background: #F4FAFD;
    border-radius: 5px;
    padding: 24px;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.abt__member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(270deg, #f206060d 0%, transparent 100%);
    transition: width .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.abt__member:hover::before {
    width: 100%
}

.abt__member:hover {
    transform: translateY(-4px);
    box-shadow: -1px 10px 52px 0 #23258b24
}

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

.abt__member-name {
    font-size: 28px;
    line-height: 1.35;
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px
}

.abt__member-role {
    font-size: 14px;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #23258B;
    margin-bottom: 16px
}

.abt__member-bio {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.abt__metrics {
    position: relative;
    padding: 48px 24px;
    background: linear-gradient(180deg, #2a2a2a 0%, #F4FAFD 100%)
}

.abt__metrics-container {
    max-width: 1200px;
    margin: 0 auto
}

.abt__metrics-header {
    text-align: center;
    margin-bottom: 48px
}

.abt__metrics-title {
    font-size: 54px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px
}

.abt__metrics-subtitle {
    font-size: 17px;
    line-height: 1.55;
    color: #F4FAFD;
    max-width: 720px;
    margin: 0 auto
}

.abt__metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto
}

.abt__metric {
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 24px;
    box-shadow: -1px 6px 20px 0 #f206061c;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt__metric:hover {
    transform: scale(1.03)
}

.abt__metric-value {
    font-size: 70px;
    line-height: 1.1;
    color: #F20606;
    margin: 0 0 8px;
    font-weight: 700
}

.abt__metric-label {
    font-size: 17px;
    line-height: 1.55;
    color: #23258B;
    margin: 0;
    font-weight: 600
}

.abt__metric-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #4a4a4a;
    margin: 8px 0 0
}

.abt__metric-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px
}

.abt__metric-arrow-line {
    stroke: #23258B;
    stroke-width: 2;
    fill: none
}

.abt__metric-arrow-head {
    fill: #23258B
}

.abt__approach {
    position: relative;
    padding: 48px 24px;
    background: #fff
}

.abt__approach-container {
    max-width: 1200px;
    margin: 0 auto
}

.abt__approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.abt__approach-content {
    position: relative
}

.abt__approach-heading {
    font-size: 54px;
    line-height: 1.1;
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 24px
}

.abt__approach-text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 16px
}

.abt__approach-text:first-letter {
    font-size: 28px;
    color: #F20606;
    text-transform: uppercase;
    font-weight: 600
}

.abt__approach-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0
}

.abt__approach-item {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a
}

.abt__approach-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #F20606;
    border-radius: 2px;
    transform: rotate(45deg)
}

.abt__approach-visual {
    position: relative
}

.abt__approach-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: -1px 10px 52px 0 #23258b24;
    animation: abt-scale 10s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes abt-scale {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.08)
    }
}

.abt__approach-trust {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #fffffff2;
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 5px;
    box-shadow: -1px 6px 20px 0 #f206061c
}

.abt__approach-trust-value {
    font-size: 28px;
    line-height: 1.35;
    color: #F20606;
    font-weight: 700;
    margin: 0 0 4px
}

.abt__approach-trust-label {
    font-size: 14px;
    line-height: 1.55;
    color: #23258B;
    margin: 0
}

@media (max-width: 1024px) {
    .abt__hero {
        padding-top: 48px
    }

    .abt__hero-title {
        font-size: 54px
    }

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

    .abt__split {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .abt__split-zone--left {
        clip-path: none
    }

    .abt__split-zone--right {
        padding-left: 48px
    }

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

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

@media (max-width: 768px) {
    .abt__hero-title {
        font-size: 28px
    }

    .abt__story-heading,
    .abt__split-heading,
    .abt__team-heading,
    .abt__metrics-title,
    .abt__approach-heading {
        font-size: 28px
    }

    .abt__story-pull {
        font-size: 17px;
        padding: 16px
    }

    .abt__split-zone {
        padding: 24px
    }

    .abt__split-zone--right {
        padding-left: 24px
    }

    .abt__team-grid {
        grid-template-columns: 1fr
    }

    .abt__metrics-grid {
        grid-template-columns: 1fr
    }

    .abt__metric-value {
        font-size: 54px
    }

    .abt__approach-img {
        height: 320px
    }
}

.success-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px
}

.success-page .confirm-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    background: linear-gradient(90deg, #23258B 0%, #F20606 100%);
    border-radius: 24px;
    box-shadow: -1px 6px 20px 0 #f206061c;
    margin: 0 auto 48px;
    max-width: 800px
}

.success-page .confirm-block__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F4FAFD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px
}

.success-page .confirm-block__icon svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #23258B;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.success-page .confirm-block__title {
    font-size: 54px;
    line-height: 1.1;
    color: #F4FAFD;
    margin: 0 0 16px;
    text-align: center
}

.success-page .confirm-block__text {
    font-size: 17px;
    line-height: 1.55;
    color: #F4FAFD;
    margin: 0;
    text-align: center;
    max-width: 600px
}

.success-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 0 0 48px
}

.success-page .info-card {
    padding: 24px;
    background: #F4FAFD;
    border-radius: 5px;
    box-shadow: -1px 3px 2px 0 #23258b14;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .info-card:hover {
    box-shadow: -1px 10px 52px 0 #23258b24
}

.success-page .info-card__title {
    font-size: 28px;
    line-height: 1.35;
    background: linear-gradient(90deg, #F20606 0%, #23258B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px
}

.success-page .info-card__description {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0
}

.success-page .action-section {
    background: #fff;
    padding: 48px 24px;
    border-radius: 2px;
    max-width: 900px;
    margin: 0 auto
}

.success-page .action-section__heading {
    font-size: 28px;
    line-height: 1.35;
    color: #23258B;
    margin: 0 0 24px;
    text-align: center
}

.success-page .action-section__text {
    font-size: 17px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 24px;
    text-align: center
}

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

.success-page .btn {
    font-size: 17px;
    padding: 16px 48px;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .btn--primary {
    background: #F20606;
    color: #fff;
    border-color: #F20606
}

.success-page .btn--primary:hover {
    background: #23258B;
    border-color: #23258B
}

.success-page .btn--secondary {
    background: transparent;
    color: #23258B;
    border-color: #23258B
}

.success-page .btn--secondary:hover {
    background: #23258B;
    color: #fff
}

@media (max-width: 768px) {
    .success-page {
        padding: 24px 16px
    }

    .success-page .confirm-block {
        padding: 24px 16px;
        margin: 0 auto 24px
    }

    .success-page .confirm-block__title {
        font-size: 28px
    }

    .success-page .confirm-block__text {
        font-size: 14px
    }

    .success-page .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 0 0 24px
    }

    .success-page .info-card__title {
        font-size: 17px
    }

    .success-page .info-card__description {
        font-size: 14px
    }

    .success-page .action-section {
        padding: 24px 16px
    }

    .success-page .action-section__heading {
        font-size: 17px
    }

    .success-page .action-section__text {
        font-size: 14px
    }

    .success-page .btn-group {
        flex-direction: column
    }

    .success-page .btn {
        width: 100%
    }
}