html,
body {
    margin: 0;
    padding: 0
}

body {
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Ubuntu Mono', monospace
}

.hd {
    position: relative;
    background-color: #F7F8F9;
    border-bottom: 2px solid #64011A;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.hd-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 96px
}

.hd-brand {
    background-color: #64011A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    flex-shrink: 0;
    position: relative
}

.hd-brand::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 0;
    bottom: 0;
    width: 32px;
    background-color: #64011A;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 1
}

.hd-logoframe {
    width: 88px;
    height: 88px;
    background-color: #F7F8F9;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 2px 2px 2px 1px #64011a12;
    flex-shrink: 0;
    position: relative;
    z-index: 2
}

.hd-logoframe img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block
}

.hd-nameblock {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.hd-name {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #F7F8F9;
    line-height: 1.1;
    letter-spacing: .08em;
    text-transform: uppercase
}

.hd-tagline {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: #97D300;
    line-height: 1.35;
    margin-top: 8px
}

.hd-navshell {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 56px;
    padding-right: 28px
}

.hd-navprimary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.hd-navprimary li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #64011A;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    line-height: 1.35;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.hd-navprimary li a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background-color: #64011A;
    transition: bottom .35s ease-in-out;
    z-index: 0
}

.hd-navprimary li a:hover::before,
.hd-navprimary li a:focus::before {
    bottom: 0
}

.hd-navprimary li a:hover,
.hd-navprimary li a:focus {
    color: #F7F8F9;
    border-color: #64011A;
    outline: none
}

.hd-navprimary li a:focus-visible {
    transform: scale(1.02)
}

.hd-navprimary li a span {
    position: relative;
    z-index: 1
}

.hd-navsecondary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.hd-navsecondary a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #F7F8F9;
    border: 2px solid #64011A;
    color: #64011A;
    text-decoration: none;
    font-size: 18px;
    transition: background-color .42s cubic-bezier(0.34, 1.2, 0.64, 1), color .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden
}

.hd-navsecondary a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background-color: #97D300;
    transition: bottom .38s ease-in-out;
    z-index: 0
}

.hd-navsecondary a:hover::before,
.hd-navsecondary a:focus::before {
    bottom: 0
}

.hd-navsecondary a:hover,
.hd-navsecondary a:focus {
    color: #64011A;
    outline: none
}

.hd-navsecondary a:focus-visible {
    transform: scale(1.02)
}

.hd-navsecondary a i {
    position: relative;
    z-index: 1
}

.hd-accentbar {
    height: 4px;
    background: linear-gradient(90deg, #64011A 0%, #97D300 60%, #F7F8F9 100%)
}

.ft {
    background-color: #64011A;
    border-top: 2px solid #97D300;
    padding: 28px 0 16px
}

.ft-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: flex-start;
    gap: 56px
}

.ft-about {
    flex: 1
}

.ft-abouttext {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #F7F8F9;
    line-height: 1.55;
    margin: 0 0 16px
}

.ft-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft-nav li a {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #97D300;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .35s ease-in-out
}

.ft-nav li a:hover,
.ft-nav li a:focus {
    color: #F7F8F9;
    outline: none
}

.ft-nav li a:focus-visible {
    transform: scale(1.02);
    display: inline-block
}

.ft-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0
}

.ft-logoframe {
    width: 80px;
    height: 80px;
    background-color: #F7F8F9;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 2px 2px 2px 1px #64011a12
}

.ft-logoframe img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block
}

.ft-copy {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #F7F8F9;
    line-height: 1.35;
    opacity: .75;
    text-align: right
}

.ft-contact {
    margin-top: 8px
}

.ft-contactitem {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #F7F8F9;
    line-height: 1.55
}

.ft-contactitem a {
    color: #97D300;
    text-decoration: none;
    transition: color .35s ease-in-out
}

.ft-contactitem a:hover,
.ft-contactitem a:focus {
    color: #F7F8F9;
    outline: none
}

.ft-contactitem i {
    color: #97D300;
    font-size: 18px;
    flex-shrink: 0
}

.ft-divider {
    max-width: 1024px;
    margin: 16px auto 0;
    padding: 0 28px;
    border-top: 1px solid #97d30040;
    padding-top: 16px
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.ft-addr {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #F7F8F9;
    line-height: 1.35;
    opacity: .6
}

.ck {
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 360px;
    background-color: #F7F8F9;
    border-radius: 8px;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    border: 2px solid #64011A;
    z-index: 1500;
    padding: 28px;
    box-sizing: border-box
}

.ck[hidden] {
    display: none
}

.ck-headline {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: #64011A;
    line-height: 1.1;
    margin: 0 0 16px
}

.ck-desc {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #2a0009;
    line-height: 1.55;
    margin: 0 0 16px
}

.ck-cats {
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ck-catrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.ck-catlabel {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #2a0009;
    line-height: 1.35
}

.ck-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0
}

.ck-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute
}

.ck-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c9cdd2;
    border-radius: 48px;
    cursor: pointer;
    transition: background-color .35s ease-in-out
}

.ck-slider::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    left: 3px;
    top: 3px;
    background-color: #F7F8F9;
    border-radius: 48px;
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ck-toggle input:checked+.ck-slider {
    background-color: #97D300
}

.ck-toggle input:checked+.ck-slider::before {
    transform: translateX(18px)
}

.ck-toggle input:disabled+.ck-slider {
    opacity: .6;
    cursor: not-allowed
}

.ck-toggle input:focus-visible+.ck-slider {
    outline: 2px solid #64011A;
    outline-offset: 2px
}

.ck-necessary {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #64011A;
    font-weight: 700;
    line-height: 1.35
}

.ck-datasale {
    margin-bottom: 16px;
    padding: 8px;
    background-color: #64011a0d;
    border-radius: 8px
}

.ck-datasalelabel {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #2a0009;
    line-height: 1.35;
    font-weight: 700
}

.ck-btns {
    display: flex;
    gap: 16px;
    justify-content: center
}

.ck-btns a {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #64011A;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    line-height: 1.55;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color .38s ease-in-out
}

.ck-btns a:hover,
.ck-btns a:focus {
    color: #97D300;
    outline: none
}

.ck-btns a:focus-visible {
    transform: scale(1.02)
}

.policy-details {
    max-width: 1024px;
    margin: 0 auto;
    padding: 56px 28px;
    color: #2a1a1e
}

