html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
    display: block
}

*[hidden] {
    display: none
}

body {
    line-height: 1
}

menu,
ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@font-face {
    font-family: Night Still Comes;
    src: url(/src/assets/fonts/NightStillComes-BoldItalic.woff2) format("woff2"), url(/src/assets/fonts/NightStillComes-BoldItalic.woff) format("woff");
    font-weight: 700;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: Night Still Comes;
    src: url(/src/assets/fonts/NightStillComes-Italic.woff2) format("woff2"), url(/src/assets/fonts/NightStillComes-Italic.woff) format("woff");
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/src/assets/fonts/Lato-SemiboldItalic.woff2) format("woff2"), url(/src/assets/fonts/Lato-SemiboldItalic.woff) format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/src/assets/fonts/Lato-Semibold.woff2) format("woff2"), url(/src/assets/fonts/Lato-Semibold.woff) format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/src/assets/fonts/Lato-Medium.woff2) format("woff2"), url(/src/assets/fonts/Lato-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/src/assets/fonts/Lato-Regular.woff2) format("woff2"), url(/src/assets/fonts/Lato-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Lato;
    src: url(/src/assets/fonts/Lato-Bold.woff2) format("woff2"), url(/src/assets/fonts/Lato-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Satoshi-Black;
    src: url(/src/assets/fonts/Satoshi-Black.woff2) format("woff2"), url(/src/assets/fonts/Satoshi-Black.woff) format("woff"), url(/src/assets/fonts/Satoshi-Black.ttf) format("truetype");
    font-weight: 900;
    font-display: swap;
    font-style: normal
}

:root {
    --mobile: calc(10 / 3.9 * 1vw);
    --desktop: calc(10 / 19.2 * 1vw);
    font-size: var(--mobile)
}

@media (min-width: 1200px) {
    :root {
        font-size: var(--desktop)
    }
}

p {
    color: #203c5c;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

@media (min-width: 1200px) {
    p {
        font-size: 1.6rem
    }
}

* {
    box-sizing: border-box
}

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

.wrapper {
    overflow: hidden;
    min-height: 100vh
}

body {
    font-family: Manrope, sans-serif;
    -webkit-user-select: none;
    user-select: none;
    overflow-x: hidden;
    background: #d2dde9;
    color: #203c5c
}

body.lock,
.line-overlfow,
.line-overflow {
    overflow: hidden
}

a {
    text-decoration: none
}

.line {
    overflow: hidden
}

.container {
    padding: 0 2.6rem;
    width: 100%
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3.4rem;
        width: 100%
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 0;
    transition: background 0.3s ease;
}

body.lock .header {
    position: fixed;
    background: linear-gradient(to bottom, rgba(252, 152, 2, 0.98) 70%, rgba(252, 152, 2, 0) 100%);
}

body.lock .header__logo-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__menu-button {
    width: 4.5rem;
    height: 4.5rem;
    position: relative;
    cursor: pointer
}

.header__menu-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    transition: .3s
}

.header__menu-button svg:nth-child(2) {
    opacity: 0
}

.header__menu-button.active svg:nth-child(1) {
    opacity: 0
}

.header__menu-button.active svg:nth-child(2) {
    opacity: 1
}

.header__logo {
    display: block;
    width: 6.2587rem
}

.header__logo svg {
    width: 100%;
    height: auto
}

.header__logo-text {
    font-family: Anton, sans-serif;
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.header__logo-text:hover {
    opacity: 0.85;
}

@media (min-width: 1200px) {
    .header {
        padding: 3rem 0;
        width: auto;
        position: fixed
    }

    .header__logo {
        display: none
    }

    .header__logo-text {
        display: none
    }

    .header__menu-button {
        width: 5.5rem;
        height: 5.5rem
    }
}

.menu {
    background: #FC9802;
    padding: 8.5rem 2.4rem 3.5rem;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.menu::-webkit-scrollbar {
    width: 6px;
}

.menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.menu.active {
    opacity: 1;
    pointer-events: all
}

.menu__logo {
    display: none !important;
}

.menu__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.4rem;
    margin-bottom: 3.5rem;
    flex-shrink: 0;
}

.menu__nav li:nth-child(2),
.menu__nav li:nth-child(4),
.menu__nav li:nth-child(6) {
    text-align: right
}

.menu__nav a {
    color: #fff;
    font-family: Anton;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    letter-spacing: -.04rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative
}

.menu__nav a:after {
    content: "";
    position: absolute;
    bottom: -.3rem;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: .2rem;
    transition: .3s ease
}

.menu__nav a:hover:after {
    height: .4rem
}

.menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 2.4rem;
    flex-shrink: 0;
}

/* Shared Contact Item Styles (Crisp White Icons, Distinct Labels, Clean Values) */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    color: #ffffff;
}

