@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: "IgraSans";
    src: url("../fonts/igrasans-webfont.woff2") format("woff2"),
         url("../fonts/igrasans-webfont.woff") format("woff");
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	-webkit-user-drag: none;
    -moz-user-drag: none;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #FFD119 transparent;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FFD119 0%, #FFB800 50%, #FF8C00 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 208, 24, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #FFE55C 0%, #FFD119 50%, #FFB800 100%);
    box-shadow: 0 0 15px rgba(255, 208, 24, 0.6);
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

body {
    font-family: "IgraSans", sans-serif;
    background-color: #111111;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

.hero__glow {
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 379px;
    border-radius: 50%;
    background: rgba(255, 206, 43, 0.95);
    filter: blur(180.25px);
    z-index: 9999;
    pointer-events: none;
}

.hero__ray-top {
    position: absolute;
    top: 37vh;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    pointer-events: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(13px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header__container {
    max-width: 1254px;
    margin: 0 auto;
    padding: 20px 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__image {
    height: 50px;
    width: auto;
}

.nav--desktop {
    display: flex;
}

.nav--mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.995);
    z-index: 1100;
    padding: 100px 20px 40px 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.nav--mobile.nav--open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 37px;
}

.nav__list--mobile {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 30px;
    width: 100%;
}

.nav__link {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.88px;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
}

.nav__link--mobile {
    font-size: 24px;
    padding: 15px 0;
    text-align: right;
    width: 100%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 56px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.button--header {
    width: 156px;
    height: 50px;
    font-size: 22px;
    letter-spacing: -0.88px;
    border: 1px solid #FC0;
    background: linear-gradient(93deg, #FFF 0.85%, #C0C0C0 98.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 3px;
}

.button--primary {
    width: 220px;
    height: 70px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.22px;
    color: #111111;
    background: linear-gradient(180deg, #FFD119 50%, #C29B00 132.14%);
    border: 1.5px solid #FFE282;
    border-radius: 20px;
    box-shadow: 0 0 25px 0 rgba(159, 133, 62, 0.60);
    padding-bottom: 8px;
}

.button--secondary {
    width: 220px;
    height: 70px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.22px;
    color: #111111;
    background: linear-gradient(180deg, rgba(255, 219, 76, 0.90) 57.86%, rgba(255, 219, 76, 0.67) 100%);
    border: 1px solid #A69458;
    border-radius: 20px;
    box-shadow: 0 0 25px 0 rgba(159, 133, 62, 0.60);
    padding-bottom: 8px;
}

.button--mobile {
    width: 156px;
    height: 50px;
    font-size: 22px;
    letter-spacing: -0.88px;
    border: 1px solid #FC0;
    background: linear-gradient(93deg, #FFF 0.85%, #C0C0C0 98.98%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 3px;
    align-self: flex-end;
}

.button__icon {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1200;
}

.mobile-menu-toggle__line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__container {
    max-width: 1254px;
    margin: 0 auto;
    padding: 140px 24px 64px;
    position: relative;
    z-index: 200;
    width: 100%;
}

@supports (-webkit-touch-callout: none) {
    .hero__container {
        padding: 120px 24px 64px;
    }
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__pattern-image {
    width: auto;
    height: auto;
    max-width: 100vw;
}

.hero__rays {
    position: absolute;
    inset: 0;
    z-index: 100;
}

.hero__ray {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__ray--2 { top: 37vh; left: 46%; }
.hero__ray--3 { top: 30vh; left: 50%; }
.hero__ray--4 { top: 30vh; left: 43.5%; }
.hero__ray--5 { top: 30vh; left: 55%; max-width: 90%; }
.hero__ray--6 { top: 20vh; left: 41%; }
.hero__ray--7 { top: 17vh; left: 54%; max-width: 90%; }
.hero__ray--8 { top: 32vh; left: 34%; }
.hero__ray--9 { top: 26vh; left: 64%; max-width: 70%; }

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 50;
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 247, 232, 0.20) 0%, rgba(255, 181, 43, 0.20) 100%);
    filter: blur(1.25px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__particle--1 { width: 10px; height: 10px; top: 12vh; left: 37%; }
.hero__particle--2 { width: 3px; height: 3px; top: 11vh; left: 32%; }
.hero__particle--3 { width: 4px; height: 4px; top: 11.5vh; left: 43%; filter: blur(1.3px); }
.hero__particle--4 { width: 3px; height: 3px; top: 19vh; left: 44%; filter: blur(1.5px); }
.hero__particle--5 { width: 9px; height: 9px; top: 25vh; left: 45%; }
.hero__particle--6 { width: 5px; height: 5px; top: 20vh; left: 38%; filter: blur(1.2px); }
.hero__particle--7 { width: 7px; height: 7px; top: 20vh; left: 32%; }
.hero__particle--8 { width: 2px; height: 2px; top: 16.5vh; left: 31.5%; }
.hero__particle--9 { width: 5px; height: 5px; top: 33vh; left: 33%; filter: blur(1.2px); }
.hero__particle--10 { width: 4px; height: 4px; top: 39vh; left: 42.8%; filter: blur(1.8px); }
.hero__particle--11 { width: 3px; height: 3px; top: 33vh; left: 46%; }
.hero__particle--12 { width: 5px; height: 5px; top: 16vh; left: 49%; filter: blur(1.4px); }
.hero__particle--13 { width: 3px; height: 3px; top: 27vh; left: 51%; }
.hero__particle--14 { width: 10px; height: 10px; top: 12vh; left: 52%; }
.hero__particle--15 { width: 3px; height: 3px; top: 23vh; left: 53.8%; }
.hero__particle--16 { width: 13px; height: 13px; top: 21vh; left: 62%; filter: blur(1.6px); }
.hero__particle--17 { width: 4px; height: 4px; top: 15vh; left: 60%; }
.hero__particle--18 { width: 6px; height: 6px; top: 11vh; left: 61%; filter: blur(1.9px); }
.hero__particle--19 { width: 5px; height: 5px; top: 37vh; left: 59%; }
.hero__particle--20 { width: 3px; height: 3px; top: 30vh; left: 59.5%; filter: blur(1.5px); }
.hero__particle--21 { width: 3px; height: 3px; top: 31vh; left: 67%; filter: blur(1.8px); }
.hero__particle--22 { width: 4px; height: 4px; top: 23vh; left: 69.8%; }
.hero__particle--23 { width: 3px; height: 3px; top: 14vh; left: 69%; filter: blur(1.9px); }
.hero__particle--24 { width: 5px; height: 5px; top: 10.5vh; left: 71%; filter: blur(1.8px); }

.hero__stats {
    margin-bottom: 32px;
}

.stats {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.stats__avatars {
    width: 100px;
    height: auto;
}

.stats__text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.18px;
    background: linear-gradient(91deg, rgba(255, 255, 255, 0.70) 20.5%, rgba(197, 197, 197, 0.70) 91.89%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.hero__content {
    text-align: center;
    margin-bottom: 64px;
}

.hero__title {
    font-size: 85px;
    font-weight: 400;
    letter-spacing: -1.7px;
    background: linear-gradient(180deg, #FFF 0%, #4A4A4A 249.41%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.1;
    cursor: default;
}

.hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(153, 153, 153, 0.55) 126.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1.4;
    cursor: default;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero__about {
    text-align: center;
}

.about-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 214px;
    height: 55px;
    max-width: 100%;
    border-radius: 86px;
    border: 0.5px solid rgba(88, 71, 4, 0.329);
    background: linear-gradient(0deg, #101010 0%, #DDB003 3020%);
    margin-bottom: 30px;
    cursor: default;
}

.about-card__icon {
    width: 30px;
    height: 30px;
    cursor: default;
}

.about-card__text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 5px;
    cursor: default;
}

.about-card__description {
    font-size: 52px;
    font-weight: 400;
    letter-spacing: -0.52px;
    max-width: 1080px;
    margin: 0 auto;
    background: linear-gradient(180deg, #FFF 0.11%, #4A4A4A 362.19%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    cursor: default;
}

@media (max-width: 1050px) {
    /* Хедер */
    .nav--desktop,
    .button--header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header__container {
        padding: 20px 16px;
    }
    
    .hero__container {
        padding: 120px 16px 48px;
    }
    
    @supports (-webkit-touch-callout: none) {
        .hero__container {
            padding: 100px 16px 48px;
        }
    }
    
    .hero__title {
        font-size: 50px;
    }
    
    .hero__subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .hero__buttons {
        gap: 20px;
        padding: 0 10px;
    }
    
    .button--primary,
    .button--secondary {
        width: 200px;
        height: 50px;
        font-size: 18px;
    }
    
    .about-card__description {
        font-size: 30px;
    }
    
    .hero__ray-top {
        display: none;
    }
    
    .hero__glow {
        background: rgba(255, 206, 43, 0.7);
    }
}

@media (max-width: 768px) {
    .hero__container {
        padding: 120px 12px 36px;
    }
    
    @supports (-webkit-touch-callout: none) {
        .hero__container {
            padding: 95px 12px 36px;
        }
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .button--primary,
    .button--secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats__text {
        font-size: 16px;
        text-align: center;
    }
    
    .about-card {
        width: 180px;
        height: 48px;
        gap: 12px;
        margin-top: 30px;
    }
    
    .about-card__text {
        font-size: 16px;
    }
    
    .about-card__description {
        font-size: 20px;
    }
    
    
}

@media (max-width: 480px) {
    .hero__container {
        padding: 120px 8px 24px;
    }
    
    @supports (-webkit-touch-callout: none) {
        .hero__container {
            padding: 90px 8px 24px;
        }
    }
    
    .stats__avatars {
        width: 80px;
    }
    
    .stats__text {
        font-size: 14px;
    }
    
    .about-card {
        width: 160px;
        height: 44px;
    }
    
    .about-card__text {
        font-size: 14px;
    }
    
    .hero__glow {
        width: 300px;
        height: 300px;
        background: rgba(255, 206, 43);
    }
    
    .hero__title {
        font-size: 32px;
    }

    .hero__rays {
        display: none;
    }
}

.button:focus-visible {
    outline: 2px solid #FFD119;
    outline-offset: 2px;
}

.nav__link:focus-visible {
    outline: 2px solid #FFD119;
    outline-offset: 4px;
    border-radius: 8px;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px solid #FFD119;
    outline-offset: 2px;
    border-radius: 8px;
}

.no-scroll {
    overflow: hidden;
}


.features {
    padding: 0 0 80px 0;
    position: relative;
    z-index: 200;
}

.features__container {
    max-width: 1254px;
    margin: 0 auto;
    padding: 0 24px;
}

.features__grid {
    display: grid;
    grid-template-columns: 610px 610px;
    grid-template-rows: 190px 119px 190px;
    gap: 20px;
    height: 518px;
    grid-template-areas: 
        "operations reports"
        "operations recommendations"
        "multi recommendations";
    justify-content: center;
    margin: 0 auto;
}

.feature-card {
    border-radius: 25px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-card--operations {
    grid-area: operations;
    background: 
        linear-gradient(214deg, #FFD018 -883.83%, #121212 49.5%) padding-box,
        linear-gradient(225deg, rgba(255, 203, 0, 0.8) -40%, #201f17) border-box;
    border: 3px solid transparent;
}

.feature-card--reports {
    grid-area: reports;
    background: 
        linear-gradient(124deg, #FFD018 -883.83%, #121212 49.5%) padding-box,
        linear-gradient(135deg, rgba(255, 203, 0, 0.8) -40%, #201f17) border-box;
    border: 3px solid transparent;
}

.feature-card--multi {
    grid-area: multi;
    background: 
        linear-gradient(214deg, #ffd1187c -883.83%, #121212 49.5%) padding-box,
        linear-gradient(225deg, rgba(255, 204, 0, 0.473) -40%, #201f17) border-box;
    border: 3px solid transparent;
}

.feature-card--recommendations {
    grid-area: recommendations;
    background: 
        linear-gradient(124deg, #ffd118cc -883.83%, #121212 49.5%) padding-box,
        linear-gradient(135deg, rgba(255, 204, 0, 0.575) -40%, #201f17) border-box;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    gap: 20px;
}

.feature-card__image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card__image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card__content {
    flex: 1;
}

.feature-card--recommendations .feature-card__content {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 200px;
    flex: none;
}

.feature-card__title--operations {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.28px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 102.965%;
    background: linear-gradient(267deg, rgba(255, 255, 255, 0.85) 60%, rgba(243, 243, 243, 0.6) 104.48%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__title--reports {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.28px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 102.965%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.60) 111.26%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__title--multi {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.28px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 102.965%;
    background: linear-gradient(267deg, rgba(255, 255, 255, 0.85) 60%, rgba(243, 243, 243, 0.6) 104.48%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__title--recommendations {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.28px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 102.965%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.60) 111.26%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__text--operations {
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.16px;
    background: linear-gradient(214deg, #929292 -29.23%, rgba(128, 128, 128, 0.85) 109.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__text--reports {
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.16px;
    background: linear-gradient(85deg, #929292 4.44%, rgba(119, 119, 119, 0.85) 159.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__text--multi {
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.16px;
    background: linear-gradient(214deg, #929292 -29.23%, rgba(128, 128, 128, 0.85) 109.16%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.feature-card__text--recommendations {
    font-size: 16px;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: -0.16px;
    background: linear-gradient(85deg, #929292 4.44%, rgba(119, 119, 119, 0.85) 159.58%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.testimonials-content {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.testimonials-slider {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.testimonials-track {
    width: 100%;
    height: auto;
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-slide.prev {
    transform: translateX(-100%);
}

.testimonial-slide.next {
    transform: translateX(100%);
}

.testimonial-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.testimonial-dot:hover {
    background: rgba(255, 208, 24, 0.7);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #FFD018;
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(255, 208, 24, 0.6);
}

.recommendation-avatar {
    position: absolute;
    overflow: hidden;
}

.recommendation-avatar img {
    object-fit: cover;
}

.recommendation-avatar--1 {
    bottom: 210px;
    left: 18px;
}

.recommendation-avatar--2 {
    bottom: 24px;
    left: 60px;
}

.recommendation-avatar--3 {
    bottom: 24px;
    left: 140px;
}

.recommendation-avatar--4 {
    bottom: 60px;
    right: 100px;
}

@media (max-width: 1280px) {
    .features__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 170px 100px 170px;
        max-width: 100%;
        height: auto;
    }
    
    .feature-card {
        padding: 24px;
        gap: 20px;
    }
    
    .feature-card__image {
        width: 80px;
        height: 80px;
    }
    
    .feature-card--recommendations .feature-card__content {
        width: 150px;
    }
    
    .recommendation-avatar {
        width: 100px;
        height: 100px;
    }
    
    .testimonials-content {
        flex: 0 0 150px;
    }
}

@media (max-width: 1100px) {
    .features {
        padding: 0;
    }
    
    .features__container {
        padding: 0 16px;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: 
            "operations"
            "reports"
            "multi"
            "recommendations";
        gap: 25px;
        height: auto;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
        align-items: center;
    }
    
    .feature-card--recommendations {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }
    
    .feature-card--recommendations .feature-card__content {
        position: static;
        width: auto;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .recommendation-avatar {
        position: static;
        width: 48px;
        height: 48px;
        margin: 4px;
        display: inline-block;
    }
    
    .testimonials-content {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .testimonials-slider {
        width: 100%;
        order: -1;
    }
    
    .feature-card__image {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }
    
    .feature-card__title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card__text {
        font-size: 14px;
        text-align: center;
    }

    .about-card {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .features__container {
        padding: 0 12px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .feature-card__image {
        width: 80px;
        height: 80px;
    }
    
    .recommendation-avatar {
        width: 36px;
        height: 36px;
    }
    
    .feature-card__title {
        font-size: 18px;
    }
    
    .feature-card__text {
        font-size: 13px;
    }
    
    .testimonials-dots {
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
}


.faq {
    padding: 100px 40px 100px 40px;
    background-color: #111111;
    position: relative;
    z-index: 100;
    overflow: hidden;
    margin-top: 80px;
    border-radius: 25px;
    border-top: 1px solid rgba(73, 73, 73, 0.2);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
}

.faq::before {
    content: '';
    position: absolute;
    top: -400px;
    left: -300px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 208, 24, 0.15) 0%, rgba(255, 208, 24, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -500px;
    right: -200px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 208, 24, 0.12) 0%, rgba(255, 208, 24, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(150px);
    z-index: 1;
}

.faq__container {
    max-width: 1254px;
    margin: 0 auto;
    padding: 0 24px;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    align-items: start;
}

.faq__header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 140px;
    height: 55px;
    max-width: 100%;
    border-radius: 86px;
    border: 0.5px solid rgba(88, 71, 4, 0.329);
    background: linear-gradient(0deg, #101010 0%, #DDB003 3020%);
    align-self: flex-start;
}

.faq__badge-icon {
    width: 30px;
    height: 30px;
}

.faq__badge-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 5px;
    cursor: default;
}

.faq__title {
    font-size: 58px;
    font-weight: 400;
    letter-spacing: -1.7px;
    line-height: 1.1;
    margin: 0;
    cursor: default;
}

.faq__title-main {
    color: #ffffff;
}

.faq__title-gradient {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0.05%, rgba(213, 213, 213, 0.75) 99.87%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
}

.faq__subtitle {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.4;
    margin: 0;
    max-width: 400px;
    cursor: default;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: #0F0F0F;
    border: 1px solid #262626;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: #444444;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    gap: 20px;
}

.faq__question-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    flex: 1;
}

.faq__toggle {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
}

.faq__toggle-icon {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
    line-height: 1;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
}

.faq__toggle-icon::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__toggle-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
    max-height: 200px;
}

.faq__answer-content {
    padding: 0 24px 24px 24px;
}

.faq__answer-content p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    cursor: default;
}

@media (max-width: 1280px) {
    .faq__content {
        gap: 60px;
    }
    
    .faq__title {
        font-size: 60px;
    }
    
    .faq__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .faq__content {
        gap: 40px;
    }
    
    .faq__title {
        font-size: 50px;
    }
    
    .faq {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0 60px 0;
    }
    
    .faq__container {
        padding: 0 16px;
        min-height: auto;
    }
    
    .faq__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq__header {
        text-align: center;
        gap: 24px;
    }
    
    .faq__badge {
        align-self: center;
        width: 120px;
        height: 48px;
        gap: 12px;
    }
    
    .faq__badge-text {
        font-size: 16px;
    }
    
    .faq__title {
        font-size: 40px;
    }
    
    .faq__subtitle {
        font-size: 16px;
        max-width: none;
    }
    
    .faq__question {
        padding: 20px;
    }
    
    .faq__question-text {
        font-size: 16px;
    }
    
    .faq__answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .faq__answer-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 30px 0 40px 0;
    }
    
    .faq__container {
        padding: 0 12px;
    }
    
    .faq__header {
        gap: 20px;
    }
    
    .faq__badge {
        width: 100px;
        height: 44px;
        gap: 10px;
    }
    
    .faq__badge-text {
        font-size: 14px;
    }
    
    .faq__title {
        font-size: 32px;
    }
    
    .faq__subtitle {
        font-size: 14px;
    }
    
    .faq__question {
        padding: 16px;
        gap: 16px;
    }
    
    .faq__question-text {
        font-size: 15px;
    }
    
    .faq__toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq__toggle-icon {
        font-size: 20px;
    }
    
    .faq__answer-content {
        padding: 0 16px 16px 16px;
    }
}


.cta {
    background-color: #111111;
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.cta__container {
    width: 862px;
    height: 529px;
    position: relative;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 25px;
    border: 1px solid #2A2A2A;
    backdrop-filter: blur(20px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cta__pattern {
    position: absolute;

    z-index: 1;

}

.cta__pattern-image {
    width: auto;
    height: auto;
    max-width: 100%;
}

.cta__glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 206, 43, 0.8);
    filter: blur(120px);
    z-index: 1;
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 60px 40px;
}

.cta__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 279px;
    height: 55px;
    max-width: 100%;
    border-radius: 86px;
    border: 0.5px solid rgba(88, 71, 4, 0.329);
    background: linear-gradient(0deg, #1010108a 0%, #DDB003 3020%);
    margin-bottom: 15px;
    z-index: 1;
}

.cta__badge-icon {
    width: 30px;
    height: 30px;
}

.cta__badge-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 5px;
    cursor: default;
}

.cta__title {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: -1.28px;
    background: linear-gradient(180deg, #FFF 0%, #B1B1B1 128.13%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.1;
    cursor: default;
}

.cta__subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(153, 153, 153, 0.55) 126.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 32px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    cursor: default;
}

.cta .button--primary {
    width: 220px;
    height: 70px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.22px;
    color: #111111;
    background: linear-gradient(180deg, #FFD119 50%, #C29B00 132.14%);
    border: 1.5px solid #FFE282;
    border-radius: 20px;
    box-shadow: 0 0 25px 0 rgba(159, 133, 62, 0.60);
    padding-bottom: 8px;
    margin-top: -5px;
}

@media (max-width: 920px) {
    .cta__container {
        width: 90%;
        max-width: 862px;
        height: auto;
        min-height: 529px;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta__container {
        width: 95%;
        height: auto;
        min-height: 400px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .cta__content {
        padding: 40px 24px;
    }
    
    .cta__badge {
        min-width: 200px;
        height: 48px;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .cta__badge-text {
        font-size: 16px;
    }
    
    .cta__title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .cta__subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .button--primary {
        width: 100%;
        max-width: 280px;
    }
    
    
    .cta__glow {
        width: 300px;
        height: 200px;
        background: rgba(255, 206, 43, 0.6);
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 40px 0;
    }
    
    .cta__container {
        width: 95%;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .cta__content {
        padding: 32px 20px;
    }
    
    .cta__badge {
        min-width: 180px;
        height: 44px;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .cta__badge-text {
        font-size: 14px;
    }
    
    .cta__title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .cta__subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .cta__glow {
        width: 250px;
        height: 150px;
    }
}


.footer {
    height: 384px;
    background-color: transparent;
    position: relative;
    z-index: 100;
    border-top: 1px solid #2A2A2A;
    overflow: hidden;
    margin-top: auto;
}

.footer__container {
    max-width: 1254px;
    margin: 0 auto;
    padding: 40px 24px;
    height: 98%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer__glow {
    position: absolute;
    bottom: -500px;
    left: 50%;
    transform: translateX(-50%);
    width: 1427px;
    height: 379px;
    border-radius: 50%;
    background: rgba(255, 206, 43, 0.4);
    filter: blur(220px);
    z-index: 1;
    pointer-events: none;
}

.footer__top {
    margin-bottom: 32px;
}

.footer__logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    height: 50px;
    width: auto;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer__social:hover {
    transform: scale(1.05);
}

.footer__nav {
    margin-bottom: 32px;
}

.footer__nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__nav-link {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: #FFD018;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background-color: #999999;
    margin-bottom: 20px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.footer__copyright,
.footer__email {
    font-family: "Montserrat Alternates", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #999999;
    margin: 0;
}

.footer__email, .footer__copyright {
    transition: color 0.3s ease;
}

.footer__email:hover, .footer__copyright:hover {
    color: #FFD018;
}

@media (max-width: 1280px) {
    .footer__container {
        padding: 32px 24px;
    }
    
    .footer__nav-list {
        gap: 32px;
    }
    
    .footer__nav-link {
        font-size: 18px;
    }
    
    .footer__copyright,
    .footer__email {
        font-size: 18px;
    }
    
    .footer__divider {
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        height: auto;
        min-height: 320px;
    }
    
    .footer__container {
        padding: 24px 16px;
        gap: 24px;
    }
    
    .footer__top {
        margin-bottom: 24px;
    }
    
    .footer__logos {
        justify-content: space-between;
    }
    
    .footer__logo {
        height: 40px;
    }
    
    .footer__nav {
        margin-bottom: 24px;
    }
    
    .footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .footer__divider {
        margin-bottom: 16px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .footer__copyright,
    .footer__email {
        font-size: 16px;
    }
    
    .footer__glow {
        width: 800px;
        height: 200px;
        filter: blur(120px);
        bottom: -300px;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding: 20px 12px;
    }
    
    .footer__logos {
        gap: 16px;
        justify-content: space-between;
    }
    
    .footer__logo {
        height: 36px;
    }
    
    .footer__social svg {
        width: 36px;
        height: 36px;
    }
    
    .footer__copyright,
    .footer__email {
        font-size: 14px;
    }
    
    .footer__divider {
        margin-bottom: 14px;
    }
    
    .footer__glow {
        width: 600px;
        height: 150px;
        filter: blur(100px);
        bottom: -250px;
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}


@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.95;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

.hero__glow {
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes rayFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(0.5deg) scale(1.01);
    }
}

.hero__ray-top {
    animation: rayFloat 8s ease-in-out infinite;
}

@keyframes rayShimmer1 {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08) rotate(3deg);
        filter: brightness(1.4) hue-rotate(15deg);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.12) rotate(5deg);
        filter: brightness(1.6) hue-rotate(30deg);
    }
    75% {
        opacity: 1.1;
        transform: translate(-50%, -50%) scale(1.06) rotate(2deg);
        filter: brightness(1.3) hue-rotate(20deg);
    }
}

@keyframes rayShimmer2 {
    0%, 100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        filter: brightness(1) hue-rotate(0deg) saturate(1);
    }
    33% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.94) rotate(-4deg);
        filter: brightness(1.5) hue-rotate(-20deg) saturate(1.3);
    }
    66% {
        opacity: 1.2;
        transform: translate(-50%, -50%) scale(1.1) rotate(-6deg);
        filter: brightness(1.7) hue-rotate(-35deg) saturate(1.6);
    }
}

.hero__ray--2 { animation: rayShimmer1 10s ease-in-out infinite; animation-delay: 0.5s; }
.hero__ray--3 { animation: rayShimmer2 9s ease-in-out infinite; animation-delay: 1s; }
.hero__ray--4 { animation: rayShimmer1 11s ease-in-out infinite; animation-delay: 1.5s; }
.hero__ray--5 { animation: rayShimmer2 8s ease-in-out infinite; animation-delay: 2s; }
.hero__ray--6 { animation: rayShimmer1 9.5s ease-in-out infinite; animation-delay: 0.8s; }
.hero__ray--7 { animation: rayShimmer2 10.5s ease-in-out infinite; animation-delay: 2.2s; }
.hero__ray--8 { animation: rayShimmer1 8.5s ease-in-out infinite; animation-delay: 1.8s; }
.hero__ray--9 { animation: rayShimmer2 11.5s ease-in-out infinite; animation-delay: 0.3s; }

@keyframes particleFloat1 {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.3;
    }
    15% {
        opacity: 0.7;
    }
    25% {
        transform: translate(-50%, -50%) translateY(-12px) translateX(8px);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px) translateX(-5px);
        opacity: 0.9;
    }
    75% {
        transform: translate(-50%, -50%) translateY(-15px) translateX(12px);
        opacity: 0.7;
    }
    85% {
        opacity: 0.4;
    }
    95% {
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-3px) translateX(-8px);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    8% {
        opacity: 0.4;
    }
    20% {
        opacity: 0.8;
    }
    30% {
        transform: translate(-50%, -50%) translateY(-10px) translateX(-8px) scale(1.3);
        opacity: 1;
    }
    60% {
        transform: translate(-50%, -50%) translateY(-18px) translateX(6px) scale(0.7);
        opacity: 0.8;
    }
    78% {
        opacity: 0.5;
    }
    88% {
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-5px) translateX(-12px) scale(1.1);
        opacity: 0;
    }
}

@keyframes particleFloat3 {
    0% {
        transform: translate(-50%, -50%) translateY(0) scale(1) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    25% {
        opacity: 0.9;
    }
    40% {
        transform: translate(-50%, -50%) translateY(-20px) scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) translateY(-8px) scale(0.5) rotate(270deg);
        opacity: 0.9;
    }
    82% {
        opacity: 0.6;
    }
    92% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-2px) scale(0.8) rotate(360deg);
        opacity: 0;
    }
}

@keyframes particleFloat4 {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0);
        opacity: 0;
    }
    6% {
        opacity: 0.25;
    }
    18% {
        opacity: 0.65;
    }
    35% {
        transform: translate(-50%, -50%) translateY(-16px) translateX(15px);
        opacity: 1;
    }
    55% {
        transform: translate(-50%, -50%) translateY(-6px) translateX(-10px);
        opacity: 0.9;
    }
    75% {
        transform: translate(-50%, -50%) translateY(-22px) translateX(3px);
        opacity: 0.6;
    }
    87% {
        opacity: 0.3;
    }
    96% {
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-4px) translateX(-6px);
        opacity: 0;
    }
}

@keyframes particleFloat5 {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    12% {
        opacity: 0.4;
    }
    22% {
        opacity: 0.7;
    }
    35% {
        transform: translate(-50%, -50%) translateY(-14px) translateX(-12px) scale(1.8);
        opacity: 0.85;
    }
    65% {
        transform: translate(-50%, -50%) translateY(-9px) translateX(8px) scale(0.6);
        opacity: 1;
    }
    80% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-1px) translateX(14px) scale(1.2);
        opacity: 0;
    }
}

@keyframes particleFloat6 {
    0% {
        transform: translate(-50%, -50%) translateY(0) translateX(0);
        opacity: 0;
    }
    9% {
        opacity: 0.35;
    }
    28% {
        opacity: 0.8;
    }
    42% {
        transform: translate(-50%, -50%) translateY(-11px) translateX(9px);
        opacity: 1;
    }
    68% {
        transform: translate(-50%, -50%) translateY(-19px) translateX(-7px);
        opacity: 0.7;
    }
    83% {
        opacity: 0.4;
    }
    93% {
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) translateY(-7px) translateX(11px);
        opacity: 0;
    }
}

.hero__particle--1  { animation: particleFloat1 16s ease-in-out infinite both; animation-delay: -0s; }
.hero__particle--2  { animation: particleFloat2 18s ease-in-out infinite both; animation-delay: -2.3s; }
.hero__particle--3  { animation: particleFloat3 14s ease-in-out infinite both; animation-delay: -4.1s; }
.hero__particle--4  { animation: particleFloat4 20s ease-in-out infinite both; animation-delay: -1.2s; }
.hero__particle--5  { animation: particleFloat5 17s ease-in-out infinite both; animation-delay: -6.8s; }
.hero__particle--6  { animation: particleFloat6 15s ease-in-out infinite both; animation-delay: -3.4s; }
.hero__particle--7  { animation: particleFloat1 19s ease-in-out infinite both; animation-delay: -5.7s; }
.hero__particle--8  { animation: particleFloat2 13s ease-in-out infinite both; animation-delay: -7.9s; }
.hero__particle--9  { animation: particleFloat3 21s ease-in-out infinite both; animation-delay: -1.8s; }
.hero__particle--10 { animation: particleFloat4 16s ease-in-out infinite both; animation-delay: -8.3s; }
.hero__particle--11 { animation: particleFloat5 18s ease-in-out infinite both; animation-delay: -2.7s; }
.hero__particle--12 { animation: particleFloat6 14s ease-in-out infinite both; animation-delay: -4.9s; }
.hero__particle--13 { animation: particleFloat1 22s ease-in-out infinite both; animation-delay: -0.6s; }
.hero__particle--14 { animation: particleFloat2 15s ease-in-out infinite both; animation-delay: -6.2s; }
.hero__particle--15 { animation: particleFloat3 17s ease-in-out infinite both; animation-delay: -3.8s; }
.hero__particle--16 { animation: particleFloat4 19s ease-in-out infinite both; animation-delay: -9.1s; }
.hero__particle--17 { animation: particleFloat5 16s ease-in-out infinite both; animation-delay: -1.9s; }
.hero__particle--18 { animation: particleFloat6 20s ease-in-out infinite both; animation-delay: -7.4s; }
.hero__particle--19 { animation: particleFloat1 18s ease-in-out infinite both; animation-delay: -4.6s; }
.hero__particle--20 { animation: particleFloat2 14s ease-in-out infinite both; animation-delay: -2.9s; }
.hero__particle--21 { animation: particleFloat3 23s ease-in-out infinite both; animation-delay: -8.7s; }
.hero__particle--22 { animation: particleFloat4 17s ease-in-out infinite both; animation-delay: -5.3s; }
.hero__particle--23 { animation: particleFloat5 15s ease-in-out infinite both; animation-delay: -3.6s; }
.hero__particle--24 { animation: particleFloat6 21s ease-in-out infinite both; animation-delay: -6.5s; }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.in-view,
.fade-in-left.in-view,
.fade-in-right.in-view,
.fade-in.in-view {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.hero__stats {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero__content {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-card--operations {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-card--reports {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-card--multi {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-card--recommendations {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 1.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 208, 24, 0.4);
}

.button:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.button--primary:hover {
    box-shadow: 
        0 0 25px 0 rgba(159, 133, 62, 0.80),
        0 0 40px 5px rgba(255, 208, 24, 0.3),
        0 8px 25px rgba(255, 208, 24, 0.4);
    transform: translateY(-3px) scale(1.03);
}

.logo, .footer__logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover, .footer__logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 208, 24, 0.3));
}

.nav__link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD018, #FFB800);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: #FFD018;
    text-shadow: 0 0 10px rgba(255, 208, 24, 0.3);
}

.nav__link:hover::after {
    width: 100%;
}

.feature-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.15),
        0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq__item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item:hover {
    border-color: #FFD018;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 208, 24, 0.1);
}

.faq__toggle {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__toggle:hover {
    transform: scale(1.1) rotate(90deg);
    background: rgba(255, 208, 24, 0.1);
    border-radius: 50%;
}

.stats__avatars {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats__avatars:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 208, 24, 0.2));
}

.about-card, .faq__badge, .cta__badge {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover, .faq__badge:hover, .cta__badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 208, 24, 0.2);
    border-color: rgba(255, 208, 24, 0.5);
}

.mobile-menu-toggle {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.testimonial-dot {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot:hover {
    background: rgba(255, 208, 24, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 208, 24, 0.5);
}

.footer__social {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__social:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255, 208, 24, 0.5));
}

.footer__nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD018, #FFB800);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__nav-link:hover::after {
    width: 100%;
}


@media (max-width: 768px) {
    .hero__stats,
    .hero__content,
    .feature-card--operations,
    .feature-card--reports,
    .feature-card--multi,
    .feature-card--recommendations {
        animation-duration: 0.5s;
    }
    
    .hero__particle {
        animation-duration: 25s !important;
    }
    
    .hero__glow {
        animation-duration: 8s !important;
    }
    
    .button::before {
        display: none;
    }
    
    .feature-card:hover,
    .faq__item:hover {
        transform: none;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in,
    .hero__stats,
    .hero__content,
    .feature-card--operations,
    .feature-card--reports,
    .feature-card--multi,
    .feature-card--recommendations {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.bottom-blur-effect {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 999;
    pointer-events: none;
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    mask-image: linear-gradient(to top, black 10%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 10%, transparent 100%);
}



.header {
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.header--hidden {
    transform: translateY(-100%);
    box-shadow: none;
}


.cursor {
    position: fixed;
    top: 0;
    left: -10px;
    width: 13px;
    height: 13px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, background 0.2s ease-out;
    z-index: 9999;
}

.cursor.click {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(255, 255, 255, 0.7);
}


.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111111;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 100px;
    height: auto;
    margin-bottom: 40px;
    animation: logoSpin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 208, 24, 0.3));
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 208, 24, 0.3));
    }
    25% {
        transform: rotate(90deg) scale(1.05);
        filter: drop-shadow(0 0 25px rgba(255, 208, 24, 0.4));
    }
    50% {
        transform: rotate(180deg) scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 208, 24, 0.5));
    }
    75% {
        transform: rotate(270deg) scale(1.05);
        filter: drop-shadow(0 0 25px rgba(255, 208, 24, 0.4));
    }
    100% {
        transform: rotate(360deg) scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 208, 24, 0.3));
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD119, #FFB800, #FF8C00);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 15px rgba(255, 208, 24, 0.5);
    position: relative;
}

.loading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.loading-percentage {
    font-family: "IgraSans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    text-align: center;
    min-height: 20px;
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.loading-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 208, 24, 0.3);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.loading-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.loading-particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 0.5s; }
.loading-particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 1s; }
.loading-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 1.5s; }
.loading-particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 2s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

body.loading *:not(.mobile-menu-toggle):not(.mobile-menu-toggle *):not(.nav--mobile):not(.nav--mobile *) {
    animation-play-state: paused !important;
    transition: none !important;
}

body.loading .mobile-menu-toggle,
body.loading .mobile-menu-toggle__line,
body.loading .nav--mobile,
body.loading .nav--mobile * {
    transition: all 0.4s ease !important;
    animation-play-state: running !important;
}

body.loading .mobile-menu-toggle,
body.loading .nav--mobile {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.mobile-menu-toggle {
    z-index: 1200 !important;
    position: relative;
}

.nav--mobile {
    z-index: 1100 !important;
}

.mobile-menu-toggle__line {
    transition: all 0.4s ease !important;
}

.nav--mobile.nav--open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.loading .mobile-menu-toggle,
body.loading .nav--mobile,
body.loading .nav--mobile * {
    pointer-events: auto !important;
}

body.loading .mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px) !important;
}

body.loading .mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(2) {
    opacity: 0 !important;
}

body.loading .mobile-menu-toggle--active .mobile-menu-toggle__line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px) !important;
}

body.loading *:not(.mobile-menu-toggle):not(.mobile-menu-toggle *):not(.nav--mobile):not(.nav--mobile *):not(.loading-screen):not(.loading-screen *) {
    animation-play-state: paused !important;
    transition: none !important;
}

body.loading .hero__stats:not(.nav--mobile):not(.nav--mobile *),
body.loading .hero__content:not(.nav--mobile):not(.nav--mobile *),
body.loading .feature-card--operations:not(.nav--mobile):not(.nav--mobile *),
body.loading .feature-card--reports:not(.nav--mobile):not(.nav--mobile *),
body.loading .feature-card--multi:not(.nav--mobile):not(.nav--mobile *),
body.loading .feature-card--recommendations:not(.nav--mobile):not(.nav--mobile *),
body.loading .hero__about:not(.nav--mobile):not(.nav--mobile *),
body.loading .fade-in-up:not(.nav--mobile):not(.nav--mobile *),
body.loading .fade-in-left:not(.nav--mobile):not(.nav--mobile *),
body.loading .fade-in-right:not(.nav--mobile):not(.nav--mobile *),
body.loading .fade-in:not(.nav--mobile):not(.nav--mobile *) {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    visibility: hidden !important;
}

@media (max-width: 1050px) {
    .mobile-menu-toggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        z-index: 1200 !important;
    }
    
    body.loading .mobile-menu-toggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}