.policy-details h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #64011A;
    margin-bottom: 28px;
    margin-top: 0
}

.policy-details h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #64011A;
    margin-top: 56px;
    margin-bottom: 16px
}

.policy-details h3 {
    font-size: 18px;
    line-height: 1.35;
    color: #3d0110;
    margin-top: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.policy-details h4,
.policy-details h5,
.policy-details h6 {
    font-size: 15px;
    line-height: 1.35;
    color: #3d0110;
    margin-top: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.policy-details p {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 0;
    margin-bottom: 16px;
    color: #2a1a1e
}

.policy-details ul,
.policy-details ol {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 28px;
    color: #2a1a1e
}

.policy-details ul {
    list-style: none;
    padding-left: 0
}

.policy-details ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px
}

.policy-details ul li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background-color: #97D300
}

.policy-details ol {
    list-style: decimal
}

.policy-details ol li {
    margin-bottom: 8px;
    padding-left: 8px
}

.policy-details li {
    font-size: 15px;
    line-height: 1.55
}

.policy-details strong,
.policy-details b {
    font-weight: 700;
    color: #64011A
}

.policy-details a {
    color: #64011A;
    text-decoration: underline;
    text-decoration-color: #97D300;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color .32s ease-in-out
}

.policy-details a:hover {
    color: #3d0110;
    text-decoration-color: #64011A
}

.policy-details hr {
    border: none;
    border-top: 2px solid #F7F8F9;
    margin-top: 56px;
    margin-bottom: 56px;
    box-shadow: 2px 2px 2px 1px #64011a12
}

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

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

.srvc .pg-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.srvc .geo-bg {
    position: fixed;
    top: 10%;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 2px solid #64011a12;
    border-radius: 8px;
    animation: geoSpin 28s linear infinite;
    pointer-events: none;
    z-index: 0
}

.srvc .geo-bg2 {
    position: fixed;
    bottom: 15%;
    left: -80px;
    width: 200px;
    height: 200px;
    border: 2px solid #97d30017;
    border-radius: 8px;
    animation: geoSpin 40s linear infinite reverse;
    pointer-events: none;
    z-index: 0
}

@keyframes geoSpin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.srvc .titl-blk {
    padding: 96px 0 56px;
    position: relative
}

.srvc .titl-blk .atm-spot1 {
    position: absolute;
    top: 56px;
    left: -56px;
    width: 280px;
    height: 280px;
    background: #64011a0f;
    border-radius: 48px;
    filter: blur(48px);
    pointer-events: none
}

.srvc .titl-blk .atm-spot2 {
    position: absolute;
    top: 28px;
    right: 0;
    width: 200px;
    height: 200px;
    background: #97d30012;
    border-radius: 48px;
    filter: blur(56px);
    pointer-events: none
}

.srvc .titl-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 56px;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    position: relative
}

.srvc .titl-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.9)
}

.srvc .titl-img-wrap .img-tex {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, #64011a08 2px, #64011a08 4px);
    pointer-events: none
}

.srvc .titl-txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 28px
}

.srvc .titl-eyebrow {
    font-size: 15px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #64011A;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp .38s cubic-bezier(0.34, 1.2, 0.64, 1) .1s forwards
}

.srvc .titl-h1 {
    font-size: 72px;
    line-height: 1.1;
    color: #1b0008;
    font-weight: 800;
    margin: 0;
    opacity: 0;
    animation: fadeUp .4s cubic-bezier(0.34, 1.2, 0.64, 1) .22s forwards
}

.srvc .titl-h1 span {
    background: linear-gradient(to top, #97D300, #64011ae6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.srvc .titl-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a0010;
    max-width: 600px;
    text-align: justify;
    margin: 0;
    opacity: 0;
    animation: fadeUp .42s cubic-bezier(0.34, 1.2, 0.64, 1) .36s forwards
}

.srvc .titl-act {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .44s cubic-bezier(0.34, 1.2, 0.64, 1) .5s forwards
}

.srvc .btn-pri {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .35s ease-in-out, box-shadow .38s ease-in-out;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.srvc .btn-pri::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #97D300;
    transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.srvc .btn-pri:hover::before {
    bottom: 0
}

.srvc .btn-pri:hover {
    color: #1b0008;
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.srvc .btn-pri span {
    position: relative;
    z-index: 1
}

.srvc .btn-pri i {
    position: relative;
    z-index: 1
}

.srvc .btn-sec {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #64011a33;
    background: transparent;
    color: #64011A;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .35s ease-in-out, color .35s ease-in-out
}

.srvc .btn-sec::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #64011a14;
    transition: bottom .4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.srvc .btn-sec:hover::before {
    bottom: 0
}

.srvc .btn-sec:hover {
    border-color: #64011A
}

.srvc .btn-sec i {
    position: relative;
    z-index: 1
}

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

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

.srvc .offer-sec {
    padding: 96px 0;
    background: #64011A;
    position: relative
}

.srvc .offer-sec .pat-layer {
    position: absolute;
    inset: 0;
    opacity: .08;
    pointer-events: none
}

.srvc .offer-sec .pg-wrap {
    position: relative;
    z-index: 1
}

.srvc .sec-label {
    font-size: 15px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #97D300;
    font-weight: 600;
    margin-bottom: 16px
}

.srvc .offer-sec .sec-hd {
    font-size: 42px;
    line-height: 1.1;
    color: #F7F8F9;
    font-weight: 700;
    margin: 0 0 56px;
    max-width: 560px
}

.srvc .offer-sec .sec-hd span {
    background: linear-gradient(to top, #97D300, #f7f8f9d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.srvc .svc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: svc-counter
}

.srvc .svc-item {
    background: #f7f8f90d;
    border-radius: 8px;
    padding: 28px;
    border: 1px solid #f7f8f91a;
    transition: background .37s ease-in-out, transform .37s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .37s ease-in-out;
    counter-increment: svc-counter;
    position: relative
}

.srvc .svc-item:hover {
    background: #f7f8f91a;
    transform: translateY(-4px);
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.srvc .svc-num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #97d3002e;
    position: absolute;
    top: 16px;
    right: 16px
}

.srvc .svc-icon {
    width: 40px;
    height: 40px;
    background: #97d30026;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #97D300;
    font-size: 18px
}

.srvc .svc-item h4 {
    font-size: 18px;
    line-height: 1.35;
    color: #F7F8F9;
    font-weight: 700;
    margin: 0 0 8px
}

.srvc .svc-item p {
    font-size: 15px;
    line-height: 1.55;
    color: #f7f8f9b8;
    margin: 0;
    text-align: justify
}

.srvc .proc-sec {
    padding: 96px 0;
    background: #F7F8F9;
    position: relative
}

.srvc .proc-sec .pg-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.srvc .proc-img-col {
    position: relative
}

.srvc .proc-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.srvc .proc-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block
}

.srvc .proc-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #97D300;
    border-radius: 8px;
    padding: 16px 28px;
    box-shadow: 2px 6px 22px 1px #97d30017
}

.srvc .proc-badge strong {
    display: block;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b0008
}

.srvc .proc-badge span {
    font-size: 15px;
    line-height: 1.35;
    color: #3a0010;
    font-weight: 500
}

.srvc .proc-txt-col {
    padding-top: 8px
}

.srvc .proc-txt-col .sec-hd {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0008;
    font-weight: 700;
    margin: 0 0 28px
}

.srvc .proc-txt-col .sec-hd span {
    background: linear-gradient(to top, #97D300, #64011ae6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.srvc .proc-txt-col .desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a0010;
    text-align: justify;
    margin: 0 0 28px
}

.srvc .steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: step-ct
}

.srvc .step-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 28px;
    counter-increment: step-ct
}

.srvc .step-item:last-child {
    padding-bottom: 0
}

.srvc .step-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0
}