.contact-item__link {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.contact-item__link:hover {
    opacity: 0.88;
    transform: translateX(2px);
}

.contact-item__icon {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item__icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #ffffff;
    flex-shrink: 0;
}

.contact-item__details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item__label {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-family: Manrope, sans-serif;
    line-height: 1.2;
}

.contact-item__value {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.45;
    color: #ffffff;
    font-family: Manrope, sans-serif;
    word-break: break-word;
}

.menu__contacts {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 2.4rem;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .menu {
        width: 52rem;
        padding: 10rem 4rem 4rem;
        justify-content: flex-start;
        box-shadow: 10px 0 45px rgba(0, 0, 0, 0.25);
    }

    .menu__nav {
        gap: 2.8rem;
        margin-bottom: 4.5rem;
    }

    .menu__nav a {
        font-size: 3.4rem;
    }

    .menu__contacts {
        gap: 2rem;
        padding-top: 3rem;
    }
}

.footer {
    padding-top: 6rem;
    background: #FC9802;
}

.footer__top {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.4rem;
    margin-bottom: 0;
}

.footer__nav a {
    color: #fff;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer__nav a:before {
    content: "";
    position: absolute;
    bottom: -.5rem;
    left: 0;
    width: 100%;
    height: .1rem;
    background: #fff;
    transition: .3s;
}

.footer__nav a:hover:before {
    height: .3rem;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    background: rgba(0, 0, 0, 0.08);
    padding: 2.6rem 2.2rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 0;
}

.footer__img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -2rem;
}

.footer__title {
    color: #fff;
    font-family: Anton;
    font-size: 6.7815rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.2713rem;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.footer__text {
    color: #fff;
    text-align: right;
    font-family: Anton;
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.076rem;
    text-transform: uppercase;
}

.footer__text:last-of-type {
    margin-bottom: 2.4rem;
}

.footer__dev {
    background: #d2dde9;
    display: block;
    padding: 1.7rem 0;
    color: #FC9802;
    text-align: center;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    margin: 0 -2.6rem;
}

@media (min-width: 1200px) {
    .footer {
        padding-top: 8rem;
        padding-bottom: 4.5rem;
    }

    .footer__top {
        display: grid;
        grid-template-columns: 30% 70%;
        gap: 5rem;
        margin-bottom: 8rem;
        align-items: flex-start;
    }

    .footer__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2.2rem;
        margin-bottom: 0;
    }

    .footer__nav li {
        display: block !important;
    }

    .footer__nav a {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .footer__contacts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.6rem 3.6rem;
        background: rgba(0, 0, 0, 0.08);
        padding: 3.5rem 4rem;
        border-radius: 2.2rem;
        border: 1px solid rgba(255, 255, 255, 0.22);
        margin-bottom: 0;
    }

    .footer__contacts .contact-item__value {
        font-size: 1.55rem;
    }

    .footer__middle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10rem
    }

    .footer__img {
        width: 46rem;
        margin: 0
    }

    .footer__title {
        font-size: 18.579rem;
        letter-spacing: -.7432rem;
        max-width: 92.6rem
    }

    .footer__bottom {
        display: grid;
        grid-template-columns: 50% auto auto
    }

    .footer__text {
        font-size: 2.5rem;
        text-align: left
    }

    .footer__text:last-of-type {
        margin-bottom: 0
    }

    .footer__dev {
        font-size: 2.5rem;
        background-color: transparent;
        color: #fff;
        padding: 0;
        text-align: right;
        margin: 0 0 0 auto
    }
}

