html {
box-sizing: border-box
}

*,
::before,
::after {
box-sizing: inherit
}

body {
margin: 0;
min-height: 100vh;
scrollbar-gutter: stable
}

.top-bar {
background: #1E243B;
padding: 8px 40px;
display: flex;
align-items: center;
justify-content: space-between
}

.top-bar .brand-mark {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none
}

.brand-mark .logo-ring {
width: 60px;
height: 60px;
border-radius: 50%;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 2px #f90a0059 0 1px 2px 1px #1e243b14;
flex-shrink: 0
}

.brand-mark .logo-ring img {
width: 52px;
height: 52px;
object-fit: contain;
display: block
}

.top-bar .bar-contact {
display: flex;
align-items: center;
gap: 20px
}

.bar-contact a {
color: #F1F0F0;
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
text-decoration: none;
display: flex;
align-items: center;
gap: 4px;
transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bar-contact a:hover {
color: #F90A00
}

.bar-contact a:focus-visible {
outline: 2px solid #F90A00;
outline-offset: 2px;
border-radius: 2px
}

.bar-contact .mdi {
font-size: 15px;
color: #F90A00
}

.hdr-rule {
height: 3px;
background: linear-gradient(90deg, #F90A00 0%, #1E243B 60%, #F90A00 100%);
margin: 0;
border: none
}

.nav-bar {
background: linear-gradient(90deg, #F1F0F0 0%, #fff 50%, #F1F0F0 100%);
padding: 0 40px;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.nav-bar nav {
max-width: 1440px;
margin: 0 auto;
display: flex;
align-items: stretch;
flex-wrap: wrap;
gap: 0
}

.nav-bar nav a {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
color: #1E243B;
text-decoration: none;
padding: 20px;
display: flex;
align-items: center;
gap: 8px;
position: relative;
letter-spacing: -.01em;
transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-bar nav a::after {
content: "";
position: absolute;
bottom: 0;
left: 20px;
right: 20px;
height: 3px;
background: #F90A00;
border-radius: 2px 2px 0 0;
transform: scaleX(0);
transition: transform .22s cubic-bezier(0.0, 0, 0.2, 1);
transform-origin: center
}

.nav-bar nav a:hover {
color: #F90A00
}

.nav-bar nav a:hover::after {
transform: scaleX(1)
}

.nav-bar nav a.active {
color: #F90A00
}

.nav-bar nav a.active::after {
transform: scaleX(1)
}

.nav-bar nav a:focus-visible {
outline: 2px solid #F90A00;
outline-offset: -2px;
border-radius: 2px
}

.nav-bar nav a .mdi {
font-size: 15px;
opacity: .7
}

@media (max-width: 768px) {
.top-bar {
padding: 8px 20px;
flex-wrap: wrap;
gap: 8px
}

.top-bar .bar-contact {
gap: 8px
}

.nav-bar {
padding: 0 20px
}

.nav-bar nav a {
padding: 20px 8px;
font-size: 15px
}
}

@media (max-width: 390px) {
.top-bar {
padding: 8px
}

.bar-contact a span {
display: none
}

.nav-bar {
padding: 0 8px
}

.nav-bar nav {
gap: 0
}

.nav-bar nav a {
padding: 20px 4px;
font-size: 15px
}
}

.ftr-wrap {
background: #1E243B;
font-family: 'Exo 2', sans-serif
}

.ftr-top {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px 40px;
display: grid;
grid-template-columns: auto 1fr;
gap: 80px;
align-items: start
}

.ftr-brand {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 20px;
min-width: 180px
}

.ftr-brand .logo-ring {
width: 60px;
height: 60px;
border-radius: 50%;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 2px #f90a004d 0 1px 2px 1px #1e243b14;
flex-shrink: 0
}

.ftr-brand .logo-ring img {
width: 52px;
height: 52px;
object-fit: contain;
display: block
}

.ftr-brand .ftr-desc {
color: #F1F0F0;
font-size: 15px;
font-weight: 400;
line-height: 1.8;
max-width: 240px;
opacity: .85
}

.ftr-brand .ftr-cta-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: #fff;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
text-decoration: none;
border: 2px solid #F90A00;
border-radius: 4px;
padding: 8px 20px;
background: transparent;
transition: background .25s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr-brand .ftr-cta-link:hover {
background: #F90A00;
color: #fff;
box-shadow: 0 6px 25px 1px #f90a001c
}

.ftr-brand .ftr-cta-link:focus-visible {
outline: 2px solid #F1F0F0;
outline-offset: 2px
}

.ftr-info {
display: flex;
flex-direction: column;
gap: 20px;
padding-top: 8px
}

.ftr-addr {
color: #F1F0F0;
font-size: 15px;
font-weight: 400;
line-height: 1.8;
opacity: .75
}

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

.ftr-contacts a {
color: #F1F0F0;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
opacity: .85;
transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), opacity .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr-contacts a:hover {
color: #F90A00;
opacity: 1
}

.ftr-contacts a:focus-visible {
outline: 2px solid #F90A00;
outline-offset: 2px;
border-radius: 2px
}

.ftr-contacts .mdi {
color: #F90A00;
font-size: 15px
}

.ftr-divider {
max-width: 1440px;
margin: 0 auto;
padding: 0 40px;
height: 1px;
background: linear-gradient(90deg, transparent 0%, #f1f0f026 30%, #f90a0066 50%, #f1f0f026 70%, transparent 100%)
}

.ftr-bottom {
max-width: 1440px;
margin: 0 auto;
padding: 20px 40px 40px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 8px
}

.ftr-copy {
color: #F1F0F0;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
opacity: .55
}

.ftr-legal {
display: flex;
align-items: center;
gap: 20px
}

.ftr-legal a {
color: #F1F0F0;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
text-decoration: none;
opacity: .55;
transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr-legal a:hover {
opacity: 1;
color: #F90A00
}

.ftr-legal a:focus-visible {
outline: 2px solid #F90A00;
outline-offset: 2px;
border-radius: 2px
}

@media (max-width: 768px) {
.ftr-top {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 20px 20px
}

.ftr-divider {
padding: 0 20px
}

.ftr-bottom {
padding: 20px 20px 40px;
flex-direction: column;
align-items: flex-start;
gap: 8px
}
}

@media (max-width: 390px) {
.ftr-top {
padding: 40px 8px 20px
}

.ftr-divider {
padding: 0 8px
}

.ftr-bottom {
padding: 20px 8px 40px
}
}

.ck-bar {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 8000;
background: #1E243B;
box-shadow: 0 8px 60px 1px #1e243b1f;
transform: translateY(-100%);
transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck-bar.shown {
transform: translateY(0)
}

.ck-inner {
max-width: 1440px;
margin: 0 auto;
padding: 20px 40px;
display: flex;
flex-direction: column;
gap: 8px
}

.ck-head {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap
}

.ck-label {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 700;
line-height: 1.5;
color: #fff
}

.ck-text {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #F1F0F0;
opacity: .8;
max-width: 700px
}

.ck-actions {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap
}

.ck-btn {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
border: 2px solid #F90A00;
background: transparent;
color: #fff;
border-radius: 4px;
padding: 8px 20px;
cursor: pointer;
transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck-btn:hover {
background: #F90A00;
color: #fff
}

.ck-btn:focus-visible {
outline: 2px solid #F1F0F0;
outline-offset: 2px
}

.ck-btn.secondary {
border-color: #f1f0f066;
color: #F1F0F0
}

.ck-btn.secondary:hover {
background: #f1f0f01a;
color: #fff
}

.ck-toggle-btn {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
background: transparent;
border: none;
color: #F90A00;
cursor: pointer;
padding: 8px 0;
display: flex;
align-items: center;
gap: 4px;
text-decoration: underline;
text-underline-offset: 3px
}

.ck-toggle-btn:focus-visible {
outline: 2px solid #F90A00;
outline-offset: 2px;
border-radius: 2px
}

.ck-panel {
display: none;
padding: 20px;
background: #f1f0f00d;
border-radius: 4px;
border: 1px solid #f1f0f01f
}

.ck-panel.open {
display: block
}

.ck-opt {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap
}

.ck-opt-label {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 500;
line-height: 1.5;
color: #F1F0F0
}

.ck-opt-desc {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #F1F0F0;
opacity: .65;
max-width: 500px
}

.ck-switch {
position: relative;
width: 44px;
height: 24px;
flex-shrink: 0
}

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

.ck-track {
position: absolute;
inset: 0;
background: #f1f0f033;
border-radius: 22px;
cursor: pointer;
transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck-track::before {
content: "";
position: absolute;
width: 18px;
height: 18px;
left: 3px;
top: 3px;
background: #fff;
border-radius: 50%;
transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck-switch input:checked+.ck-track {
background: #F90A00
}

.ck-switch input:checked+.ck-track::before {
transform: translateX(20px)
}

.ck-switch input:focus-visible+.ck-track {
outline: 2px solid #F90A00;
outline-offset: 2px
}

.ck-opt-sale {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #f1f0f01f
}

.ck-sale-notice {
font-family: 'Exo 2', sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
color: #F1F0F0;
opacity: .75;
margin-bottom: 8px
}

@media (max-width: 768px) {
.ck-inner {
padding: 20px
}
}

@media (max-width: 390px) {
.ck-inner {
padding: 20px 8px
}
}

.doc-inner {
max-width: 860px;
margin: 0 auto;
padding: 80px 40px;
color: #1E243B;
line-height: 1.8;
font-size: 15px
}

.doc-inner h1 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin-bottom: 40px;
margin-top: 0;
padding-bottom: 20px;
border-bottom: 2px solid #F1F0F0
}

.doc-inner h2 {
font-size: 31px;
line-height: 1.1;
letter-spacing: -.01em;
color: #1E243B;
margin-top: 80px;
margin-bottom: 20px
}

.doc-inner h3 {
font-size: 23px;
line-height: 1.5;
letter-spacing: -.01em;
color: #1E243B;
margin-top: 40px;
margin-bottom: 20px
}

.doc-inner h4 {
font-size: 15px;
line-height: 1.5;
letter-spacing: .04em;
text-transform: uppercase;
color: #F90A00;
margin-top: 40px;
margin-bottom: 8px
}

.doc-inner h5 {
font-size: 15px;
line-height: 1.5;
font-weight: 700;
color: #1E243B;
margin-top: 20px;
margin-bottom: 8px
}

.doc-inner h6 {
font-size: 15px;
line-height: 1.5;
font-weight: 600;
color: #1E243B;
opacity: .7;
margin-top: 20px;
margin-bottom: 8px
}

.doc-inner a {
color: #F90A00;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .15s cubic-bezier(0.0, 0, 0.2, 1)
}

.doc-inner a:hover {
color: #1E243B;
text-decoration-color: #F90A00
}

.doc-inner a:visited {
color: #1E243B
}

.doc-inner hr {
border: none;
border-top: 1px solid #F1F0F0;
margin: 40px 0
}

.doc-inner table {
width: 100%;
border-collapse: collapse;
margin: 40px 0;
font-size: 15px;
line-height: 1.5;
border-radius: 4px;
overflow: hidden;
box-shadow: 0 1px 2px 1px #f90a0014
}

.doc-inner thead {
background-color: #1E243B;
color: #fff
}

.doc-inner thead th {
padding: 20px;
text-align: left;
font-size: 15px;
letter-spacing: .03em;
font-weight: 600;
border: none
}

.doc-inner tbody tr {
border-bottom: 1px solid #F1F0F0;
transition: background-color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.doc-inner tbody tr:last-child {
border-bottom: none
}

.doc-inner tbody tr:hover {
background-color: #F1F0F0
}

.doc-inner td {
padding: 20px;
vertical-align: top;
color: #1E243B;
border: none
}

.doc-inner th {
padding: 20px;
vertical-align: top
}

.doc-inner div {
margin-bottom: 20px
}

.doc-inner div.notice {
background-color: #F1F0F0;
border-left: 3px solid #F90A00;
border-radius: 2px 14px 14px 2px;
padding: 20px;
margin: 40px 0
}

@media (max-width: 768px) {
.doc-inner {
padding: 40px 20px
}

.doc-inner h1 {
font-size: 31px
}

.doc-inner h2 {
font-size: 23px;
margin-top: 40px
}

.doc-inner h3 {
font-size: 15px
}

.doc-inner table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch
}
}

@media (max-width: 390px) {
.doc-inner {
padding: 40px 20px
}

.doc-inner h1 {
font-size: 23px
}

.doc-inner h2 {
font-size: 15px
}

.doc-inner thead th,
.doc-inner td {
padding: 8px
}
}

.abt-us {
width: 100%;
max-width: 1440px;
margin: 0 auto;
overflow-x: clip
}

.abt-us .pg-band {
display: flex;
flex-direction: row;
min-height: 480px;
position: relative
}

.abt-us .pg-band .txt-zone {
flex: 0 0 52%;
background: #1E243B;
padding: 80px 40px 80px 80px;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
gap: 20px
}

.abt-us .pg-band .txt-zone::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
background-size: 180px 180px;
pointer-events: none
}

.abt-us .pg-band .txt-zone .accent-line {
width: 40px;
height: 3px;
background: #F90A00
}

.abt-us .pg-band .txt-zone .band-h1 {
font-size: 58px;
line-height: 1.1;
letter-spacing: -.02em;
color: #fff;
margin: 0;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
flex-wrap: wrap
}

.abt-us .pg-band .txt-zone .band-h1 .live-num {
display: inline-flex;
align-items: center;
justify-content: center;
background: #F90A00;
color: #fff;
font-size: 31px;
line-height: 1.1;
padding: 4px 20px;
border-radius: 4px;
align-self: center;
letter-spacing: 0
}

.abt-us .pg-band .txt-zone .band-sub {
font-size: 15px;
line-height: 1.8;
color: #F1F0F0;
margin: 0;
max-width: 420px;
opacity: .88
}

.abt-us .pg-band .txt-zone .math-bg {
position: absolute;
bottom: 20px;
right: 40px;
font-size: 200px;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1px #f1f0f012;
pointer-events: none;
user-select: none;
z-index: 0
}

.abt-us .pg-band .img-mosaic {
flex: 0 0 48%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 4px;
position: relative
}

.abt-us .pg-band .img-mosaic figure {
margin: 0;
overflow: hidden;
position: relative
}

.abt-us .pg-band .img-mosaic figure:first-child {
grid-column: 1 / 2;
grid-row: 1 / 3
}

.abt-us .pg-band .img-mosaic figure img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block
}

.abt-us .pg-band .img-mosaic figure::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a0047 0%, #1e243b73 100%);
pointer-events: none
}

.abt-us .pg-band .diagonal-div {
position: absolute;
left: calc(52% - 30px);
top: 0;
width: 60px;
height: 100%;
z-index: 2;
pointer-events: none
}

.abt-us .pg-band .diagonal-div svg {
width: 100%;
height: 100%
}

.abt-us .about-body {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: 600px
}

.abt-us .about-body .col-dark {
background: #1E243B;
padding: 80px 40px 80px 80px;
display: flex;
flex-direction: column;
gap: 40px;
position: relative
}

.abt-us .about-body .col-light {
background: #F1F0F0;
padding: 80px 80px 80px 40px;
display: flex;
flex-direction: column;
gap: 40px
}

.abt-us .about-body .col-dark .accent-line {
width: 40px;
height: 3px;
background: #F90A00
}

.abt-us .about-body .col-light .accent-line {
width: 40px;
height: 3px;
background: #F90A00
}

.abt-us .about-body .col-dark .sec-h2 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #fff;
margin: 0
}

.abt-us .about-body .col-light .sec-h2 {
font-size: 31px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0
}

.abt-us .about-body .col-dark .body-p {
font-size: 15px;
line-height: 1.8;
color: #F1F0F0;
margin: 0;
opacity: .88
}

.abt-us .about-body .col-light .body-p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
margin: 0
}

.abt-us .about-body .stat-hero {
display: flex;
flex-direction: column;
gap: 8px
}

.abt-us .about-body .stat-hero .stat-num {
font-size: 58px;
line-height: 1.1;
letter-spacing: -.03em;
color: #F90A00;
font-weight: 700
}

.abt-us .about-body .stat-hero .stat-label {
font-size: 15px;
line-height: 1.5;
color: #F1F0F0;
opacity: .75;
max-width: 260px
}

.abt-us .about-body .before-after {
display: flex;
flex-direction: row;
gap: 20px;
align-items: stretch
}

.abt-us .about-body .before-after .ba-item {
flex: 1;
padding: 20px;
border-radius: 4px;
display: flex;
flex-direction: column;
gap: 8px
}

.abt-us .about-body .before-after .ba-item.before {
background: #f1f0f00f;
border: 1px solid #f1f0f01f
}

.abt-us .about-body .before-after .ba-item.after {
background: #f90a001f;
border: 1px solid #f90a0040
}

.abt-us .about-body .before-after .ba-item .ba-label {
font-size: 15px;
line-height: 1.5;
color: #F1F0F0;
opacity: .6;
text-transform: uppercase;
letter-spacing: .08em
}

.abt-us .about-body .before-after .ba-item .ba-val {
font-size: 23px;
line-height: 1.1;
color: #fff;
letter-spacing: -.01em
}

.abt-us .about-body .before-after .ba-item.after .ba-val {
color: #F90A00
}

.abt-us .about-body .team-strip {
display: flex;
flex-direction: column;
gap: 20px
}

.abt-us .about-body .team-strip .sec-h3 {
font-size: 23px;
line-height: 1.1;
color: #1E243B;
margin: 0;
letter-spacing: -.01em
}

.abt-us .about-body .team-strip .team-cards {
display: flex;
flex-direction: column;
gap: 20px
}

.abt-us .about-body .team-strip .t-card {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
padding: 20px;
background: #fff;
border-radius: 4px;
box-shadow: 0 1px 2px 1px #1e243b14;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), outline .15s cubic-bezier(0.0, 0, 0.2, 1);
outline: 2px solid transparent;
outline-offset: 0
}

.abt-us .about-body .team-strip .t-card:hover {
box-shadow: 0 6px 25px 1px #1e243b1c;
outline: 2px solid #F90A00;
outline-offset: 3px
}

.abt-us .about-body .team-strip .t-card .portrait-wrap {
flex: 0 0 72px;
width: 72px;
height: 92px;
overflow: hidden
}

.abt-us .about-body .team-strip .t-card .portrait-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block
}

.abt-us .about-body .team-strip .t-card .t-info {
display: flex;
flex-direction: column;
gap: 4px;
flex: 1
}

.abt-us .about-body .team-strip .t-card .t-info .t-name {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
font-weight: 600;
margin: 0
}

.abt-us .about-body .team-strip .t-card .t-info .t-role {
font-size: 15px;
line-height: 1.5;
color: #F90A00;
margin: 0
}

.abt-us .about-body .team-strip .t-card .t-info .t-bio {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
margin: 0;
opacity: .75
}

.abt-us .about-body .col-light .img-feature {
width: 100%;
overflow: hidden;
border-radius: 2px;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.abt-us .about-body .col-light .img-feature img {
width: 100%;
display: block;
object-fit: cover
}

.abt-us .about-body .col-light .approach-list {
display: flex;
flex-direction: column;
gap: 20px;
list-style: none;
margin: 0;
padding: 0
}

.abt-us .about-body .col-light .approach-list li {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
padding: 20px;
background: #fff;
border-radius: 4px;
box-shadow: 0 1px 2px 1px #1e243b14;
animation: lift-in .25s cubic-bezier(0.0, 0, 0.2, 1) both
}

.abt-us .about-body .col-light .approach-list li:nth-child(1) {
animation-delay: .05s
}

.abt-us .about-body .col-light .approach-list li:nth-child(2) {
animation-delay: .12s
}

.abt-us .about-body .col-light .approach-list li:nth-child(3) {
animation-delay: .19s
}

@keyframes lift-in {
from {
opacity: 0;
transform: translateY(10px)
}

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

.abt-us .about-body .col-light .approach-list li .al-icon {
flex: 0 0 40px;
width: 40px;
height: 40px;
background: linear-gradient(211deg, #F90A00 0%, #1E243B 100%);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 20px
}

.abt-us .about-body .col-light .approach-list li .al-text {
display: flex;
flex-direction: column;
gap: 4px;
flex: 1
}

.abt-us .about-body .col-light .approach-list li .al-text strong {
font-size: 15px;
line-height: 1.5;
color: #1E243B
}

.abt-us .about-body .col-light .approach-list li .al-text span {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .72
}

.abt-us .about-body .col-dark .noise-layer {
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
background-size: 180px 180px;
pointer-events: none;
z-index: 0
}

.abt-us .about-body .col-dark> :not(.noise-layer) {
position: relative;
z-index: 1
}

.abt-us .about-body .col-dark .img-pair {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px
}

.abt-us .about-body .col-dark .img-pair figure {
margin: 0;
overflow: hidden;
border-radius: 2px
}

.abt-us .about-body .col-dark .img-pair figure img {
width: 100%;
display: block;
object-fit: cover
}

.abt-us .svgdiv {
width: 100%;
line-height: 0;
background: #F1F0F0
}

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

@media (max-width: 1280px) {
.abt-us .pg-band .txt-zone {
padding: 80px 40px
}

.abt-us .about-body .col-dark {
padding: 80px 40px
}

.abt-us .about-body .col-light {
padding: 80px 40px
}
}

@media (max-width: 768px) {
.abt-us .pg-band {
flex-direction: column
}

.abt-us .pg-band .txt-zone {
flex: none;
padding: 40px 20px
}

.abt-us .pg-band .img-mosaic {
flex: none;
height: 320px
}

.abt-us .pg-band .diagonal-div {
display: none
}

.abt-us .pg-band .txt-zone .band-h1 {
font-size: 43px
}

.abt-us .about-body {
grid-template-columns: 1fr
}

.abt-us .about-body .col-dark {
padding: 40px 20px
}

.abt-us .about-body .col-light {
padding: 40px 20px
}

.abt-us .about-body .col-dark .sec-h2 {
font-size: 31px
}
}

@media (max-width: 390px) {
.abt-us .pg-band .txt-zone .band-h1 {
font-size: 31px
}

.abt-us .about-body .before-after {
flex-direction: column
}

.abt-us .about-body .col-dark .stat-hero .stat-num {
font-size: 43px
}
}

.abt-us :focus-visible {
outline: 3px solid #F90A00 !important;
outline-offset: 3px !important
}

.lp-prog {
max-width: 1440px;
margin: 0 auto;
overflow-x: clip
}

.lp-prog .atmo {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: .13;
pointer-events: none;
z-index: 0
}

.lp-prog .top-strip {
position: relative;
padding: 40px 80px;
background: #fff;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center
}

.lp-prog .top-strip .atmo-a {
width: 420px;
height: 420px;
background: #F90A00;
top: -80px;
left: -120px
}

.lp-prog .top-strip .atmo-b {
width: 300px;
height: 300px;
background: #1E243B;
bottom: -60px;
right: 80px
}

.lp-prog .img-col {
position: relative;
z-index: 1
}

.lp-prog .img-border-wrap {
display: inline-block;
padding: 8px;
border: 2px dashed #F90A00;
border-radius: 14px;
width: 100%
}

.lp-prog .img-border-wrap img {
width: 100%;
height: auto;
display: block;
border-radius: 4px;
filter: grayscale(100%);
object-fit: cover
}

.lp-prog .text-col {
position: relative;
z-index: 1
}

.lp-prog .accent-line {
width: 40px;
height: 3px;
background: #F90A00;
border-radius: 2px;
margin-bottom: 20px
}

.lp-prog .strip-heading {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0 0 20px
}

.lp-prog .strip-heading .punct {
color: #F90A00
}

.lp-prog .strip-sub {
font-size: 15px;
line-height: 1.8;
color: #3a4060;
margin: 0 0 20px
}

.lp-prog .strip-tag {
display: inline-flex;
align-items: center;
gap: 8px;
background: #F1F0F0;
border-radius: 4px;
padding: 8px 20px;
font-size: 15px;
color: #1E243B;
font-weight: 600
}

.lp-prog .strip-tag .mdi {
color: #F90A00;
font-size: 18px
}

.lp-prog .prog-detail {
position: relative;
padding: 80px;
background: #F1F0F0
}

.lp-prog .prog-detail .glass-bg {
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a000a 0%, #1e243b0f 100%);
backdrop-filter: blur(2px);
pointer-events: none;
z-index: 0
}

.lp-prog .prog-detail>* {
position: relative;
z-index: 1
}

.lp-prog .detail-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 20px;
margin-bottom: 80px
}

.lp-prog .d-card {
background: #fff;
border-radius: 14px;
padding: 40px 20px;
box-shadow: 0 1px 2px 1px #1e243b14;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.lp-prog .d-card:hover {
box-shadow: 0 6px 25px 1px #1e243b1c;
transform: translateY(-3px)
}

.lp-prog .d-card.featured {
background: linear-gradient(211deg, #F90A00 0%, #1E243B 100%);
color: #fff
}

.lp-prog .d-card .card-icon {
font-size: 28px;
margin-bottom: 20px;
display: block
}

.lp-prog .d-card.featured .card-icon {
color: #ffffffd9
}

.lp-prog .d-card:not(.featured) .card-icon {
color: #F90A00
}

.lp-prog .d-card .card-label {
font-size: 15px;
line-height: 1.5;
font-weight: 700;
margin: 0 0 8px;
color: #1E243B
}

.lp-prog .d-card.featured .card-label {
color: #fff
}

.lp-prog .d-card .card-desc {
font-size: 15px;
line-height: 1.8;
color: #4a5070;
margin: 0
}

.lp-prog .d-card.featured .card-desc {
color: #ffffffd1
}

.lp-prog .d-card .card-num {
font-size: 43px;
line-height: 1.1;
font-weight: 800;
letter-spacing: -.02em;
color: #F90A00;
margin: 0 0 8px
}

.lp-prog .d-card.featured .card-num {
color: #fff
}

.lp-prog .modules-area {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start
}

.lp-prog .modules-list {
display: flex;
flex-direction: column;
gap: 8px
}

.lp-prog .mod-item {
background: #fff;
border-radius: 4px;
padding: 20px;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
box-shadow: 0 1px 2px 1px #f90a0014;
transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .mod-item:hover {
box-shadow: 0 6px 25px 1px #f90a001c
}

.lp-prog .mod-num {
font-size: 23px;
font-weight: 800;
color: #F90A00;
line-height: 1.1;
min-width: 32px
}

.lp-prog .mod-title {
font-size: 15px;
font-weight: 700;
color: #1E243B;
margin: 0 0 4px;
line-height: 1.5
}

.lp-prog .mod-text {
font-size: 15px;
line-height: 1.8;
color: #4a5070;
margin: 0
}

.lp-prog .side-panel {
display: flex;
flex-direction: column;
gap: 20px
}

.lp-prog .side-block {
background: #fff;
border-radius: 14px;
padding: 40px;
box-shadow: 0 8px 60px 1px #1e243b1f
}

.lp-prog .side-block .sb-heading {
font-size: 23px;
line-height: 1.1;
color: #1E243B;
margin: 0 0 20px;
font-weight: 700
}

.lp-prog .side-block .accent-line {
margin-bottom: 20px
}

.lp-prog .expert-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
margin-bottom: 20px
}

.lp-prog .expert-portrait {
width: 80px;
height: 80px;
border-radius: 50%;
object-fit: cover;
object-position: center;
flex-shrink: 0;
box-shadow: 0 1px 2px 1px #f90a0014
}

.lp-prog .expert-info .ex-name {
font-size: 15px;
font-weight: 700;
color: #1E243B;
margin: 0 0 4px
}

.lp-prog .expert-info .ex-role {
font-size: 15px;
color: #F90A00;
margin: 0;
line-height: 1.5
}

.lp-prog .expert-bio {
font-size: 15px;
line-height: 1.8;
color: #4a5070;
margin: 0 0 20px
}

.lp-prog .expert-bio:last-child {
margin-bottom: 0
}

.lp-prog .divider-wave {
width: 100%;
height: 20px;
background-image: radial-gradient(circle, #1E243B 1.5px, transparent 1.5px);
background-size: 20px 20px;
background-position: 0 center;
opacity: .18;
margin: 8px 0
}

.lp-prog .outcome-list {
display: flex;
flex-direction: column;
gap: 8px;
margin: 0;
padding: 0;
list-style: none
}

.lp-prog .outcome-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
font-size: 15px;
line-height: 1.8;
color: #3a4060
}

.lp-prog .outcome-list li .mdi {
color: #F90A00;
font-size: 18px;
margin-top: 3px;
flex-shrink: 0
}

.lp-prog .cta-link {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
color: #F90A00;
font-size: 15px;
font-weight: 700;
text-decoration: none;
border-bottom: 2px solid transparent;
padding-bottom: 4px;
transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1);
margin-top: 20px;
display: inline-flex
}

.lp-prog .cta-link:hover {
border-color: #F90A00;
color: #c00800 !important
}

.lp-prog .cta-link .mdi {
font-size: 18px;
transition: transform .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.lp-prog .cta-link:hover .mdi {
transform: translateX(4px)
}

.lp-prog .flip-in {
animation: flipReveal .45s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes flipReveal {
from {
opacity: 0;
transform: rotateX(-30deg) translateY(20px)
}

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

.lp-prog .notch-accent {
position: relative;
padding-left: 20px
}

.lp-prog .notch-accent::before {
content: '';
position: absolute;
left: 0;
top: 4px;
bottom: 4px;
width: 4px;
background: #F90A00;
border-radius: 2px
}

@media (max-width: 1280px) {
.lp-prog .top-strip {
padding: 40px;
gap: 40px
}

.lp-prog .prog-detail {
padding: 80px 40px
}

.lp-prog .detail-grid {
grid-template-columns: 1fr 1fr
}

.lp-prog .modules-area {
grid-template-columns: 1fr
}
}

@media (max-width: 768px) {
.lp-prog .top-strip {
grid-template-columns: 1fr;
padding: 40px 20px;
gap: 20px
}

.lp-prog .strip-heading {
font-size: 31px
}

.lp-prog .prog-detail {
padding: 40px 20px
}

.lp-prog .detail-grid {
grid-template-columns: 1fr 1fr;
gap: 8px
}

.lp-prog .d-card {
padding: 20px
}

.lp-prog .modules-area {
grid-template-columns: 1fr;
gap: 20px
}

.lp-prog .side-block {
padding: 20px
}
}

@media (max-width: 390px) {
.lp-prog .detail-grid {
grid-template-columns: 1fr
}

.lp-prog .strip-heading {
font-size: 23px
}
}

.innov {
max-width: 1440px;
margin: 0 auto;
overflow-x: clip
}

.innov .t-block {
position: relative;
padding: 80px 80px 120px;
background: #fff;
overflow: hidden
}

.innov .t-block .atm-spot {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: .13;
pointer-events: none
}

.innov .t-block .atm-spot.s1 {
width: 420px;
height: 420px;
background: #F90A00;
top: -120px;
right: -80px
}

.innov .t-block .atm-spot.s2 {
width: 300px;
height: 300px;
background: #1E243B;
bottom: 40px;
left: 60px
}

.innov .t-block .t-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
position: relative;
z-index: 1
}

.innov .t-block .t-label {
display: inline-block;
font-size: 15px;
line-height: 1.5;
letter-spacing: .08em;
text-transform: uppercase;
color: #F90A00;
margin-bottom: 20px;
font-weight: 600
}

.innov .t-block .t-head {
font-size: 58px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0 0 20px
}

.innov .t-block .t-head .punct {
color: #F90A00
}

.innov .t-block .t-sub {
font-size: 23px;
line-height: 1.5;
color: #1E243B;
opacity: .72;
margin: 0 0 40px;
max-width: 480px
}

.innov .t-block .t-desc {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .68;
max-width: 440px
}

.innov .t-block .img-clip-wrap {
position: relative;
display: flex;
justify-content: flex-end
}

.innov .t-block .img-clip {
width: 100%;
max-width: 520px;
height: 480px;
object-fit: cover;
object-position: center;
clip-path: polygon(0 0, 100% 0, 100% 80%, 85% 100%, 0 100%);
display: block;
border-radius: 2px
}

.innov .t-block .corner-rects {
position: absolute;
bottom: 20px;
left: -20px;
pointer-events: none
}

.innov .t-block .corner-rects span {
display: block;
border: 1px solid #1E243B;
opacity: .12;
position: absolute
}

.innov .t-block .corner-rects span:nth-child(1) {
width: 60px;
height: 60px;
top: 0;
left: 0;
border-radius: 2px
}

.innov .t-block .corner-rects span:nth-child(2) {
width: 80px;
height: 80px;
top: -10px;
left: -10px;
border-radius: 2px
}

.innov .t-block .corner-rects span:nth-child(3) {
width: 100px;
height: 100px;
top: -20px;
left: -20px;
border-radius: 2px
}

.innov .t-block .t-text-col {
opacity: 0;
transform: translateY(24px);
animation: fadeup .25s cubic-bezier(0.0, 0, 0.2, 1) .1s forwards
}

.innov .t-block .t-img-col {
opacity: 0;
transform: translateY(24px);
animation: fadeup .2s cubic-bezier(0.0, 0, 0.2, 1) .22s forwards
}

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

.innov .metrics-band {
background: #1E243B;
padding: 80px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
position: relative;
overflow: hidden
}

.innov .metrics-band::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a002e 0%, transparent 60%);
pointer-events: none
}

.innov .metrics-band::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(211deg, transparent 40%, #f90a0014 100%);
pointer-events: none;
animation: gradshift 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes gradshift {
0% {
opacity: 1
}

100% {
opacity: .4
}
}

.innov .metrics-band .met-item {
position: relative;
z-index: 1;
padding: 40px 20px;
border-top: 2px solid #f90a0066;
opacity: 0;
animation: fadeup .2s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

.innov .metrics-band .met-item:nth-child(1) {
animation-delay: .08s
}

.innov .metrics-band .met-item:nth-child(2) {
animation-delay: .15s
}

.innov .metrics-band .met-item:nth-child(3) {
animation-delay: .22s
}

.innov .metrics-band .met-item:nth-child(4) {
animation-delay: .29s
}

.innov .metrics-band .met-num {
font-size: 58px;
line-height: 1.1;
letter-spacing: -.03em;
color: #fff;
display: block;
margin-bottom: 8px
}

.innov .metrics-band .met-num .accent {
color: #F90A00
}

.innov .metrics-band .met-label {
font-size: 15px;
line-height: 1.5;
color: #f1f0f0a6
}

.innov .metrics-band .before-after {
grid-column: span 2;
display: flex;
align-items: center;
gap: 40px;
background: #f90a0014;
border-radius: 14px;
padding: 40px
}

.innov .metrics-band .ba-side {
flex: 1;
text-align: center
}

.innov .metrics-band .ba-val {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #fff;
display: block
}

.innov .metrics-band .ba-val.old {
color: #f1f0f059;
text-decoration: line-through;
font-size: 31px
}

.innov .metrics-band .ba-desc {
font-size: 15px;
line-height: 1.5;
color: #f1f0f08c;
margin-top: 8px;
display: block
}

.innov .metrics-band .ba-arrow {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: #F90A00;
flex-shrink: 0
}

.innov .metrics-band .ba-arrow svg {
width: 20px;
height: 20px;
fill: #fff
}

.innov .approach-grid {
padding: 80px;
background: #F1F0F0;
display: grid;
grid-template-columns: 340px 1fr;
gap: 80px;
align-items: start
}

.innov .approach-grid .ag-aside {
position: sticky;
top: 40px
}

.innov .approach-grid .ag-aside .acc-line {
width: 40px;
height: 3px;
background: #F90A00;
margin-bottom: 20px;
border-radius: 2px
}

.innov .approach-grid .ag-aside h2 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0 0 20px
}

.innov .approach-grid .ag-aside p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .65;
margin: 0
}

.innov .approach-grid .ag-main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px
}

.innov .approach-grid .ap-card {
background: #fff;
border-radius: 14px;
padding: 40px;
box-shadow: 0 1px 2px 1px #1e243b14;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .15s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden
}

.innov .approach-grid .ap-card:hover {
box-shadow: 0 6px 25px 1px #1e243b1c;
transform: translateY(-4px)
}

.innov .approach-grid .ap-card .card-num {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.03em;
color: #F1F0F0;
font-weight: 700;
position: absolute;
top: 20px;
right: 20px
}

.innov .approach-grid .ap-card .card-icon {
width: 40px;
height: 40px;
background: linear-gradient(211deg, #F90A00, #1E243B);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px
}

.innov .approach-grid .ap-card .card-icon i {
color: #fff;
font-size: 20px
}

.innov .approach-grid .ap-card h4 {
font-size: 23px;
line-height: 1.5;
color: #1E243B;
margin: 0 0 8px;
letter-spacing: -.01em
}

.innov .approach-grid .ap-card p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .62;
margin: 0
}

.innov .approach-grid .ap-card.wide {
grid-column: span 2;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center
}

.innov .approach-grid .ap-card.wide .wide-img-wrap {
position: relative
}

.innov .approach-grid .ap-card.wide .wide-img {
width: 100%;
height: 220px;
object-fit: cover;
object-position: center;
border-radius: 4px;
display: block;
transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .approach-grid .ap-card.wide:hover .wide-img {
transform: scale(1.02)
}

.innov .approach-grid .ap-card.wide .img-caption {
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a00d1, #1e243be0);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
opacity: 0;
transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .approach-grid .ap-card.wide:hover .img-caption {
opacity: 1
}

.innov .approach-grid .ap-card.wide .img-caption p {
color: #fff;
opacity: 1;
font-size: 15px;
line-height: 1.8;
text-align: center;
margin: 0
}

.innov .team-voices {
padding: 80px;
background: #fff;
position: relative
}

.innov .team-voices .tv-top {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 80px;
gap: 40px
}

.innov .team-voices .tv-top .acc-line {
width: 40px;
height: 3px;
background: #F90A00;
margin-bottom: 20px;
border-radius: 2px
}

.innov .team-voices .tv-top h2 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0
}

.innov .team-voices .tv-top p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .62;
max-width: 420px;
margin: 0
}

.innov .team-voices .tv-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px
}

.innov .team-voices .voice-card {
border-radius: 14px;
overflow: hidden;
box-shadow: 0 1px 2px 1px #1e243b14;
background: #F1F0F0;
display: flex;
flex-direction: column
}

.innov .team-voices .voice-card .vc-portrait {
position: relative;
flex-shrink: 0
}

.innov .team-voices .voice-card .vc-portrait img {
width: 100%;
height: 300px;
object-fit: cover;
object-position: center;
display: block
}

.innov .team-voices .voice-card .vc-portrait .img-cap {
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a00d9, #1e243be6);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
opacity: 0;
transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .team-voices .voice-card:hover .img-cap {
opacity: 1
}

.innov .team-voices .voice-card .img-cap span {
font-size: 15px;
line-height: 1.8;
color: #fff;
text-align: center
}

.innov .team-voices .voice-card .vc-body {
padding: 20px;
flex: 1;
display: flex;
flex-direction: column
}

.innov .team-voices .voice-card .vc-name {
font-size: 23px;
line-height: 1.5;
color: #1E243B;
margin: 0 0 4px;
letter-spacing: -.01em
}

.innov .team-voices .voice-card .vc-role {
font-size: 15px;
line-height: 1.5;
color: #F90A00;
margin: 0 0 20px
}

.innov .team-voices .voice-card .vc-quote {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .65;
margin: 0;
flex: 1
}

.innov .team-voices .voice-card.no-portrait {
background: linear-gradient(211deg, #1E243B, #2a3154)
}

.innov .team-voices .voice-card.no-portrait .vc-name {
color: #fff
}

.innov .team-voices .voice-card.no-portrait .vc-quote {
color: #f1f0f0a6
}

.innov .team-voices .voice-card.no-portrait .vc-body {
padding: 40px;
justify-content: flex-end;
min-height: 300px
}

.innov .team-voices .voice-card.no-portrait .vc-icon {
width: 48px;
height: 48px;
background: #f90a002e;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 40px
}

.innov .team-voices .voice-card.no-portrait .vc-icon i {
color: #F90A00;
font-size: 24px
}

.innov .tv-corner-rects {
position: absolute;
top: 40px;
right: 80px;
pointer-events: none
}

.innov .tv-corner-rects span {
display: block;
border: 1px solid #1E243B;
opacity: .07;
position: absolute;
border-radius: 2px
}

.innov .tv-corner-rects span:nth-child(1) {
width: 50px;
height: 50px;
top: 0;
left: 0
}

.innov .tv-corner-rects span:nth-child(2) {
width: 70px;
height: 70px;
top: -10px;
left: -10px
}

.innov .tv-corner-rects span:nth-child(3) {
width: 90px;
height: 90px;
top: -20px;
left: -20px
}

.innov .sub-grid-block {
padding: 80px;
background: #F1F0F0;
position: relative
}

.innov .sub-grid-block .sgb-head {
margin-bottom: 80px
}

.innov .sub-grid-block .sgb-head .acc-line {
width: 40px;
height: 3px;
background: #F90A00;
margin-bottom: 20px;
border-radius: 2px
}

.innov .sub-grid-block .sgb-head h2 {
font-size: 43px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0 0 20px
}

.innov .sub-grid-block .sgb-head p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .62;
max-width: 600px;
margin: 0
}

.innov .sub-grid-block .outer-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px
}

.innov .sub-grid-block .og-left {
display: flex;
flex-direction: column;
gap: 20px
}

.innov .sub-grid-block .og-right {
background: #fff;
border-radius: 14px;
padding: 40px;
box-shadow: 0 1px 2px 1px #1e243b14;
display: flex;
flex-direction: column;
gap: 20px
}

.innov .sub-grid-block .og-right .inner-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
flex: 1
}

.innov .sub-grid-block .og-right .ig-cell {
background: #F1F0F0;
border-radius: 4px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px
}

.innov .sub-grid-block .og-right .ig-cell .cell-val {
font-size: 31px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
font-weight: 700
}

.innov .sub-grid-block .og-right .ig-cell .cell-val span {
color: #F90A00
}

.innov .sub-grid-block .og-right .ig-cell .cell-label {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .6
}

.innov .sub-grid-block .og-right h4 {
font-size: 23px;
line-height: 1.5;
color: #1E243B;
margin: 0;
letter-spacing: -.01em
}

.innov .sub-grid-block .og-right p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .62;
margin: 0
}

.innov .sub-grid-block .feat-row {
background: #fff;
border-radius: 14px;
padding: 40px;
box-shadow: 0 1px 2px 1px #1e243b14;
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .sub-grid-block .feat-row:hover {
box-shadow: 0 6px 25px 1px #1e243b1c
}

.innov .sub-grid-block .feat-row .fr-icon {
width: 44px;
height: 44px;
background: linear-gradient(211deg, #F90A00, #1E243B);
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.innov .sub-grid-block .feat-row .fr-icon i {
color: #fff;
font-size: 20px
}

.innov .sub-grid-block .feat-row .fr-text h5 {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
margin: 0 0 4px;
font-weight: 600
}

.innov .sub-grid-block .feat-row .fr-text p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .62;
margin: 0
}

.innov .sub-grid-block .img-feat {
border-radius: 14px;
overflow: hidden;
position: relative;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.innov .sub-grid-block .img-feat img {
width: 100%;
height: 280px;
object-fit: cover;
object-position: center;
display: block;
transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .sub-grid-block .img-feat:hover img {
transform: scale(1.03)
}

.innov .sub-grid-block .img-feat .img-cap {
position: absolute;
inset: 0;
background: linear-gradient(211deg, #f90a00d1, #1e243be0);
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
opacity: 0;
transition: opacity .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.innov .sub-grid-block .img-feat:hover .img-cap {
opacity: 1
}

.innov .sub-grid-block .img-feat .img-cap p {
color: #fff;
font-size: 15px;
line-height: 1.8;
text-align: center;
margin: 0
}

.innov .sub-grid-block .sgb-corner {
position: absolute;
bottom: 80px;
right: 80px;
pointer-events: none
}

.innov .sub-grid-block .sgb-corner span {
display: block;
border: 1px solid #F90A00;
opacity: .1;
position: absolute;
border-radius: 2px
}

.innov .sub-grid-block .sgb-corner span:nth-child(1) {
width: 55px;
height: 55px;
top: 0;
left: 0
}

.innov .sub-grid-block .sgb-corner span:nth-child(2) {
width: 75px;
height: 75px;
top: -10px;
left: -10px
}

.innov .sub-grid-block .sgb-corner span:nth-child(3) {
width: 95px;
height: 95px;
top: -20px;
left: -20px
}

@media (max-width: 1280px) {
.innov .t-block {
padding: 80px 40px
}

.innov .t-block .t-grid {
gap: 40px
}

.innov .t-block .t-head {
font-size: 43px
}

.innov .metrics-band {
padding: 80px 40px;
grid-template-columns: repeat(2, 1fr)
}

.innov .metrics-band .before-after {
grid-column: span 2
}

.innov .approach-grid {
padding: 80px 40px;
grid-template-columns: 280px 1fr
}

.innov .team-voices {
padding: 80px 40px
}

.innov .sub-grid-block {
padding: 80px 40px
}
}

@media (max-width: 768px) {
.innov .t-block {
padding: 40px 20px 80px
}

.innov .t-block .t-grid {
grid-template-columns: 1fr;
gap: 40px
}

.innov .t-block .t-head {
font-size: 43px
}

.innov .t-block .img-clip {
max-width: 100%;
height: 320px
}

.innov .metrics-band {
padding: 40px 20px;
grid-template-columns: 1fr 1fr;
gap: 20px
}

.innov .metrics-band .before-after {
grid-column: span 2;
flex-direction: column
}

.innov .approach-grid {
padding: 40px 20px;
grid-template-columns: 1fr
}

.innov .approach-grid .ag-aside {
position: static
}

.innov .approach-grid .ag-main {
grid-template-columns: 1fr
}

.innov .approach-grid .ap-card.wide {
grid-column: span 1;
grid-template-columns: 1fr
}

.innov .team-voices {
padding: 40px 20px
}

.innov .team-voices .tv-top {
flex-direction: column;
align-items: flex-start
}

.innov .team-voices .tv-grid {
grid-template-columns: 1fr
}

.innov .sub-grid-block {
padding: 40px 20px
}

.innov .sub-grid-block .outer-grid {
grid-template-columns: 1fr
}
}

@media (max-width: 390px) {
.innov .t-block .t-head {
font-size: 31px
}

.innov .metrics-band {
grid-template-columns: 1fr
}

.innov .metrics-band .before-after {
grid-column: span 1
}

.innov .sub-grid-block .og-right .inner-grid {
grid-template-columns: 1fr
}
}

.bs {
display: block;
width: 100%;
max-width: 1440px;
margin: 0 auto;
overflow: hidden
}

.bs .grad-bg {
background: linear-gradient(211deg, #F90A00 0%, #1E243B 100%);
background-size: 300% 300%;
animation: gradshift 8s linear infinite alternate
}

@keyframes gradshift {
0% {
background-position: 0 50%
}

100% {
background-position: 100% 50%
}
}

.bs .t-blk {
position: relative;
padding: 80px;
background: #F1F0F0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: end
}

.bs .t-blk .shapes {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden
}

.bs .t-blk .shapes span {
position: absolute;
border-radius: 22px;
opacity: .06
}

.bs .t-blk .shapes span:nth-child(1) {
width: 320px;
height: 320px;
background: #F90A00;
top: -80px;
right: 200px;
transform: rotate(18deg)
}

.bs .t-blk .shapes span:nth-child(2) {
width: 180px;
height: 180px;
background: #1E243B;
bottom: 40px;
right: 80px;
border-radius: 50%
}

.bs .t-blk .shapes span:nth-child(3) {
width: 80px;
height: 80px;
background: #F90A00;
top: 40px;
left: 40%;
border-radius: 4px;
opacity: .09
}

.bs .t-left {
display: flex;
flex-direction: column;
gap: 20px;
padding-top: 80px
}

.bs .t-accent-line {
width: 40px;
height: 3px;
background: #F90A00;
border-radius: 2px
}

.bs .t-label {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .6;
letter-spacing: .08em;
text-transform: uppercase
}

.bs .t-head {
font-size: 58px;
line-height: 1.1;
color: #1E243B;
letter-spacing: -.02em;
margin: 0
}

.bs .t-head .punct {
color: #F90A00
}

.bs .t-sub {
font-size: 23px;
line-height: 1.5;
color: #1E243B;
opacity: .75;
margin: 0;
max-width: 480px
}

.bs .t-right {
position: relative;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 20px
}

.bs .t-img-wrap {
position: relative;
width: 100%;
max-width: 420px;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 8px 60px 1px #f90a001f
}

.bs .t-img-wrap img {
width: 100%;
height: auto;
display: block;
opacity: .72;
object-fit: cover;
transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.bs .t-img-wrap:hover img {
opacity: .88
}

.bs .t-img-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #1e243bd1;
color: #F1F0F0;
font-size: 15px;
line-height: 1.5;
padding: 20px;
transform: translateY(100%);
transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1);
border-radius: 0 0 14px 14px
}

.bs .t-img-wrap:hover .t-img-caption {
transform: translateY(0)
}

.bs .t-metrics {
display: flex;
flex-direction: row;
gap: 0;
width: 100%;
max-width: 420px;
background: #fff;
border-radius: 14px;
box-shadow: 0 1px 2px 1px #1e243b14;
overflow: hidden
}

.bs .t-metric {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
padding: 20px;
border-right: 1px dashed #1e243b26
}

.bs .t-metric:last-child {
border-right: none
}

.bs .t-metric .val {
font-size: 31px;
line-height: 1.1;
color: #F90A00;
letter-spacing: -.02em
}

.bs .t-metric .lbl {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .6
}

.bs .exp-sec {
padding: 80px;
background: #1E243B;
display: grid;
grid-template-columns: 380px 1fr;
gap: 80px;
align-items: start
}

.bs .exp-left {
display: flex;
flex-direction: column;
gap: 20px;
position: sticky;
top: 40px
}

.bs .exp-accent {
width: 40px;
height: 3px;
background: #F90A00;
border-radius: 2px
}

.bs .exp-head {
font-size: 43px;
line-height: 1.1;
color: #F1F0F0;
letter-spacing: -.02em;
margin: 0
}

.bs .exp-desc {
font-size: 15px;
line-height: 1.8;
color: #f1f0f0a6;
margin: 0
}

.bs .exp-right {
display: flex;
flex-direction: column;
gap: 40px
}

.bs .exp-phase {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start
}

.bs .exp-num {
width: 44px;
height: 44px;
min-width: 44px;
border-radius: 50%;
background: #F90A00;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
color: #fff;
box-shadow: 0 6px 25px 1px #f90a001c
}

.bs .exp-phase-body {
display: flex;
flex-direction: column;
gap: 8px;
padding-top: 8px
}

.bs .exp-phase-head {
font-size: 23px;
line-height: 1.1;
color: #F1F0F0;
margin: 0
}

.bs .exp-phase-text {
font-size: 15px;
line-height: 1.8;
color: #f1f0f0a6;
margin: 0
}

.bs .exp-img-pair {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-top: 20px
}

.bs .exp-img-box {
position: relative;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.bs .exp-img-box img {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.bs .exp-img-box:hover img {
transform: scale(1.04)
}

.bs .exp-img-box .cap {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #1e243bd9;
color: #F1F0F0;
font-size: 15px;
line-height: 1.5;
padding: 20px;
transform: translateY(100%);
transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.bs .exp-img-box:hover .cap {
transform: translateY(0)
}

.bs .sep-dash {
border: none;
border-top: 1px dashed #1e243b33;
margin: 0 80px
}

.bs .dist-sec {
padding: 80px;
background: #fff;
display: flex;
flex-direction: column;
gap: 40px
}

.bs .dist-top {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: end
}

.bs .dist-head-area {
display: flex;
flex-direction: column;
gap: 20px
}

.bs .dist-accent {
width: 40px;
height: 3px;
background: #F90A00;
border-radius: 2px
}

.bs .dist-head {
font-size: 43px;
line-height: 1.1;
color: #1E243B;
letter-spacing: -.02em;
margin: 0
}

.bs .dist-intro {
font-size: 15px;
line-height: 1.8;
color: #1e243bb3;
margin: 0
}

.bs .dist-img-anchor {
position: relative;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 8px 60px 1px #f90a001f
}

.bs .dist-img-anchor img {
width: 100%;
height: 320px;
object-fit: cover;
display: block;
transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bs .dist-img-anchor:hover img {
transform: scale(1.03)
}

.bs .dist-img-anchor .cap {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #1e243be0;
color: #F1F0F0;
font-size: 15px;
line-height: 1.5;
padding: 20px;
transform: translateY(100%);
transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.bs .dist-img-anchor:hover .cap {
transform: translateY(0)
}

.bs .dist-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px
}

.bs .dist-card {
background: #F1F0F0;
border-radius: 14px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 0 1px 2px 1px #1e243b14;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bs .dist-card:hover {
box-shadow: 0 6px 25px 1px #1e243b1c
}

.bs .dist-card .icon-wrap {
width: 36px;
height: 36px;
border-radius: 4px;
background: #f90a001a;
display: flex;
align-items: center;
justify-content: center
}

.bs .dist-card .icon-wrap .mdi {
font-size: 20px;
color: #F90A00
}

.bs .dist-card .card-head {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
margin: 0;
font-weight: 600
}

.bs .dist-card .card-text {
font-size: 15px;
line-height: 1.8;
color: #1e243ba6;
margin: 0
}

.bs .sep-dash-2 {
border: none;
border-top: 1px dashed #1e243b26;
margin: 0 80px
}

.bs .val-sec {
padding: 80px;
background: linear-gradient(211deg, #f90a000d 0%, #1e243b14 100%);
display: grid;
grid-template-columns: 1fr 480px;
gap: 80px;
align-items: start
}

.bs .val-left {
display: flex;
flex-direction: column;
gap: 40px
}

.bs .val-head-area {
display: flex;
flex-direction: column;
gap: 20px
}

.bs .val-accent {
width: 40px;
height: 3px;
background: #F90A00;
border-radius: 2px
}

.bs .val-head {
font-size: 43px;
line-height: 1.1;
color: #1E243B;
letter-spacing: -.02em;
margin: 0
}

.bs .val-text {
font-size: 15px;
line-height: 1.8;
color: #1e243bb3;
margin: 0
}

.bs .val-voices {
display: flex;
flex-direction: column;
gap: 20px
}

.bs .val-voice {
display: flex;
flex-direction: row;
gap: 20px;
align-items: flex-start;
background: #fff;
border-radius: 14px;
padding: 20px;
box-shadow: 0 1px 2px 1px #1e243b14
}

.bs .val-portrait {
width: 64px;
height: 64px;
min-width: 64px;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.bs .val-portrait img {
width: 64px;
height: 64px;
object-fit: cover;
object-position: center;
display: block
}

.bs .val-voice-body {
display: flex;
flex-direction: column;
gap: 8px
}

.bs .val-voice-text {
font-size: 15px;
line-height: 1.8;
color: #1e243bbf;
margin: 0
}

.bs .val-voice-name {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
font-weight: 600;
margin: 0
}

.bs .val-voice-role {
font-size: 15px;
line-height: 1.5;
color: #1e243b80;
margin: 0
}

.bs .val-right {
display: flex;
flex-direction: column;
gap: 20px;
position: sticky;
top: 40px
}

.bs .val-img-box {
position: relative;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 8px 60px 1px #f90a001f
}

.bs .val-img-box img {
width: 100%;
height: 280px;
object-fit: cover;
display: block;
transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.bs .val-img-box:hover img {
transform: scale(1.03)
}

.bs .val-img-box .cap {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: #1e243be0;
color: #F1F0F0;
font-size: 15px;
line-height: 1.5;
padding: 20px;
transform: translateY(100%);
transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.bs .val-img-box:hover .cap {
transform: translateY(0)
}

.bs .val-process {
background: #1E243B;
border-radius: 14px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 20px
}

.bs .val-process-head {
font-size: 15px;
line-height: 1.5;
color: #f1f0f099;
text-transform: uppercase;
letter-spacing: .08em;
margin: 0
}

.bs .val-steps {
display: flex;
flex-direction: column;
gap: 8px
}

.bs .val-step {
display: flex;
flex-direction: row;
gap: 8px;
align-items: center
}

.bs .val-step .step-dot {
width: 8px;
height: 8px;
min-width: 8px;
border-radius: 50%;
background: #F90A00
}

.bs .val-step .step-txt {
font-size: 15px;
line-height: 1.5;
color: #f1f0f0cc
}

.bs .val-result {
background: #f90a001f;
border-radius: 4px;
padding: 20px
}

.bs .val-result-txt {
font-size: 15px;
line-height: 1.8;
color: #F1F0F0;
margin: 0
}

@media (max-width: 1280px) {
.bs .t-blk {
padding: 80px 40px;
gap: 40px
}

.bs .exp-sec {
padding: 80px 40px;
gap: 40px;
grid-template-columns: 280px 1fr
}

.bs .dist-sec {
padding: 80px 40px
}

.bs .dist-top {
gap: 40px
}

.bs .val-sec {
padding: 80px 40px;
gap: 40px;
grid-template-columns: 1fr 360px
}

.bs .sep-dash {
margin: 0 40px
}

.bs .sep-dash-2 {
margin: 0 40px
}
}

@media (max-width: 768px) {
.bs .t-blk {
grid-template-columns: 1fr;
padding: 80px 20px 40px;
gap: 40px
}

.bs .t-head {
font-size: 43px
}

.bs .t-right {
align-items: flex-start
}

.bs .t-img-wrap,
.bs .t-metrics {
max-width: 100%
}

.bs .exp-sec {
grid-template-columns: 1fr;
padding: 80px 20px;
gap: 40px
}

.bs .exp-left {
position: static
}

.bs .exp-img-pair {
grid-template-columns: 1fr
}

.bs .dist-sec {
padding: 80px 20px
}

.bs .dist-top {
grid-template-columns: 1fr;
gap: 40px
}

.bs .dist-grid {
grid-template-columns: 1fr 1fr
}

.bs .val-sec {
grid-template-columns: 1fr;
padding: 80px 20px;
gap: 40px
}

.bs .val-right {
position: static
}

.bs .sep-dash {
margin: 0 20px
}

.bs .sep-dash-2 {
margin: 0 20px
}
}

@media (max-width: 390px) {
.bs .t-blk {
padding: 40px 20px
}

.bs .t-head {
font-size: 31px
}

.bs .t-sub {
font-size: 15px
}

.bs .exp-head {
font-size: 31px
}

.bs .dist-head {
font-size: 31px
}

.bs .val-head {
font-size: 31px
}

.bs .dist-grid {
grid-template-columns: 1fr
}

.bs .t-metrics {
flex-direction: column
}

.bs .t-metric {
border-right: none;
border-bottom: 1px dashed #1e243b26
}

.bs .t-metric:last-child {
border-bottom: none
}
}

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

.ct-us .div-line {
display: flex;
align-items: center;
gap: 20px;
margin: 0 auto;
max-width: 1440px;
padding: 0 40px
}

.ct-us .div-line::before,
.ct-us .div-line::after {
content: '';
flex: 1;
height: 1px;
background: #1E243B;
opacity: .15
}

.ct-us .div-cross {
width: 16px;
height: 16px;
position: relative;
flex-shrink: 0
}

.ct-us .div-cross::before,
.ct-us .div-cross::after {
content: '';
position: absolute;
background: #F90A00;
border-radius: 2px
}

.ct-us .div-cross::before {
width: 2px;
height: 16px;
left: 7px;
top: 0
}

.ct-us .div-cross::after {
width: 16px;
height: 2px;
left: 0;
top: 7px
}

.ct-us .reach-block {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 80px;
align-items: start
}

.ct-us .reach-label {
font-size: 15px;
line-height: 1.5;
color: #F90A00;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px
}

.ct-us .reach-label::before {
content: '';
display: block;
width: 28px;
height: 2px;
background: #F90A00;
border-radius: 2px
}

.ct-us .reach-head {
font-size: 43px;
line-height: 1.1;
color: #1E243B;
letter-spacing: -.02em;
margin-bottom: 20px
}

.ct-us .reach-sub {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
opacity: .72;
margin-bottom: 40px
}

.ct-us .reach-details {
display: flex;
flex-direction: column;
gap: 20px
}

.ct-us .reach-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 20px;
padding: 20px;
background: #F1F0F0;
border-radius: 14px;
box-shadow: 0 1px 2px 1px #1e243b14;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), background .15s cubic-bezier(0.0, 0, 0.2, 1)
}

.ct-us .reach-item:hover {
background: #fff;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.ct-us .reach-icon {
width: 44px;
height: 44px;
border-radius: 14px;
background: linear-gradient(211deg, #F90A00, #1E243B);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.ct-us .reach-icon .mdi {
font-size: 20px;
color: #fff
}

.ct-us .reach-item-label {
font-size: 15px;
line-height: 1.5;
color: #F90A00;
font-weight: 600;
margin-bottom: 4px
}

.ct-us .reach-item-val {
font-size: 15px;
line-height: 1.5;
color: #1E243B
}

.ct-us .reach-item-val a {
color: #1E243B;
text-decoration: none !important;
border-bottom: 1px solid #f90a0059;
transition: border-color .15s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .reach-item-val a:hover {
color: #F90A00;
border-color: #F90A00
}

.ct-us .trust-bar {
display: flex;
flex-direction: column;
gap: 8px;
padding: 20px;
border-radius: 14px;
border: 1px solid #f90a002e;
background: #fff;
box-shadow: 0 1px 2px 1px #f90a0014
}

.ct-us .trust-bar-top {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px
}

.ct-us .trust-bar-top .mdi {
font-size: 18px;
color: #F90A00
}

.ct-us .trust-bar-text {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
font-weight: 600
}

.ct-us .trust-bar-sub {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .65
}

.ct-us .form-panel {
background: #1E243B;
border-radius: 22px;
padding: 40px;
box-shadow: 0 8px 60px 1px #1e243b1f;
position: relative;
overflow: hidden
}

.ct-us .form-panel::before {
content: '';
position: absolute;
top: -40px;
right: -40px;
width: 200px;
height: 200px;
border-radius: 50%;
background: #f90a0014;
pointer-events: none
}

.ct-us .form-panel::after {
content: '';
position: absolute;
bottom: -60px;
left: -20px;
width: 160px;
height: 160px;
border-radius: 50%;
background: #f90a000d;
pointer-events: none
}

.ct-us .form-head {
font-size: 31px;
line-height: 1.1;
color: #fff;
letter-spacing: -.02em;
margin-bottom: 8px
}

.ct-us .form-desc {
font-size: 15px;
line-height: 1.5;
color: #fff9;
margin-bottom: 40px
}

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

.ct-us .field-grp {
display: flex;
flex-direction: column;
gap: 8px
}

.ct-us .field-grp.full {
grid-column: 1 / -1
}

.ct-us .field-lbl {
font-size: 15px;
line-height: 1.5;
color: #ffffffbf;
font-weight: 500
}

.ct-us .field-inp {
background: #ffffff12;
border: 1px solid #ffffff24;
border-radius: 4px;
padding: 12px 20px;
font-size: 15px;
line-height: 1.5;
color: #fff;
outline: none;
transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1);
width: 100%;
box-sizing: border-box
}

.ct-us .field-inp::placeholder {
color: #ffffff4d;
font-weight: 300
}

.ct-us .field-inp:focus {
border-color: #F90A00;
background: #f90a000f
}

.ct-us .timeline-sel {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px
}

.ct-us .timeline-opt {
position: relative
}

.ct-us .timeline-opt input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0
}

.ct-us .timeline-opt label {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 12px 8px;
background: #ffffff12;
border: 1px solid #ffffff24;
border-radius: 4px;
cursor: pointer;
text-align: center;
transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .timeline-opt label .tl-main {
font-size: 15px;
line-height: 1.5;
color: #fff;
font-weight: 600
}

.ct-us .timeline-opt label .tl-sub {
font-size: 15px;
line-height: 1.5;
color: #ffffff80;
font-weight: 300
}

.ct-us .timeline-opt input[type="radio"]:checked+label {
background: #f90a0033;
border-color: #F90A00
}

.ct-us .timeline-opt label:hover {
background: #ffffff1f;
border-color: #ffffff4d
}

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

.ct-us .privacy-row input[type="checkbox"] {
width: 18px;
height: 18px;
flex-shrink: 0;
accent-color: #F90A00;
margin-top: 2px;
cursor: pointer
}

.ct-us .privacy-txt {
font-size: 15px;
line-height: 1.5;
color: #fff9
}

.ct-us .privacy-txt a {
color: #ffffffd9;
text-decoration: none !important;
border-bottom: 1px solid #f90a0080;
transition: color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .privacy-txt a:hover {
color: #F90A00
}

.ct-us .submit-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 40px;
background: #F90A00;
color: #fff;
font-size: 15px;
line-height: 1.5;
font-weight: 600;
border: 2px solid #F90A00;
border-radius: 4px;
cursor: pointer;
transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1), outline-offset .18s cubic-bezier(0.4, 0, 0.2, 1);
outline: 2px solid transparent;
outline-offset: 0
}

.ct-us .submit-btn:hover {
background: transparent;
color: #F90A00;
outline: 2px solid #F90A00;
outline-offset: 4px
}

.ct-us .submit-btn:focus-visible {
outline: 2px solid #fff;
outline-offset: 4px
}

.ct-us .submit-btn .mdi {
font-size: 18px;
transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .submit-btn:hover .mdi {
transform: translateX(4px)
}

.ct-us .pulse-bg {
animation: bg-pulse 6s ease-in-out infinite
}

@keyframes bg-pulse {

0%,
100% {
opacity: 1
}

50% {
opacity: .82
}
}

.ct-us .checklist-block {
max-width: 1440px;
margin: 0 auto;
padding: 80px 40px;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 80px;
align-items: start
}

.ct-us .checklist-wrap {
background: #F1F0F0;
border-radius: 22px;
padding: 40px
}

.ct-us .cl-head-label {
font-size: 15px;
line-height: 1.5;
color: #F90A00;
letter-spacing: .08em;
text-transform: uppercase;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px
}

.ct-us .cl-head-label::before {
content: '';
display: block;
width: 28px;
height: 2px;
background: #F90A00;
border-radius: 2px
}

.ct-us .cl-heading {
font-size: 31px;
line-height: 1.1;
color: #1E243B;
letter-spacing: -.02em;
margin-bottom: 20px
}

.ct-us .cl-progress-bar {
height: 6px;
background: #1e243b1f;
border-radius: 4px;
margin-bottom: 8px;
overflow: hidden
}

.ct-us .cl-progress-fill {
height: 100%;
width: 66.66%;
background: linear-gradient(211deg, #F90A00, #1E243B);
border-radius: 4px;
transition: width .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .cl-progress-txt {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .6;
margin-bottom: 20px
}

.ct-us .cl-items {
display: flex;
flex-direction: column;
gap: 8px
}

.ct-us .cl-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px;
padding: 16px 20px;
background: #fff;
border-radius: 14px;
box-shadow: 0 1px 2px 1px #1e243b14
}

.ct-us .cl-item.done .cl-check {
background: linear-gradient(211deg, #F90A00, #1E243B);
border-color: transparent
}

.ct-us .cl-item.done .cl-check .mdi {
color: #fff;
opacity: 1
}

.ct-us .cl-check {
width: 28px;
height: 28px;
border-radius: 50%;
border: 2px solid #1e243b33;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ct-us .cl-check .mdi {
font-size: 15px;
color: #1E243B;
opacity: .2
}

.ct-us .cl-item-txt {
font-size: 15px;
line-height: 1.5;
color: #1E243B
}

.ct-us .cl-item.done .cl-item-txt {
opacity: .5;
text-decoration: line-through;
text-decoration-color: #1e243b4d
}

.ct-us .sidebar-info {
display: flex;
flex-direction: column;
gap: 20px
}

.ct-us .sidebar-card {
background: #1E243B;
border-radius: 14px;
padding: 20px;
box-shadow: 0 6px 25px 1px #1e243b1c
}

.ct-us .sidebar-card-label {
font-size: 15px;
line-height: 1.5;
color: #ffffff80;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 8px
}

.ct-us .sidebar-card-label .mdi {
font-size: 16px;
color: #F90A00
}

.ct-us .sidebar-card-val {
font-size: 23px;
line-height: 1.1;
color: #fff;
font-weight: 600;
margin-bottom: 4px
}

.ct-us .sidebar-card-note {
font-size: 15px;
line-height: 1.5;
color: #ffffff73
}

.ct-us .review-card {
background: linear-gradient(211deg, #f90a001f, #1e243b14);
border: 1px solid #f90a0033;
border-radius: 14px;
padding: 20px
}

.ct-us .review-text {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
margin-bottom: 20px;
font-style: italic
}

.ct-us .review-author {
display: flex;
flex-direction: row;
align-items: center;
gap: 12px
}

.ct-us .review-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(211deg, #F90A00, #1E243B);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.ct-us .review-avatar .mdi {
font-size: 20px;
color: #fff
}

.ct-us .review-name {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
font-weight: 600
}

.ct-us .review-role {
font-size: 15px;
line-height: 1.5;
color: #1E243B;
opacity: .55
}

@media (max-width: 1280px) {
.ct-us .reach-block {
grid-template-columns: 1fr;
gap: 40px;
padding: 80px 40px
}

.ct-us .checklist-block {
grid-template-columns: 1fr;
gap: 40px;
padding: 80px 40px
}

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

@media (max-width: 768px) {
.ct-us .reach-block {
padding: 40px 20px;
gap: 40px
}

.ct-us .reach-head {
font-size: 31px
}

.ct-us .form-panel {
padding: 20px
}

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

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

.ct-us .checklist-block {
padding: 40px 20px;
gap: 40px
}

.ct-us .checklist-wrap {
padding: 20px
}

.ct-us .div-line {
padding: 0 20px
}
}

@media (max-width: 390px) {
.ct-us .reach-head {
font-size: 23px
}

.ct-us .form-head {
font-size: 23px
}

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

.ct-us .cl-heading {
font-size: 23px
}

.ct-us .reach-block,
.ct-us .checklist-block {
padding: 40px 20px
}
}

.success-pg {
min-height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 20px;
background: #fff
}

.success-pg .card {
max-width: 560px;
width: 100%;
background: #F1F0F0;
border-radius: 14px;
padding: 40px;
box-shadow: 0 6px 25px 1px #f90a001c;
text-align: center
}

.success-pg .card .icon-wrap {
width: 64px;
height: 64px;
margin: 0 auto 20px;
border-radius: 22px;
background: linear-gradient(211deg, #F90A00, #1E243B);
display: flex;
align-items: center;
justify-content: center
}

.success-pg .card .icon-wrap svg {
width: 32px;
height: 32px;
fill: none;
stroke: #fff;
stroke-width: 2.5;
stroke-linecap: round;
stroke-linejoin: round
}

.success-pg .card .accent-line {
width: 32px;
height: 3px;
background: #F90A00;
border-radius: 2px;
margin: 0 auto 20px
}

.success-pg .card h1 {
font-size: 31px;
line-height: 1.1;
letter-spacing: -.02em;
color: #1E243B;
margin: 0 0 20px
}

.success-pg .card p {
font-size: 15px;
line-height: 1.8;
color: #1E243B;
margin: 0 0 40px
}

.success-pg .card .back-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 15px;
line-height: 1.5;
color: #fff;
background: #1E243B;
padding: 8px 20px;
border-radius: 4px;
text-decoration: none;
transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1);
box-shadow: 0 1px 2px 1px #1e243b14
}

.success-pg .card .back-link:hover {
background: #F90A00;
box-shadow: 0 6px 25px 1px #f90a001c
}

.success-pg .card .back-link:focus-visible {
outline: 2px solid #F90A00;
outline-offset: 3px
}

.success-pg .card .back-link svg {
width: 16px;
height: 16px;
fill: none;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
transition: transform .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-pg .card .back-link:hover svg {
transform: translateX(-3px)
}

@media (max-width: 390px) {
.success-pg {
padding: 40px 20px
}

.success-pg .card {
padding: 20px
}

.success-pg .card h1 {
font-size: 23px
}
}