.srvc .step-dot {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 2px 2px 1px #64011a12
}

.srvc .step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, #64011A, #97d3004d);
    margin-top: 4px;
    min-height: 28px
}

.srvc .step-item:last-child .step-line {
    display: none
}

.srvc .step-body h5 {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin: 0 0 8px
}

.srvc .step-body p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a0010;
    margin: 0;
    text-align: justify
}

.srvc .faq-sec {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.srvc .faq-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #64011A, #97D300)
}

.srvc .faq-sec .pg-wrap {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.srvc .faq-top {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-end;
    justify-content: space-between
}

.srvc .faq-top .sec-hd {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0008;
    font-weight: 700;
    margin: 0;
    max-width: 420px
}

.srvc .faq-top .sec-hd span {
    background: linear-gradient(to top, #97D300, #64011ae6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.srvc .faq-note {
    font-size: 15px;
    line-height: 1.55;
    color: #3a0010;
    max-width: 300px;
    text-align: right;
    margin: 0
}

.srvc .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.srvc .faq-card {
    background: #F7F8F9;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 2px 2px 2px 1px #64011a12;
    transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.srvc .faq-card:hover {
    box-shadow: 2px 6px 22px 1px #64011a17;
    transform: translateY(-3px)
}

.srvc .faq-q {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px
}

.srvc .faq-ico {
    width: 32px;
    height: 32px;
    background: #64011A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #F7F8F9;
    font-size: 15px
}

.srvc .faq-card h5 {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin: 0
}

.srvc .faq-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a0010;
    margin: 0;
    text-align: justify
}

@media (max-width: 768px) {
    .srvc .titl-h1 {
        font-size: 42px
    }

    .srvc .svc-list {
        grid-template-columns: 1fr
    }

    .srvc .proc-sec .pg-wrap {
        grid-template-columns: 1fr
    }

    .srvc .proc-badge {
        position: static;
        margin-top: 16px;
        display: inline-block
    }

    .srvc .faq-top {
        flex-direction: column;
        gap: 16px
    }

    .srvc .faq-note {
        text-align: left
    }

    .srvc .faq-grid {
        grid-template-columns: 1fr
    }

    .srvc .titl-img-wrap img {
        height: 240px
    }
}

@media (max-width: 480px) {
    .srvc .titl-h1 {
        font-size: 42px
    }

    .srvc .offer-sec .sec-hd {
        font-size: 42px
    }
}

.subsc {
    background: #F7F8F9;
    overflow-x: clip
}

.subsc .hero-row {
    max-width: 1024px;
    margin: 0 auto;
    padding: 96px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.subsc .hero-txt {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.subsc .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px
}

.subsc .hero-eyebrow span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #64011A;
    font-weight: 600
}

.subsc .eyebrow-line {
    width: 32px;
    height: 2px;
    background: #97D300;
    border-radius: 8px
}

.subsc .hero-h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1a0008;
    margin: 0;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.subsc .hero-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #2d0010;
    text-align: justify;
    margin: 0
}

.subsc .hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 2px 6px 22px 1px #64011a17
}

.subsc .hero-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #97D300;
    transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.subsc .hero-link:hover::before {
    bottom: 0
}

.subsc .hero-link:hover {
    color: #1a0008
}

.subsc .hero-link span,
.subsc .hero-link i {
    position: relative;
    z-index: 1
}

.subsc .hero-imgcol {
    position: relative
}

.subsc .hero-imgwrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.subsc .hero-imgwrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: filter .42s ease-in-out
}

.subsc .hero-imgwrap:hover img {
    filter: brightness(1)
}

.subsc .hero-deco {
    position: absolute;
    top: -24px;
    right: -16px;
    width: 80px;
    height: 80px;
    pointer-events: none
}

.subsc .hero-deco svg {
    animation: rotloop 12s linear infinite;
    width: 80px;
    height: 80px
}

@keyframes rotloop {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.subsc .hero-arrow {
    position: absolute;
    bottom: 28px;
    left: -28px;
    pointer-events: none
}

.subsc .hero-arrow svg {
    width: 56px;
    height: 40px;
    opacity: .22
}

.subsc .divider-a {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 16px
}

.subsc .divider-a .dl {
    flex: 1;
    height: 1px;
    background: #64011A;
    opacity: .15;
    position: relative
}

.subsc .divider-a .dl::before,
.subsc .divider-a .dl::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 1px;
    height: 7px;
    background: #64011A;
    opacity: .4
}

.subsc .divider-a .dl::before {
    left: 20%
}

.subsc .divider-a .dl::after {
    left: 60%
}

.subsc .divider-a .dt {
    width: 6px;
    height: 6px;
    border-radius: 8px;
    background: #97D300
}

.subsc .metrics-bg {
    background: #64011A;
    padding: 96px 0
}

.subsc .metrics-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px
}

.subsc .met-card {
    padding: 56px 28px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden
}

.subsc .met-card.light {
    background: #F7F8F9
}

.subsc .met-card.mid {
    background: #97D300
}