.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto
}

.animation-container__kran {
    position: absolute;
    width: 23.35rem;
    top: 30rem;
    left: 0
}

@media (min-width: 1200px) {
    .animation-container__kran {
        top: 5.6rem;
        width: calc(50% + 18.4rem)
    }
}

.hero-section {
    padding-top: 10rem;
    position: relative
}

.hero-section:after {
    content: "";
    position: absolute;
    top: 50rem;
    left: 50%;
    transform: translate(-50%);
    height: 200rem;
    border: .1rem solid rgba(32, 60, 92, .2)
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64rem;
    background: linear-gradient(175deg, #203c5c -15.77%, #d2dde9 81.91%)
}

.hero-section__clouds {
    position: absolute;
    top: 40rem;
    left: 0;
    width: 100%;
    height: auto
}

.hero-section__clouds img {
    width: 100%;
    height: auto
}

.hero-section .container {
    position: relative;
    z-index: 1
}

.hero-section__img {
    position: absolute;
    width: 23.35rem;
    top: 30rem;
    left: 0
}

.hero-section__title {
    color: #fff;
    text-align: right;
    font-family: Anton;
    font-size: 6.6275rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.2651rem;
    text-transform: uppercase;
    margin-bottom: 2.8rem
}

.hero-section__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32rem
}

.hero-section__nav li {
    overflow: hidden
}

.hero-section__nav a {
    color: #203c5c;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding-bottom: .5rem
}

.hero-section__nav a:before {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0;
    width: 100%;
    height: .1rem;
    background: #203c5c;
    transition: .3s
}

.hero-section__nav a:hover:before {
    height: .3rem
}

.hero-section__subtitle {
    color: #FC9802;
    text-align: right;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    max-width: 13.2rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 0.7);
}

.hero-section__text {
    text-align: right;
    max-width: 26rem;
    margin-left: auto;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 25px rgba(255, 255, 255, 0.7);
    font-weight: 600; /* Slightly bolder for better readability */
}

@media (max-width: 1199px) {

    .hero-section__button,
    .hero-section__container {
        display: none
    }
}

@media (min-width: 1200px) {
    .hero-section {
        padding: 0;
        z-index: 2
    }

    .hero-section:after {
        display: none
    }

    .hero-section .container {
        padding: 4rem 3.4rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh
    }

    .hero-section__container {
        position: absolute;
        top: 110rem;
        transform: translate(-50%);
        left: 50%;
        width: 88.8rem;
        z-index: 1
    }

    .hero-section__container img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1
    }

    .hero-section__container:after {
        content: "";
        position: absolute;
        top: -10rem;
        left: 50%;
        transform: translate(-50%);
        height: 15rem;
        border-left: .2rem solid rgba(32, 60, 92, .2)
    }

    .hero-section__title {
        font-size: 26.1105rem;
        line-height: 90%;
        letter-spacing: -1.0444rem;
        max-width: 139rem;
        margin-left: auto;
        margin-bottom: 4rem
    }

    .hero-section__nav {
        width: 46rem;
        margin-left: auto;
        margin-bottom: auto
    }

    .hero-section__nav a {
        font-size: 2.5rem
    }

    .hero-section__row {
        position: relative
    }

    .hero-section__subtitle {
        font-size: 4rem;
        margin-bottom: 2.5rem;
        max-width: 26.1rem
    }

    .hero-section__text {
        max-width: 36.5rem
    }

    .hero-section__button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        background-color: #FC9802;
        width: 20rem;
        height: 20rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .hero-section__button svg {
        width: 4.8rem;
        height: auto;
        transition: .3s
    }

    .hero-section__button:hover svg {
        transform: rotate(45deg)
    }

    .hero-section__img {
        top: 5.6rem;
        width: calc(50% + 18.4rem)
    }

    .hero-section__clouds {
        width: 140rem;
        top: 60rem
    }
}

.benefits-section {
    padding: 8rem 0 10rem
}