.subsc .met-card.dark {
    background: #ffffff12;
    border: 1px solid #f7f8f91f
}

.subsc .met-num {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    color: #64011A;
    margin: 0
}

.subsc .met-card.dark .met-num {
    color: #97D300
}

.subsc .met-card.mid .met-num {
    color: #64011A
}

.subsc .met-label {
    font-size: 15px;
    line-height: 1.35;
    color: #2d0010;
    margin: 0
}

.subsc .met-card.dark .met-label {
    color: #f7f8f9bf
}

.subsc .met-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.subsc .badge {
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 48px;
    font-weight: 600
}

.subsc .met-card.light .badge {
    background: #64011a14;
    color: #64011A
}

.subsc .met-card.mid .badge {
    background: #64011a1f;
    color: #64011A
}

.subsc .met-card.dark .badge {
    background: #97d30026;
    color: #97D300
}

.subsc .met-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px
}

.subsc .met-card.light .met-icon {
    background: #64011a14;
    color: #64011A
}

.subsc .met-card.mid .met-icon {
    background: #64011a1f;
    color: #64011A
}

.subsc .met-card.dark .met-icon {
    background: #97d3001f;
    color: #97D300
}

.subsc .divider-b {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 8px
}

.subsc .divider-b .seg {
    height: 1px;
    background: #64011a1f
}

.subsc .divider-b .seg-a {
    flex: 2
}

.subsc .divider-b .seg-b {
    flex: 1
}

.subsc .divider-b .tick {
    width: 1px;
    height: 8px;
    background: #64011a40
}

.subsc .topics-bg {
    padding: 96px 0;
    background: #F7F8F9
}

.subsc .topics-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start
}

.subsc .topics-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative
}

.subsc .topics-h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.subsc .topics-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #2d0010;
    text-align: justify;
    margin: 0
}

.subsc .curve-deco {
    position: absolute;
    bottom: -40px;
    left: 50%;
    pointer-events: none;
    opacity: .18
}

.subsc .topics-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: tlist
}

.subsc .topics-list li {
    counter-increment: tlist;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #64011a1a;
    position: relative
}

.subsc .topics-list li:first-child {
    border-top: 1px solid #64011a1a
}

.subsc .tnum {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #64011a1f;
    text-align: right;
    padding-top: 2px
}

.subsc .titem-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.subsc .titem-head {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1a0008;
    margin: 0
}

.subsc .titem-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #4a1020;
    text-align: justify;
    margin: 0
}

.subsc .titem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px
}

.subsc .ttag {
    font-size: 15px;
    padding: 2px 12px;
    border-radius: 48px;
    background: #97d3002e;
    color: #3a5c00;
    font-weight: 500
}

.subsc .divider-c {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    height: 1px;
    background: linear-gradient(to right, transparent, #64011a26, transparent)
}

.subsc .reasons-bg {
    background: #F7F8F9;
    padding: 96px 0
}

.subsc .reasons-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 56px
}

.subsc .reasons-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px
}

.subsc .reasons-h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.subsc .reasons-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2d0010;
    margin: 0
}

.subsc .reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.subsc .rcard {
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 2px 2px 2px 1px #64011a12;
    position: relative;
    overflow: hidden;
    transition: box-shadow .4s ease-in-out
}

.subsc .rcard:hover {
    box-shadow: 2px 6px 22px 1px #64011a17
}

.subsc .rcard-overlay {
    position: absolute;
    inset: 0;
    background: #f7f8f9eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 1;
    transition: opacity .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer
}

.subsc .rcard:hover .rcard-overlay {
    opacity: 0;
    pointer-events: none
}

.subsc .rcard-overlay-label {
    font-size: 15px;
    font-weight: 600;
    color: #64011A;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: flex;
    align-items: center;
    gap: 8px
}

.subsc .rcard-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #64011a12;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64011A;
    font-size: 18px;
    flex-shrink: 0
}

.subsc .rcard-h {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1a0008;
    margin: 0
}

.subsc .rcard-p {
    font-size: 15px;
    line-height: 1.55;
    color: #4a1020;
    text-align: justify;
    margin: 0
}

.subsc .twocol-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 28px;
    list-style: none;
    padding: 0;
    margin: 0
}

.subsc .twocol-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #4a1020
}

.subsc .twocol-list li i {
    color: #97D300;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px
}

@media (max-width: 768px) {
    .subsc .hero-row {
        grid-template-columns: 1fr;
        padding: 56px 28px;
        gap: 28px
    }

    .subsc .hero-h1 {
        font-size: 42px
    }

    .subsc .hero-imgwrap img {
        height: 300px
    }

    .subsc .metrics-inner {
        grid-template-columns: 1fr
    }

    .subsc .topics-inner {
        grid-template-columns: 1fr
    }

    .subsc .reasons-grid {
        grid-template-columns: 1fr
    }

    .subsc .met-num {
        font-size: 58px
    }

    .subsc .hero-deco {
        display: none
    }
}

.abtus {
    width: 100%;
    overflow-x: clip
}

.abtus .grad-text {
    background: linear-gradient(to top, #97D300, #64011A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abtus .band-top {
    position: relative;
    padding: 56px 28px;
    overflow: hidden
}

.abtus .band-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #64011A 0%, #8a0122 40%, #64011A 70%, #4a0114 100%);
    z-index: 0
}

.abtus .band-top .radshift {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 48px;
    background: radial-gradient(circle, #97d3002e 0%, transparent 70%);
    animation: radmove 7s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1
}

@keyframes radmove {
    0% {
        transform: translate(-10%, -20%)
    }

    100% {
        transform: translate(60%, 30%)
    }
}

.abtus .band-top .wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2
}

.abtus .band-top .wave-divider svg {
    display: block;
    width: 100%
}

.abtus .band-top .strip-inner {
    position: relative;
    z-index: 3;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px
}

.abtus .band-top .strip-img {
    flex: 0 0 auto;
    width: 220px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    outline: 2px solid #97d30059;
    outline-offset: 6px;
    position: relative
}

.abtus .band-top .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) sepia(0.15) brightness(0.92);
    display: block
}

.abtus .band-top .strip-txt {
    flex: 1 1 auto
}

.abtus .band-top .strip-txt .eyebrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #97d300e6;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.abtus .band-top .strip-txt h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #F7F8F9;
    margin: 0 0 16px
}

.abtus .band-top .strip-txt .sub {
    font-size: 18px;
    line-height: 1.55;
    color: #f7f8f9c7;
    max-width: 520px;
    text-align: justify
}

.abtus .dots-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-top: 28px
}

.abtus .dots-row span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #97D300;
    opacity: .7
}

.abtus .dots-row span:nth-child(2) {
    opacity: .45
}

.abtus .dots-row span:nth-child(3) {
    opacity: .25
}

.abtus .main-blk {
    padding: 96px 28px;
    background: #F7F8F9;
    position: relative
}

.abtus .main-blk .diag-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none
}

.abtus .main-blk .diag-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(160deg, #97d30012 0%, transparent 70%);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%)
}

.abtus .main-blk .blk-inner {
    position: relative;
    z-index: 1;
    max-width: 1024px;
    margin: 0 auto
}

.abtus .main-blk .two-col {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start
}

.abtus .main-blk .col-support {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abtus .main-blk .cert-frame {
    border: 2px solid #64011A;
    border-radius: 8px;
    padding: 28px;
    position: relative;
    background: #fff;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.abtus .main-blk .cert-frame::before {
    content: '';
    position: absolute;
    inset: 5px;
    border: 1px solid #64011a33;
    border-radius: 8px;
    pointer-events: none
}

.abtus .main-blk .cert-frame .cert-ico {
    width: 40px;
    height: 40px;
    margin-bottom: 16px
}

.abtus .main-blk .cert-frame h4 {
    font-size: 15px;
    line-height: 1.35;
    color: #64011A;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 8px
}

.abtus .main-blk .cert-frame .cert-name {
    font-size: 18px;
    line-height: 1.35;
    color: #1e0508;
    margin: 0 0 8px;
    font-weight: 700
}

.abtus .main-blk .cert-frame .cert-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018
}

.abtus .main-blk .cert-frame .cert-seal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #64011a26
}

.abtus .main-blk .cert-frame .cert-seal .seal-dot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #97D300;
    flex-shrink: 0
}

.abtus .main-blk .cert-frame .cert-seal span {
    font-size: 15px;
    line-height: 1.35;
    color: #64011A;
    font-weight: 600
}

.abtus .main-blk .stat-stack {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abtus .main-blk .stat-item {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 2px 2px 1px #64011a12;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abtus .main-blk .stat-item:hover {
    box-shadow: 2px 6px 22px 1px #64011a17
}

.abtus .main-blk .stat-item .stat-num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #64011A;
    flex-shrink: 0;
    min-width: 72px
}

.abtus .main-blk .stat-item .stat-lbl {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018
}

.abtus .main-blk .col-main {
    display: flex;
    flex-direction: column;
    gap: 56px
}

.abtus .main-blk .col-main h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 16px
}

.abtus .main-blk .col-main p {
    font-size: 18px;
    line-height: 1.55;
    color: #2a0a10;
    text-align: justify;
    margin: 0 0 16px
}

.abtus .main-blk .col-main p:last-child {
    margin-bottom: 0
}

.abtus .main-blk .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abtus .main-blk .img-pair .img-port {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.abtus .main-blk .img-pair .img-port img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abtus .main-blk .img-pair .img-port:hover img {
    transform: scale(1.04)
}

.abtus .main-blk .steps-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.abtus .main-blk .step-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding-bottom: 28px;
    position: relative
}

.abtus .main-blk .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #64011a4d, #97d30033)
}

.abtus .main-blk .step-num {
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 2px 2px 1px #64011a12
}

.abtus .main-blk .step-body h5 {
    font-size: 18px;
    line-height: 1.35;
    color: #1e0508;
    margin: 0 0 8px
}

.abtus .main-blk .step-body p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    margin: 0;
    text-align: justify
}

.abtus .main-blk .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
}

.abtus .main-blk .team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 6px 22px 1px #64011a17;
    position: relative;
    transition: box-shadow .41s ease-in-out
}

.abtus .main-blk .team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .35s ease-in-out;
    pointer-events: none;
    z-index: 2
}

.abtus .main-blk .team-card:hover {
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.abtus .main-blk .team-card:hover::before {
    border-color: #97d30080
}

.abtus .main-blk .team-card .tc-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 4px 12px #64011a1a);
    transition: filter .4s ease-in-out
}

.abtus .main-blk .team-card:hover .tc-img {
    filter: drop-shadow(0 6px 18px #64011a26) saturate(1.1)
}

.abtus .main-blk .team-card .tc-info {
    padding: 16px
}

.abtus .main-blk .team-card .tc-info h5 {
    font-size: 18px;
    line-height: 1.35;
    color: #1e0508;
    margin: 0 0 8px
}

.abtus .main-blk .team-card .tc-info .tc-role {
    font-size: 15px;
    line-height: 1.35;
    color: #64011A;
    font-weight: 600;
    margin-bottom: 8px
}

.abtus .main-blk .team-card .tc-info p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    margin: 0;
    text-align: justify
}

.abtus .main-blk .card-dots {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 16px
}

.abtus .main-blk .card-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #97D300
}

.abtus .main-blk .card-dots span:nth-child(2) {
    background: #64011A;
    opacity: .5
}

.abtus .main-blk .card-dots span:nth-child(3) {
    background: #97D300;
    opacity: .35
}

@media (max-width: 768px) {
    .abtus .band-top .strip-inner {
        flex-direction: column;
        gap: 28px
    }

    .abtus .band-top .strip-img {
        width: 100%;
        height: 220px
    }

    .abtus .band-top .strip-txt h1 {
        font-size: 42px
    }

    .abtus .main-blk .two-col {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abtus .main-blk .img-pair {
        grid-template-columns: 1fr
    }

    .abtus .main-blk .team-grid {
        grid-template-columns: 1fr
    }
}

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

.ctus .pg-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.ctus .bd-outer {
    border: 1px solid #64011a1f;
    border-radius: 8px;
    padding: 2px;
    display: inline-block
}

.ctus .bd-inner {
    border: 1px solid #64011a12;
    border-radius: 8px;
    padding: 2px
}

.ctus .split-blk {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
    padding: 96px 0 56px
}

.ctus .sidebar {
    position: sticky;
    top: 28px
}

.ctus .tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #97d3001a;
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 28px
}

.ctus .tag-line span {
    font-size: 15px;
    color: #64011A;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase
}

.ctus .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #97D300;
    flex-shrink: 0
}