.benefits-section__title {
    color: #fff;
    font-family: Anton;
    font-size: 6.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.264rem;
    text-transform: uppercase;
    margin-bottom: 8rem
}

.benefits-section__list {
    display: grid;
    gap: 6.5rem
}

.benefits-section__item {
    display: grid;
    gap: 2rem
}

.benefits-section__item-title {
    color: #203c5c;
    font-family: Anton;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.12rem;
    text-transform: uppercase
}

@media (min-width: 1200px) {
    .benefits-section {
        padding: 13rem 0 15rem
    }

    .benefits-section__title {
        font-size: 12rem;
        line-height: 100%;
        letter-spacing: -.48rem;
        max-width: 102rem;
        margin-bottom: 3rem
    }

    .benefits-section__list {
        gap: 2rem
    }

    .benefits-section__item {
        gap: 2.5rem;
        max-width: 46rem
    }

    .benefits-section__item:nth-child(1),
    .benefits-section__item:nth-child(3) {
        margin-left: auto
    }

    .benefits-section__item-title {
        font-size: 4rem
    }
}

.why-section {
    padding: 10rem 0;
    position: relative;
    z-index: 1
}

.why-section__title {
    color: #fff;
    font-family: Anton;
    font-size: 6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.24rem;
    text-transform: uppercase;
    margin-bottom: 46rem
}

.why-section__container {
    position: absolute;
    top: 18rem;
    left: 0;
    width: 100%;
    height: auto
}

.why-section .line:not(:last-child) {
    margin-bottom: 2rem
}