.ctus .side-heading {
    font-size: 42px;
    line-height: 1.1;
    color: #64011A;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to top, #97D300, transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.ctus .side-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a3a;
    margin-bottom: 56px;
    text-align: justify
}

.ctus .cinfo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.ctus .cinfo-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.ctus .cinfo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #F7F8F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 2px 2px 1px #64011a12;
    transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), background .35s ease-in-out
}

.ctus .cinfo-icon i {
    font-size: 18px;
    color: #64011A
}

.ctus .cinfo-list li:hover .cinfo-icon {
    background: #64011a0f;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.ctus .cinfo-label {
    font-size: 15px;
    color: #64011A;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ctus .cinfo-val {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a3a
}

.ctus .cinfo-val a {
    color: #64011A;
    text-decoration: none;
    border-bottom: 1px solid #64011a40;
    transition: border-color .35s ease-in-out, color .35s ease-in-out
}

.ctus .cinfo-val a:hover {
    color: #97D300;
    border-color: #97D300
}

.ctus .form-panel {
    background: #F7F8F9;
    border-radius: 8px;
    padding: 56px;
    box-shadow: 2px 6px 22px 1px #64011a17;
    position: relative;
    overflow: hidden
}

.ctus .form-panel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: linear-gradient(to top, #97d3001f, transparent);
    border-radius: 0 8px 0 180px;
    pointer-events: none
}

.ctus .form-hdg {
    font-size: 18px;
    line-height: 1.35;
    color: #64011A;
    font-weight: 700;
    margin-bottom: 28px
}

.ctus .frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ctus .frow.full {
    grid-template-columns: 1fr
}

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

.ctus .flabel {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2a
}

.ctus .finput {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #64011a2e;
    border-radius: 8px;
    font-size: 15px;
    color: #2a2a2a;
    background: #fff;
    box-shadow: inset 1px 2px 4px #64011a0f;
    transition: border-color .38s ease-in-out, box-shadow .38s ease-in-out;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none
}

.ctus .finput::placeholder {
    color: #2a2a2a66
}

.ctus .finput:focus {
    outline: none;
    border-color: #64011A;
    box-shadow: inset 1px 2px 4px #64011a14 0 0 0 3px #64011a14
}

.ctus .fselect-wrap {
    position: relative
}

.ctus .fselect-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #64011A;
    pointer-events: none
}

.ctus .fselect {
    width: 100%;
    padding: 16px 44px 16px 16px;
    border: 1.5px solid #64011a2e;
    border-radius: 8px;
    font-size: 15px;
    color: #2a2a2a;
    background: #fff;
    box-shadow: inset 1px 2px 4px #64011a0f;
    transition: border-color .38s ease-in-out, box-shadow .38s ease-in-out;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer
}

.ctus .fselect:focus {
    outline: none;
    border-color: #64011A;
    box-shadow: inset 1px 2px 4px #64011a14 0 0 0 3px #64011a14
}

.ctus .ftextarea {
    resize: vertical;
    min-height: 120px
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin: 28px 0;
    padding: 16px;
    background: #64011a08;
    border-radius: 8px;
    border: 1px solid #64011a1a
}

.ctus .priv-chk {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #64011A;
    cursor: pointer
}

.ctus .priv-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a3a
}

.ctus .priv-txt a {
    color: #64011A;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #64011a4d;
    transition: border-color .35s ease-in-out
}

.ctus .priv-txt a:hover {
    border-color: #64011A
}

.ctus .sbtn-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px
}

.ctus .sbtn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 56px;
    background: #64011A;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: color .4s ease-in-out;
    z-index: 1
}

.ctus .sbtn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #97D300;
    border-radius: 8px;
    transition: bottom .4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: -1
}

.ctus .sbtn:hover::before {
    bottom: 0
}

.ctus .sbtn:hover {
    color: #2a2a2a
}

.ctus .sbtn:focus {
    outline: 3px solid #64011a66;
    outline-offset: 3px
}

.ctus .sbtn i {
    font-size: 18px
}

.ctus .divider-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 56px 0
}

.ctus .divider-line::before,
.ctus .divider-line::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #64011a26
}

.ctus .divider-word {
    font-size: 15px;
    color: #64011a80;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap
}

.ctus .tier-blk {
    padding: 56px 0 96px;
    background: #fff
}

.ctus .tier-hdg-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 56px
}

.ctus .tier-hdg {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #64011A;
    margin-bottom: 16px;
    background: linear-gradient(to top, #97D300, transparent 75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.ctus .tier-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a3a;
    max-width: 560px
}

.ctus .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.ctus .tier-card {
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #64011a1f;
    background: #F7F8F9;
    box-shadow: 2px 2px 2px 1px #64011a12;
    transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ctus .tier-card:hover {
    box-shadow: 2px 10px 40px 1px #64011a1f;
    transform: translateY(-4px)
}

.ctus .tier-card.featured {
    background: #64011A;
    border-color: #64011A
}

.ctus .tier-card.featured .tier-name,
.ctus .tier-card.featured .tier-desc,
.ctus .tier-card.featured .feat-item {
    color: #ffffffe6
}

.ctus .tier-card.featured .tier-price {
    color: #97D300
}

.ctus .tier-card.featured .feat-check {
    color: #97D300
}

.ctus .tier-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #97D300;
    color: #2a2a2a;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 48px
}

.ctus .tier-name {
    font-size: 18px;
    font-weight: 800;
    color: #64011A;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ctus .tier-price {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #64011A
}

.ctus .tier-price span {
    font-size: 18px;
    font-weight: 400;
    opacity: .7
}

.ctus .tier-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a3a
}

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

.ctus .feat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a3a
}

.ctus .feat-check {
    color: #64011A;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px
}

.ctus .feat-cross {
    color: #64011a4d;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px
}

.ctus .feat-item.unavail {
    opacity: .5
}

.ctus .tier-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid #64011A;
    background: transparent;
    color: #64011A;
    position: relative;
    overflow: hidden;
    transition: color .38s ease-in-out
}

.ctus .tier-btn::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #64011A;
    transition: bottom .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.ctus .tier-btn:hover::before {
    bottom: 0
}

.ctus .tier-btn:hover {
    color: #fff
}

.ctus .tier-btn span {
    position: relative;
    z-index: 1
}

.ctus .tier-card.featured .tier-btn {
    background: #97D300;
    border-color: #97D300;
    color: #2a2a2a
}

.ctus .tier-card.featured .tier-btn::before {
    background: #97d300b3
}

.ctus .tier-card.featured .tier-btn:hover {
    color: #2a2a2a
}

.ctus .img-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 6px 22px 1px #64011a17;
    margin-top: 28px
}

.ctus .img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1), filter .42s ease-in-out;
    filter: brightness(0.95)
}

.ctus .img-card:hover img {
    transform: scale(1.04);
    filter: brightness(1)
}

.ctus .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, #64011abf, transparent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35
}

.ctus .border-trace {
    position: relative;
    border-radius: 8px
}

.ctus .border-trace::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #97D300, #64011A) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s ease-in-out;
    pointer-events: none
}

.ctus .border-trace:hover::after {
    opacity: 1
}

@media (max-width: 768px) {
    .ctus .split-blk {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 56px 0 28px
    }

    .ctus .sidebar {
        position: static
    }

    .ctus .frow {
        grid-template-columns: 1fr
    }

    .ctus .form-panel {
        padding: 28px
    }

    .ctus .tier-grid {
        grid-template-columns: 1fr;
        padding: 0 28px
    }

    .ctus .side-heading {
        font-size: 42px
    }
}

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

.strt .pg-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.strt .divider-blur {
    height: 1px;
    background: transparent;
    box-shadow: 0 2px 22px 4px #64011a17;
    margin: 0
}

.strt .titblk {
    padding: 56px 0;
    background: #F7F8F9;
    position: relative
}

.strt .titblk-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 28px;
    align-items: center
}

.strt .titblk-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    filter: grayscale(100%);
    border-radius: 8px;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    display: block
}

.strt .titblk-txt {
    text-align: center;
    position: relative
}

.strt .titblk-pat {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .04;
    background-image: repeating-linear-gradient(45deg, #64011A 0px, #64011A 2px, transparent 2px, transparent 12px);
    border-radius: 8px;
    pointer-events: none
}

.strt .titblk-pre {
    font-size: 15px;
    line-height: 1.35;
    color: #64011A;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
    font-weight: 600
}

.strt .titblk-h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1b0008;
    margin-bottom: 28px;
    font-weight: 800
}

.strt .titblk-h1 span {
    display: block
}

.strt .titblk-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin-bottom: 28px
}

.strt .btn-prim {
    display: inline-block;
    padding: 16px 56px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.strt .btn-prim::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #97D300;
    transition: bottom .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.strt .btn-prim:hover::before {
    bottom: 0
}

.strt .btn-prim:hover {
    color: #1b0008
}

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

.strt .approach {
    padding: 96px 0;
    background: #fff
}

.strt .approach-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.strt .sec-prefix {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

.strt .sec-shape {
    width: 18px;
    height: 18px;
    background: #97D300;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    flex-shrink: 0
}

.strt .sec-label {
    font-size: 15px;
    color: #64011A;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

.strt .approach-h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 56px;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.strt .approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.strt .appr-card {
    border: 1.5px dashed #64011a38;
    border-radius: 8px;
    padding: 28px;
    background: #F7F8F9;
    transition: box-shadow .38s ease-in-out
}

.strt .appr-card:hover {
    box-shadow: 2px 6px 22px 1px #64011a17
}

.strt .appr-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(to top, #64011A, #64011a4d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.strt .appr-card-icon i {
    color: #F7F8F9;
    font-size: 18px
}

.strt .appr-card h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin-bottom: 8px
}

.strt .appr-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin: 0
}

.strt .approach-img-wrap {
    margin-top: 56px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 1px #64011a1f
}

.strt .approach-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block
}

.strt .exper {
    padding: 96px 0;
    background: linear-gradient(to top, #97d3001f, transparent);
    position: relative
}

.strt .exper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: 0 2px 22px 4px #64011a17;
    background: transparent
}

.strt .exper-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.strt .exper-img-col {
    position: relative
}

.strt .exper-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    display: block
}

.strt .exper-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: #64011A;
    color: #F7F8F9;
    border-radius: 8px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.strt .exper-txt h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 28px;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.strt .exper-quote {
    border-top: 2px solid #97D300;
    padding-top: 16px;
    margin-bottom: 28px
}

.strt .exper-quote p {
    font-size: 18px;
    line-height: 1.55;
    color: #1b0008;
    font-style: italic;
    text-align: justify;
    margin: 0 0 8px
}

.strt .exper-quote cite {
    font-size: 15px;
    color: #64011A;
    font-style: normal;
    font-weight: 600
}

.strt .exper-body {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin: 0
}

.strt .ltval {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.strt .ltval-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.strt .ltval-intro {
    max-width: 640px;
    margin-bottom: 56px;
    padding: 28px;
    border-radius: 8px;
    background: #F7F8F9;
    box-shadow: 2px 2px 2px 1px #64011a12;
    border-top: 3px solid #64011A
}

.strt .ltval-intro p {
    font-size: 18px;
    line-height: 1.55;
    color: #1b0008;
    text-align: justify;
    margin: 0
}

.strt .ltval-h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.strt .ltval-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.strt .ltval-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 28px;
    position: relative
}

.strt .ltval-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    width: 2px;
    height: calc(100% - 28px);
    background: linear-gradient(to bottom, #97D300, #97d3001a)
}

.strt .ltval-num {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: #64011A;
    color: #F7F8F9;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.strt .ltval-step-body {
    padding-bottom: 28px
}

.strt .ltval-step-body h4 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin-bottom: 8px
}

.strt .ltval-step-body p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin: 0
}

.strt .supp {
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.strt .supp-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #64011A;
    animation: desatcycle 8s ease-in-out infinite
}

@keyframes desatcycle {
    0% {
        filter: saturate(1)
    }

    50% {
        filter: saturate(0.3)
    }

    100% {
        filter: saturate(1)
    }
}

.strt .supp-pat {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .07;
    pointer-events: none
}

.strt .supp-pat svg {
    width: 100%;
    height: 100%
}

.strt .supp-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1
}

.strt .supp-h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #F7F8F9;
    margin-bottom: 16px
}

.strt .supp-lead {
    font-size: 18px;
    line-height: 1.55;
    color: #f7f8f9d9;
    max-width: 560px;
    text-align: justify;
    margin-bottom: 56px
}

.strt .supp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.strt .supp-item {
    background: #f7f8f914;
    border: 1px solid #f7f8f926;
    border-radius: 8px;
    padding: 28px;
    transition: background .4s ease-in-out
}