.why-section .line:nth-child(1),
.why-section .line:nth-child(1) .line-inner,
.why-section .line:nth-child(1) .why-section__title-row,
.why-section .why-section__title-row--between {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.why-section .line:nth-child(2),
.why-section .line:nth-child(2) .line-inner,
.why-section .line:nth-child(2) .why-section__title-row,
.why-section .why-section__title-row--center {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.why-section .why-section__title-row--center span {
    text-align: center !important;
}

.why-section__list {
    display: grid;
    gap: 9rem
}

.why-section__item-title {
    color: #203c5c;
    text-align: center;
    font-family: Anton;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.1rem;
    text-transform: uppercase
}

.why-section__item-title strong {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block
}

.why-section__item-icon {
    display: block;
    width: 15.8571rem;
    margin: 0 auto 4.5rem
}

.why-section__item-text {
    text-align: center
}

@media (max-width: 1199px) {
    .why-section__img {
        display: none
    }
}

@media (min-width: 1200px) {
    .why-section {
        position: relative;
        padding: 15rem 0 20rem
    }

    .why-section__container {
        display: none
    }

    .why-section__img {
        position: absolute;
        bottom: 10rem;
        left: 0;
        width: 100%
    }

    .why-section__img img {
        width: 100%;
        height: auto
    }

    .why-section .container {
        position: relative;
        z-index: 1
    }

    .why-section__title {
        font-size: 30rem;
        margin-bottom: 0
    }

    .why-section .line:not(:last-child) {
        margin-bottom: 7rem
    }

    .why-section__list {
        margin-top: -15rem;
        grid-template-columns: repeat(2, 46rem);
        justify-content: space-between;
        align-items: flex-start
    }

    .why-section__item:nth-child(1) .why-section__item-title {
        margin-left: auto
    }

    .why-section__item:nth-child(1) .why-section__item-icon {
        margin: 0 0 10rem auto
    }

    .why-section__item:nth-child(1) .why-section__item-text {
        margin-left: auto;
        text-align: right;
        max-width: 40rem
    }

    .why-section__item:nth-child(2) .why-section__item-title {
        margin-right: auto
    }

    .why-section__item:nth-child(2) .why-section__item-icon {
        margin: auto 0 10rem
    }

    .why-section__item:nth-child(2) .why-section__item-text {
        margin-right: auto;
        text-align: left;
        max-width: 43.2rem
    }

    .why-section__item-title {
        width: 15.8571rem
    }
}

.video-wrap {
    position: relative
}

.video-wrap:after {
    content: "";
    position: absolute;
    top: -60rem;
    height: calc(100% + 10rem);
    left: 0;
    width: 100%;
    background: #d2dde9;
    background: -moz-linear-gradient(180deg, rgb(210, 221, 233) 58%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgb(210, 221, 233) 58%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, #d2dde9 58%, #0000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d2dde9", endColorstr="#000000", GradientType=1)
}

.full-img {
    display: block;
    width: calc(100% + .4rem);
    padding: 0;
    margin: 0 -.2rem -.2rem
}

.full-img img {
    width: 100%;
    height: auto
}

.services-m {
    background: #FC9802;
    padding: 6rem 0 8rem
}

.services-m__title {
    color: #fff;
    font-family: Anton;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.16rem;
    text-transform: uppercase;
    margin-bottom: 3rem
}

.services-m__text {
    color: #fff;
    max-width: 30.1rem;
    margin-bottom: 15rem
}

.services-swiper {
    overflow: unset !important
}

.services-swiper .swiper-slide {
    opacity: 0
}

.services-swiper .swiper-slide.swiper-slide-active {
    opacity: 1
}

.services-swiper .swiper-slide.swiper-slide-active .services-swiper__item-img,
.services-swiper .swiper-slide.swiper-slide-active .services-swiper__item-button {
    opacity: 1;
    transform: scale(1);
    transition-delay: .4s
}

.services-swiper__item-img {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom: -2rem;
    opacity: 0;
    transition: .4s;
    transform: scale(.8)
}

.services-swiper__item-title {
    color: #fff;
    font-family: Anton;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.12rem;
    text-transform: uppercase;
    margin-bottom: 2rem
}

.services-swiper__item-text {
    color: #fff;
    max-width: 26.5rem;
    margin-bottom: 3.2rem
}

.services-swiper__item-button {
    width: 11rem;
    height: 11rem;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    opacity: 0;
    transform: scale(.8)
}

.services-swiper__item-button svg {
    width: 2.6064rem;
    height: auto
}

.services-swiper__controls {
    position: absolute;
    top: 33rem;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2
}

.services-swiper__button-prev,
.services-swiper__button-next {
    width: 3.2rem;
    height: auto;
    color: #fff;
    opacity: .4;
    transition: .3s
}

.services-swiper__button-prev:hover,
.services-swiper__button-next:hover {
    opacity: 1
}

@media (min-width: 1200px) {
    .services-m {
        display: none
    }
}

@media (max-width: 1199px) {
    .services-d {
        display: none
    }
}

@media (min-width: 1200px) {
    .services-d {
        background-color: #FC9802
    }

    .services-d .container {
        display: grid;
        grid-template-columns: 1fr 46rem;
        align-items: flex-start;
        padding-top: 20rem;
        padding-bottom: 20rem
    }

    .services-d__content {
        display: flex;
        align-items: center
    }

    .services-d__inner {
        padding-top: 6.8rem
    }

    .services-d__title {
        color: #fff;
        font-family: Anton;
        font-size: 7rem;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -.28rem;
        text-transform: uppercase;
        max-width: 48.6rem;
        margin-bottom: 7rem
    }

    .services-d__text {
        color: #fff;
        max-width: 38.1rem
    }

    .services-d__images {
        width: 67.6rem;
        height: 67.6rem;
        position: relative;
        margin-left: 12rem
    }

    .services-d__images img {
        position: absolute;
        width: 100%;
        height: auto
    }

    .services-d__list {
        display: grid;
        gap: 20rem;
        margin-top: 20rem
    }

    .services-d__item-title {
        color: #fff;
        font-family: Anton;
        font-size: 4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: -.16rem;
        text-transform: uppercase;
        margin-bottom: 4rem
    }

    .services-d__item-text {
        max-width: 30.1rem;
        color: #fff;
        margin-bottom: 5.2rem
    }

    .services-d__item-button {
        width: 14rem;
        height: 14rem;
        background-color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .services-d__item-button svg {
        width: 3.5rem;
        height: auto
    }
}

.sea-section {
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.sea-section__bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin-bottom: -100vh;
    background: #04253a url('../images/aerial-overhead-vertical-shot-beautiful-ocean-waves-with-plane-flying.jpg') center bottom / cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

.sea-section__img-wrap {
    position: sticky;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
    width: 17rem;
    max-width: 48vw;
    height: 0;
    overflow: visible;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

.sea-section__img {
    position: relative;
    width: 100%;
    display: block;
    margin: 0 auto;
    /* filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.8)); */
    transform-origin: center center;
    will-change: transform;
}

.sea-section__title {
    color: #fff;
    text-align: center;
    font-family: Anton;
    font-size: 8.2939rem;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -.1659rem;
    text-transform: uppercase;
    margin-bottom: 6.5rem
}

.sea-section__list {
    display: grid;
    gap: 3rem;
    margin-bottom: 15rem
}

.sea-section__item {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative
}

.sea-section__item-line {
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: .2rem solid #fff;
    width: 100%
}

.sea-section__item-circle {
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-color: #fff;
    border-radius: 50%;
    bottom: -.35rem;
    right: 0
}

.sea-section__item-title {
    color: #203c5c;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem
}

.sea-section__item-text {
    max-width: 21.5rem
}

.sea-section__row {
    display: grid;
    gap: 7rem
}

.sea-section__subtitle {
    color: #fff;
    font-family: Anton;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.16rem;
    text-transform: uppercase
}

.sea-section__sublist {
    display: grid;
    gap: 7rem
}

.sea-section__subitem-number {
    color: #203c5c;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem
}

.sea-section__subitem-title {
    color: #203c5c;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.08rem;
    text-transform: uppercase;
    margin-bottom: 2rem
}

@media (min-width: 1200px) {
    .sea-section {
        padding: 10rem 0 15rem
    }

    .sea-section__title {
        font-size: 45rem;
        line-height: 90%;
        letter-spacing: -.9094rem;
        margin-bottom: 24rem
    }

    .sea-section__img-wrap {
        position: sticky;
        top: 20vh;
        width: 40.6rem;
        max-width: none;
        height: 0;
        overflow: visible;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        z-index: 1;
    }

    .sea-section__img {
        width: 100%;
        margin: 0 auto;
    }

    .sea-section__list {
        grid-template-columns: repeat(2, 46rem);
        justify-content: space-between;
        align-items: flex-start;
        gap: 22rem 0;
        margin-bottom: 30rem
    }

    .sea-section__item {
        gap: 2.5rem;
        padding-bottom: 4rem
    }

    .sea-section__item:nth-child(1) .sea-section__item-title {
        margin-left: auto;
        text-align: right
    }

    .sea-section__item:nth-child(1) .sea-section__item-text {
        margin-left: auto;
        text-align: right;
        max-width: 28.2rem
    }

    .sea-section__item:nth-child(1) .sea-section__item-line {
        width: calc(100% + 21rem)
    }

    .sea-section__item:nth-child(1) .sea-section__item-circle {
        right: -21rem;
        bottom: -.35rem
    }

    .sea-section__item:nth-child(3) .sea-section__item-title {
        margin-left: auto;
        text-align: right
    }

    .sea-section__item:nth-child(3) .sea-section__item-text {
        margin-left: auto;
        text-align: right;
        max-width: 35rem
    }

    .sea-section__item:nth-child(3) .sea-section__item-line {
        width: calc(100% + 21rem)
    }

    .sea-section__item:nth-child(3) .sea-section__item-circle {
        right: -21rem;
        bottom: -.35rem
    }

    .sea-section__item:nth-child(5) .sea-section__item-title {
        margin-left: auto;
        text-align: right
    }

    .sea-section__item:nth-child(5) .sea-section__item-text {
        margin-left: auto;
        text-align: right;
        max-width: 35rem
    }

    .sea-section__item:nth-child(5) .sea-section__item-line {
        width: calc(100% + 21rem)
    }

    .sea-section__item:nth-child(5) .sea-section__item-circle {
        right: -21rem;
        bottom: -.35rem
    }

    .sea-section__item:nth-child(2) .sea-section__item-title {
        margin-right: auto;
        text-align: left
    }

    .sea-section__item:nth-child(2) .sea-section__item-text {
        margin-right: auto;
        text-align: left;
        max-width: 33rem
    }

    .sea-section__item:nth-child(2) .sea-section__item-line {
        width: calc(100% + 21rem);
        left: auto;
        right: 0
    }

    .sea-section__item:nth-child(2) .sea-section__item-circle {
        right: auto;
        left: -21rem;
        bottom: -.35rem
    }

    .sea-section__item:nth-child(4) .sea-section__item-title {
        margin-right: auto;
        text-align: left
    }

    .sea-section__item:nth-child(4) .sea-section__item-text {
        margin-right: auto;
        text-align: left;
        max-width: 33rem
    }

    .sea-section__item:nth-child(4) .sea-section__item-line {
        width: calc(100% + 21rem);
        left: auto;
        right: 0
    }

    .sea-section__item:nth-child(4) .sea-section__item-circle {
        right: auto;
        left: -21rem;
        bottom: -.35rem
    }

    .sea-section__item:nth-child(6) .sea-section__item-title {
        margin-right: auto;
        text-align: left
    }

    .sea-section__item:nth-child(6) .sea-section__item-text {
        margin-right: auto;
        text-align: left;
        max-width: 38rem
    }

    .sea-section__item:nth-child(6) .sea-section__item-line {
        width: calc(100% + 21rem);
        left: auto;
        right: 0
    }

    .sea-section__item:nth-child(6) .sea-section__item-circle {
        right: auto;
        left: -21rem;
        bottom: -.35rem
    }

    .sea-section__item-title {
        font-size: 4rem;
        letter-spacing: -.16rem
    }

    .sea-section__row {
        position: relative
    }

    .sea-section__subtitle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 65rem;
        font-size: 7rem;
        text-align: center;
        letter-spacing: -.28rem
    }

    .sea-section__sublist {
        grid-template-columns: repeat(2, 46rem);
        justify-content: space-between;
        align-items: flex-start
    }

    .sea-section__subitem:nth-child(1) .sea-section__subitem-number {
        text-align: right
    }

    .sea-section__subitem:nth-child(1) .sea-section__subitem-title {
        margin-left: auto;
        text-align: right
    }

    .sea-section__subitem:nth-child(1) .sea-section__subitem-text {
        text-align: right
    }

    .sea-section__subitem-number {
        font-size: 3rem;
        margin-bottom: 2rem
    }

    .sea-section__subitem-title {
        font-size: 4rem;
        letter-spacing: -.16rem;
        margin-bottom: 4rem
    }
}

.accordion {
    border-bottom: .1rem solid #798ca2
}

.accordion.open .accordion__icon {
    transform: rotateX(180deg)
}

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 2rem;
    cursor: pointer
}

.accordion__number {
    display: none
}

.accordion__title {
    color: #203c5c;
    font-family: Anton;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -.08rem;
    text-transform: uppercase
}

.accordion__icon {
    width: 3.7rem;
    height: auto;
    flex-shrink: 0;
    transition: .3s
}

.accordion__body {
    overflow: hidden;
    height: 0
}

.accordion__inner {
    padding-bottom: 2rem
}

@media (min-width: 1200px) {
    .accordion__header {
        display: grid;
        grid-template-columns: 50% auto auto;
        align-items: flex-start;
        justify-content: unset;
        gap: 0
    }

    .accordion__number {
        display: block;
        font-size: 3rem;
        letter-spacing: -.12rem
    }

    .accordion__title {
        font-size: 2.5rem;
        line-height: 110%;
        letter-spacing: -.1rem;
        max-width: 34.4rem
    }

    .accordion__icon {
        width: 3.7rem;
        margin-left: auto
    }

    .accordion__inner {
        padding-left: 50%
    }

    .accordion__inner p {
        max-width: 46.8rem
    }
}

.faq-section {
    padding-top: 8rem;
    padding-bottom: 5rem
}

.faq-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 7rem 2rem;
    margin-bottom: 16rem
}

.faq-section__title {
    color: #FC9802;
    font-family: Anton;
    font-size: 4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.16rem;
    text-transform: uppercase;
    max-width: 20rem
}

.faq-section__button {
    width: 10.5rem;
    height: 10.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FC9802
}

.faq-section__button svg {
    width: 2.6064rem;
    height: auto;
    transition: .3s
}

.faq-section__button:hover svg {
    transform: rotate(-45deg)
}

.faq-section__subtitle {
    color: #203c5c;
    font-family: Anton;
    font-size: 3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -.12rem;
    text-transform: uppercase
}

.faq-section__list {
    display: grid;
    gap: 3rem
}

@media (min-width: 1200px) {
    .faq-section {
        padding: 15rem 0
    }

    .faq-section__header {
        display: grid;
        grid-template-columns: 50% auto auto;
        align-items: center;
        justify-content: unset;
        gap: 0;
        margin-bottom: 9rem
    }

    .faq-section__title {
        order: 1;
        font-size: 4rem;
        letter-spacing: -.16rem;
        max-width: 20rem
    }

    .faq-section__subtitle {
        order: 2;
        max-width: 63rem;
        font-size: 4rem;
        letter-spacing: -.16rem;
        margin-right: auto
    }

    .faq-section__button {
        order: 3;
        width: 14rem;
        height: 14rem;
        margin-left: auto
    }

    .faq-section__button svg {
        width: 3.5rem
    }

    .faq-section__list {
        gap: 4rem
    }
}

@font-face {
    font-family: swiper-icons;
    src: url(data:application/font-woff;charset=utf-8;base64,\ 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);
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: #00000026
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, #00000080, #0000)
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

/* DS Globle Custom Styles */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
    padding: 0.8rem 1.8rem;
    background: #FC9802;
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    border-radius: 3rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.35);
    transition: all 0.3s ease;
}

.cta-badge:hover {
    background: #e03600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 61, 0, 0.5);
    color: #ffffff !important;
}

.services-swiper__item-text .cta-badge {
    margin-top: 1.2rem;
    font-size: 1.2rem;
    padding: 0.6rem 1.4rem;
}

/* ============================================================
   DS GLOBLE PRELOADER SCREEN (Web & Mobile)
   ============================================================ */
.ds-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    /* background: radial-gradient(circle at 50% 40%, #173250 0%, #0c1a29 70%, #07101a 100%); */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease, transform 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
}

.ds-preloader.ds-preloader--hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    pointer-events: none;
}