.strt .supp-item:hover {
    background: #f7f8f924
}

.strt .supp-item i {
    font-size: 28px;
    color: #97D300;
    display: block;
    margin-bottom: 16px
}

.strt .supp-item h4 {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #F7F8F9;
    margin-bottom: 8px
}

.strt .supp-item p {
    font-size: 15px;
    line-height: 1.55;
    color: #f7f8f9bf;
    margin: 0
}

.strt .fitchk {
    padding: 96px 0;
    background: #F7F8F9
}

.strt .fitchk-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px
}

.strt .fitchk-txt h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.strt .fitchk-txt p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin-bottom: 28px
}

.strt .fitchk-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 2px 10px 40px 1px #64011a1f;
    display: block
}

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

.strt .fit-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    align-items: start
}

.strt .fit-list li .fit-num {
    width: 28px;
    height: 28px;
    border-radius: 48px;
    background: #97D300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #1b0008;
    flex-shrink: 0
}

.strt .fit-list li .fit-num.no {
    background: #64011a1f;
    color: #64011A
}

.strt .fit-list li span {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    padding-top: 4px
}

.strt .fit-grp-label {
    font-size: 15px;
    font-weight: 700;
    color: #64011A;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.strt .avail {
    padding: 96px 0;
    background: #fff
}

.strt .avail-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 28px
}

.strt .avail-h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(to top, #64011A, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block
}

.strt .avail-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    margin-bottom: 56px;
    max-width: 560px
}

.strt .avail-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.strt .avail-card {
    border-radius: 8px;
    background: #F7F8F9;
    box-shadow: 2px 2px 2px 1px #64011a12;
    overflow: hidden;
    transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    flex-direction: column
}

.strt .avail-card:hover {
    box-shadow: 2px 10px 40px 1px #64011a1f;
    transform: translateY(-4px)
}

.strt .avail-card-top {
    padding: 28px;
    background: linear-gradient(to top, #64011a14, transparent)
}

.strt .avail-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #64011A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.strt .avail-card-icon i {
    color: #F7F8F9;
    font-size: 22px
}

.strt .avail-card h4 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin-bottom: 8px
}

.strt .avail-card-body {
    padding: 0 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.strt .avail-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018;
    text-align: justify;
    margin: 0 0 16px;
    flex: 1
}

.strt .avail-card-link {
    font-size: 15px;
    font-weight: 700;
    color: #64011A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .35s ease-in-out
}

.strt .avail-card-link:hover {
    gap: 16px
}

.strt .faq-wrap {
    margin-top: 56px
}

.strt .faq-wrap h3 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0008;
    margin-bottom: 28px
}

.strt .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.strt .faq-item {
    border-radius: 8px;
    background: #F7F8F9;
    box-shadow: 2px 2px 2px 1px #64011a12
}

.strt .faq-item summary {
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #1b0008;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.strt .faq-item summary::-webkit-details-marker {
    display: none
}

.strt .faq-item summary i {
    color: #64011A;
    font-size: 18px;
    transition: transform .38s ease-in-out
}

.strt .faq-item[open] summary i {
    transform: rotate(180deg)
}

.strt .faq-item .faq-ans {
    padding: 0 28px 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #3a1018
}

@media (max-width: 768px) {
    .strt .titblk-inner {
        grid-template-columns: 1fr
    }

    .strt .titblk-img {
        height: 200px
    }

    .strt .titblk-h1 {
        font-size: 42px
    }

    .strt .approach-grid {
        grid-template-columns: 1fr
    }

    .strt .exper-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .strt .exper-badge {
        position: static;
        margin-top: 16px;
        display: inline-block
    }

    .strt .supp-grid {
        grid-template-columns: 1fr
    }

    .strt .fitchk-inner {
        grid-template-columns: 1fr
    }

    .strt .avail-cards {
        grid-template-columns: 1fr
    }

    .strt .avail-h2 {
        font-size: 42px
    }
}

@media (max-width: 480px) {
    .strt .titblk-h1 {
        font-size: 42px
    }

    .strt .approach-h2,
    .strt .exper-txt h2,
    .strt .ltval-h2,
    .strt .supp-h2,
    .strt .fitchk-txt h2 {
        font-size: 42px
    }
}

.successPg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background-color: #F7F8F9
}

.successPg .cardWrap {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.successPg .iconRing {
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: linear-gradient(to top, #97D300, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 2px 6px 22px 1px #64011a17
}

.successPg .iconRing svg {
    width: 36px;
    height: 36px
}

.successPg .mainHead {
    font-size: 42px;
    line-height: 1.1;
    color: #64011A;
    margin: 0 0 16px;
    background: linear-gradient(to top, #97D300, #64011A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.successPg .subTxt {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a3a;
    max-width: 520px;
    margin: 0 0 56px;
    text-align: justify
}

.successPg .actionsRow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.successPg .btnPrimary {
    position: relative;
    overflow: hidden;
    padding: 16px 28px;
    font-size: 15px;
    line-height: 1.35;
    color: #F7F8F9;
    background-color: #64011A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 2px 6px 22px 1px #64011a17;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.successPg .btnPrimary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: #97D300;
    transition: bottom .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.successPg .btnPrimary:hover::before {
    bottom: 0
}

.successPg .btnPrimary:hover {
    color: #64011A
}

.successPg .btnPrimary span {
    position: relative;
    z-index: 1
}

.successPg .btnSecondary {
    position: relative;
    overflow: hidden;
    padding: 16px 28px;
    font-size: 15px;
    line-height: 1.35;
    color: #64011A;
    background-color: transparent;
    border: 2px solid #64011A;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .35s ease-in-out, border-color .35s ease-in-out
}

.successPg .btnSecondary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: #64011A;
    transition: bottom .4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.successPg .btnSecondary:hover::before {
    bottom: 0
}

.successPg .btnSecondary:hover {
    color: #F7F8F9
}

.successPg .btnSecondary span {
    position: relative;
    z-index: 1
}

.successPg .divLine {
    width: 56px;
    height: 3px;
    background: linear-gradient(to right, #64011A, #97D300);
    border-radius: 8px;
    margin: 0 auto 28px
}

@media (max-width: 600px) {
    .successPg .mainHead {
        font-size: 42px
    }

    .successPg .actionsRow {
        flex-direction: column;
        align-items: stretch
    }

    .successPg .btnPrimary,
    .successPg .btnSecondary {
        justify-content: center
    }
}