.ds-preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 440px;
    padding: 2rem;
}

.ds-preloader__badge {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: rgba(252, 152, 2, 0.15);
    border: 1px solid rgba(252, 152, 2, 0.5);
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    color: #FC9802;
    margin-bottom: 1.6rem;
    animation: preloaderPulse 2s infinite ease-in-out;
}

.ds-preloader__title {
    font-family: Anton, sans-serif;
    font-size: clamp(3.6rem, 8vw, 5.8rem);
    line-height: 1;
    letter-spacing: 0.15rem;
    margin: 0 0 0.8rem;
    background: linear-gradient(135deg, #FC9802 0%, #FC9802 45%, #FC9802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(0 4px 18px rgba(252, 152, 2, 0.35)); */
}

.ds-preloader__subtitle {
    font-family: Manrope, sans-serif;
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    font-weight: 600;
    letter-spacing: 0.25rem;
    color: rgba(210, 221, 233, 0.8);
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.ds-preloader__bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.4rem;
}

.ds-preloader__bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ff9f1c 0%, #FC9802 50%, #ff5e36 100%);
    border-radius: 99px;
    box-shadow: 0 0 12px rgba(252, 152, 2, 0.9);
    transition: width 0.15s ease-out;
}

.ds-preloader__info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: Manrope, sans-serif;
    font-size: 1.2rem;
    color: rgba(210, 221, 233, 0.7);
}

.ds-preloader__status {
    letter-spacing: 0.04rem;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
}

.ds-preloader__percent {
    font-family: Anton, sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    color: #FC9802;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto;
}

@keyframes preloaderPulse {

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

    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}