* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: black;
}

.header {
    background: none;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header .container  {
    transition: background-color 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
}
.header.scrolled .container  {
    background-color: #000000;
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
}
@media (min-width: 1024px){
    .header {
        padding: 20px 50px;
    }
}
@media (max-width: 1024px){
    .header {
        padding: 37px 40px;
    }
}
@media (max-width: 768px){
    .header {
        padding: 20px 30px;
    }
}
@media (max-width: 425px){
    .header {
        padding: 24px;
    }
}
@media (min-width: 1430px){
    .header {
        padding-top: 37px;
        padding: 30px 56px;
    }
    .left-header {
        gap: 50px;
    }
    .logo img{
        max-width: 150px;
    }
    .logo {
        margin-right: 50px;
    }
    .nav-menu {
        gap: 60px;
    }
    .nav-menu a {
    font-size: 16px;
    }
    a.btn.btn-login {
        font-size: 16px;
    }
    .btn-primary {
        font-size: 16px;
    }
}

.left-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
header.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #000000;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    max-width: 116px;
}
.logo-toggle {
    max-width: 50px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 80px;
}
.nav-menu a {
    text-decoration: none;
    color: #ABABAB;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: #FFFFFF;
}
.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}
.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-login {
    color: #ABABAB;
    background: transparent;
}
.btn-login:hover {
    color: #FFFFFF;
}
.btn-primary {
    background: #FF9000;
    color: black;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
}
.btn-primary:hover {
    background: #ABABAB;
}
.btn-mobile-toggle {
    background: #FFA600;
    color: black;
    border-radius: 25px;
}
a.btn.btn-mobile-toggle {
    background: #FFA600;
    color: black;
    border-radius: 25px;
    font-size: 12px;
    padding: 10px 25px;
}

/* hero section */
.hero {
    color: white;
    padding: 160px 0 100px;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}
.hero h1 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: #ABABAB;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-hero {
    background: #FF9000;
    color: black;
    border-radius: 25px;
}
.btn-hero:hover {
    background: #ABABAB;
}
@media (max-width: 1024px){
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.0rem;
    }
}
@media (max-width: 768px){
    .hero{
        padding: 150px 50px;
        padding-bottom: 0;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 0.7rem;
    }
    .hero-buttons{
        flex-wrap: nowrap;
    }
}
@media (max-width: 425px){
    .hero h1 {
        font-family: 'Montserrat';
        font-weight: 600;
        font-style: 'SemiBold';
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 40px;
    }
    .hero p {
        font-family: 'Montserrat';
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
        margin-bottom: 40px;
    }     
    .hero{
        padding: 168px 24px;
    }
    .btn-hero {
        font-family: 'Montserrat';
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }
}
@media (min-width: 1430px){
    .hero {
        padding: 250px 0 460px;
    }
    .btn-hero {
        font-size: 16px;
        font-weight: 500;
    }
    .hero h1 {
        margin-bottom: 30px;
    }
    .hero p {
        margin-bottom: 60px;
    }
    .hero-content {
        max-width: 1200px;
    }
}

/* mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    background: rgb(255, 255, 255);
    margin: 3px 0;
    transition: 0.3s;
}
.menu-toddle-mobile{
    display: none;
}
.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 1001;
}
.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    top: 470%;
    left: 40%;
    width: 20px;
    height: 1px;
    background: white;
}
.close-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.close-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1024px){
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 15px;
    }
    .left-header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
    .btn-primary {
        background: #FF9000;
        color: black;
        border-radius: 25px;
        font-size: 13px;
        padding: 10px 15px;
    }
    .nav-menu a {
        font-size: 13px;
    }
    .btn-login {
        font-size: 13px;
        padding: 0;
    }
    .logo {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .nav-menu.active + .close-menu {
        display: block;
    }
    .nav-menu a {
        font-size: 1rem;
    }
    .logo {
        max-width: 116px;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toddle-mobile{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #292929;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        margin: 10px;
        padding-bottom: 50px;
        gap: 20px;
    }
    .nav-menu.active {
        display: flex;
        align-items: center;
    }
    .nav-actions {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}


.footer {
    background-color: #292929;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    padding: 50px 50px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px; 
}
.footer-top-left {
    font-size: 3.4em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
}
.orange-text {
    color: #FF9900; 
}
.footer-top-right {
    width: 40%; 
}
.consultation-form {
    display: flex;
    flex-direction: column; 
    gap: 20px;
}
.consultation-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background-color: #333;
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}
.consultation-form input::placeholder {
    color: #888; 
}
.submit-button {
    background-color: #FF9000; 
    color: black; 
    border: none;
    padding: 15px 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 20vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.submit-button:hover {
    background-color: #FFB347; 
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px; 
}
.footer-bottom-left {
    display: flex;
    gap: 32px; 
}
.address-column,
.contact-column {
    flex: 1; 
    text-decoration: none;
    color: #ABABAB;
    transition: color 0.3s ease;
    display: flex;
    gap: 15px;
    flex-direction: column;
    width: 300px;
}
.contact-column p {
    flex: 1; 
    text-decoration: none;
    color: #ABABAB;
    transition: color 0.3s ease;
}
a {
    text-decoration: none;
    color: #ABABAB;
    transition: color 0.3s ease;
}
.address-column p {
    white-space: pre-line; 
}
.footer-bottom-right {
    text-align: right;
    text-decoration: none;
    color: #ABABAB;
    transition: color 0.3s ease;
}
.telegram-link {
    text-decoration: none;
    color: #ABABAB;
    transition: color 0.3s ease;
}
.telegram-link:hover {
    color: #ffffff;
}

@media (max-width: 1024px){
    .footer-top-left {
        font-size: 2.3em;
    }
    .submit-button {
        width: 27vw;
}  
}
@media (max-width: 768px) {
    .footer {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 20px 0px;
        padding-bottom: 60px;
    }
    .footer-top-left p {
        margin-bottom: 40px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }
    br{
        display: none;
    }
    .footer-top,
    .footer-bottom {
        flex-direction: column; 
        text-align: center;      
        align-items: center;
    }
    .footer-bottom {
        padding-left: 10px;
        padding-right: 10px;
    }
    .address-column p {
        font-size: 0.8em;
    }
    p{
        font-size: 0.8em;
    }

    a.telegram-link {
        font-size: 0.8em;
    }
    .consultation-form {
        align-items: center;
    }
    .submit-button {
        width: 57vw; 
        padding: 15px 2px;
        font-size: 0.7em;
    }
    .consultation-form input {
        padding: 15px 50px;
        padding-left: 25px;
    }
    .footer-top-right {
        width: 100%; 
    }
    .footer-bottom-left {
        flex-direction: column; 
        align-items: center;    
        gap: 35px;
    }
    .address-column,
    .contact-column {
        text-align: center;   
        gap: 35px;
    }
    .footer-bottom-right {
        text-align: center;
        margin-top: 35px;    
    }
}
@media (max-width: 620px){
    .submit-button {
        width: 37vw; 
    }  
}
@media (max-width: 450px){
    .submit-button {
        width: 47vw; 
    }  
}
@media (max-width: 425px){
    .footer {
        padding: 60px 24px;
    }
    .submit-button {
        width: 80vw; 
    }  
    .footer-top-left {
        font-size: 2.3em;
        display: flex;
        align-self: flex-start;
    }
    /* .consultation-form input {
        width: 90vw; 
    } */
    .footer-top,
    .footer-bottom {
        width: 100%; 
    }
    .footer-bottom {
        padding-top: 60px;
    }
}
@media (max-width: 320px){
    .submit-button {
        width: 67vw; 
    }    
}
@media (max-width: 375px){
    .footer-top{
        margin-bottom: 0;
    }  
}
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-top-right {
        width: 50%; 
    }
    .footer-bottom-left {
        gap: 30px;
    }
}
@media (min-width: 1430px) {
    .footer {
        padding: 60px 70px;

    }
}

.error-message {
    color: #C9260C; 
    font-size: 0.8em;
    margin-top: 5px;
    display: none; 
}
.error-message.show {
    display: block; 
}

/* graditnt-2 */
.background-container {
    position: relative;
    z-index: 0;
    background-color: black;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 10vh;
}
.background-container::before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 50vw; 
    border-radius: 50%;
    filter: blur(8vw); 
    opacity: 0.6;
    z-index: 0;
}
.background-container::after {
    content: "";
    position: absolute;
    width: 80vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(7vw);
    opacity: 0.5;
    z-index: 0;
}
.background-container::before {
    background: linear-gradient(to right, #C9260C 5%, #FF8000 100%);
    top: 10%;   
    left: 1%; 
}
.background-container::after {
    background: linear-gradient(to right, #C9260C 0%, #FA9CEA 51%, #7300FF 100% );
    top: -1%;
    left: 30%;
}
.background-container::before {
    width: 50vw;
    height: 50vw;
    filter: blur(10vw);
    top: 3%;
    left: -2%;
}
@media (max-width: 768px) {
    .background-container::before {
        width: 100vw;
        height: 100vw;
        filter: blur(15vw);
        top: 7%;
        left: -30%;
    }
    .background-container::after {
        width: 120vw;
        height: 120vw;
        filter: blur(17vw);
        top: 1%;
        left: 10%;
    }
}
@media (max-width: 425px) {
    .background-container {
        padding-bottom: 0vh;
    }
}
@media (min-width: 1430px) {
    .background-container {
        padding-bottom: 70px;
    }
}

/* achivety */
.achieve-section{
    position: relative;
    z-index: 1;
}
.section-title { color: white; text-align: left; margin-bottom: 24px; margin-left: 40px; font-size:3rem; font-weight: lighter;     position: relative;
    z-index: 1;}
.orange-text { color: #FF9900; }
.white-text { color: white; }
.gray-text { color: #AAAAAA; }
.percent-value { font-size: 64px; font-weight: bold; margin-bottom: 24px; font-family: 'Manrope', sans-serif;}
.sub-title { font-size: 1.5em; margin-bottom: 20px; font-weight: 500;}
.gray-text { font-size: 0.9em; }

.media-area img,
.media-overlay img {
    width: 100%;
    height: auto; 
    display: block;
}
/* общий контейнер для блоков 1 и 3 */
.achieve-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #ABABAB;
}
.content-area {
    flex-basis: 40%;
    margin-left: 40px;
}
.media-area {
    flex-basis: 60%;
    border-left: 1px solid #ABABAB;
}
.text-content {
    padding: 20px 0;
}
/* --- блок 3 --- */
.block-3 {
    margin-bottom: 60px;
    border-bottom: 1px solid #ABABAB;
}
.block-3 .content-area { flex-basis: 40%; margin-left: 0; margin-right: 40px; display: flex;
    align-items: flex-end;}
.block-3 .media-area { flex-basis: 60%; border-right: 1px solid #ABABAB;         border-left: none;}

/* --- блок 2  */
.block-2 {
    display: flex;
    gap: 0; 
}
.half-section {
    flex: 1 1 50%; 
    position: relative;
    min-height: 350px;
    display: flex;
}
.section-a { justify-content: flex-end; border-right: 1px solid #ABABAB;}
.section-a .content-overlay {
    position: absolute;
    padding: 30px;
    right: 10px;
    text-align: right;
    z-index: 1; 
}
.section-a .media-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 0; 
}
.section-b { justify-content: flex-start; }
.section-b .content-overlay {
    position: absolute;
    padding: 30px;
    left: 10px;
    text-align: left;
    z-index: 1; 
}
.section-b .media-overlay {
    position: relative;
    top: 0; left: 0; width: 100%; height: 100%; z-index: 0; 
}

@media (max-width: 768px) {
    .section-title { margin-bottom: 30px; }
    .block-3 {
        border-bottom: none; 
    }
    .block-1,
    .block-3 {
        flex-direction: column; 
    }

    .block-1 .media-area { order: 2; }
    .block-1 .content-area { order: 1;         border-bottom: 1px solid #ABABAB;}

    .block-3 .media-area { order: 2; }
    .block-3 .content-area { order: 1; padding-bottom: 50px;}

    .block-3 .media-area {
        border-right: none;
        border-top: 1px solid #ABABAB;
        border-bottom: 1px solid #ABABAB;
    }
    .block-2 {
        flex-direction: column; margin-bottom: 0;
    }
    .half-section {
        flex-direction: column;
        min-height: unset; 
    }
    .achieve-block {
        gap: 0; 
    }
    .media-area {
        border-left: none;
    }
    .content-area {
        margin-left: 0px; 

        border-left: none;
        border-right: none;
    }
    .section-a .media-overlay,
    .section-a .content-overlay,
    .section-b .media-overlay,
    .section-b .content-overlay {
        position: static; 
    }
    .section-a .content-overlay,
    .section-b .content-overlay {
        border-bottom: 1px solid #ABABAB;
        border-left: none;
        border-right: none;
    }
    .section-b .content-overlay {
        border-top: 1px solid #ABABAB;
    }
    .text-content {
        padding: 20px 40px;
    }
    .section-a .content-overlay { order: 1; }
    .section-a .media-overlay { order: 2; }
    .section-b .content-overlay { order: 1; }
    .section-b .media-overlay { order: 2; }
    .section-a { justify-content: center; }
    .section-b { justify-content: center; }
}
@media (max-width: 425px){
    .text-content {
        padding: 20px 24px;
    }
    .section-title {
        margin-left: 20px;
        margin-bottom: 10px;
        font-family: Montserrat;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0%;
        margin-bottom: 24px;
    }
    .section-a .content-overlay {
        padding: 36px 24px 80px;
    }
    .section-b .content-overlay {
        padding: 50px 24px 20px;
    }
    .percent-value {
        font-weight: 700;
        font-size: 40px;
        line-height: 100%;
        padding: 24px;
        padding-top: 80px;
        padding-left: 0;
        padding-bottom: 0;
        margin-bottom: 16px;
        padding-right: 0;
    }
    p.percent-value.orange-text {
        padding-top: 0;
    }
    .sub-title {
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;
        margin-bottom: 12px;
    }
    
}
@media (max-width: 320px){
    .background-container {
        padding-bottom: 0vh;
    }
}
@media (min-width: 1430px) {
    .text-content {
        padding: 18px 20px;
        padding-left: 0;
    }
    .content-area {
        margin-left: 48px;
    }
    .section-title {
        margin-left: 48px;
        Font-size:64px; 
        line-height:70px;
        font-weight:500;
    }
    .section-a .content-overlay {
        padding-left: 70px;
    }
    .section-b .content-overlay {
        padding-right: 70px;
    }
    .gray-text {
        font-size: 1.3em;
        font-size: 16px;
        font-weight: 500;
    }
    .sub-title {
        font-size: 24px;
        font-weight: 500;
    }
}

/* slide */
.logo-ticker-section {
    background-color: black;
    overflow: hidden;  
    padding: 20px 0;
    white-space: nowrap; 
    color:white;
    text-align: center;
}
.logo-ticker-track {
    display: flex;
    animation: ticker 20s linear infinite; 
    width: 200%;
}
.logo-ticker-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.logo-ticker-slide img {
    width: 150px; 
    margin: 0 20px;
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .logo-ticker-slide img { width: 100px; margin: 0 10px; }
    .logo-ticker-track { animation: ticker 30s linear infinite; }
}
/* @media (min-width: 1440px) {
    .logo-ticker-slide img {
        width: 200px;
    }
} */


/* to review */
.reviews-button-section {
    text-align: center;
    background-color: black;
    padding: 30px 0;
}
.review-button {
    background-color: #FF9900;
    color: black;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    text-align: center;
    font-weight: 500;
}
.review-button:hover {
    background-color: #ABABAB;
}
@media (max-width: 320px){
    .review-button {
        padding: 10px 30px;
        font-weight: lighter;
    }
    a.review-button {
        font-size: small;
    }
}
@media (min-width: 1430px) {
    .review-button {
        font-size: 1.5rem;
        border-radius: 30px;
    }
    .reviews-button-section {
        padding-top:40px;
        padding-bottom:20px;
    }
}
@media (max-width:425px){
    .reviews-button-section {
        padding-top: 40px;
        padding-bottom: 45px;
    }
}


/* map */
.world-map-section {
    background-color: black;
    text-align: center;
    padding: 30px 0;
    color: white;
    overflow: hidden;
}
.map-title {
    font-size: 2em;
    margin-bottom: 20px;
}
.world-map-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center; 
    transition: all 0.5s ease;
}
@media (max-width: 768px) { 
    .world-map-section {
        padding: 0px 0;   
    }
    .map-title {
        padding: 0% 24px;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0%;
        margin-bottom: 10px;
        
    }
    .world-map-section .map-title br {
        display: block;
    }
    .world-map-section img {
        transform: scale(1.2);
        object-position: 45% 50%;
        margin-top: 170px;
        padding-bottom: 80px;
    }
}
@media (max-width: 425px){
    .world-map-section img {
        transform: scale(1.9);
    }
}
@media (min-width: 1430px) {
    .world-map-section .map-title br {
        display: none;
    }
    .world-map-section {
        padding-bottom: 80px;
    }
    .map-title {
        margin-bottom: 0px;
        font-size: 64px;
        line-height: 70px;
        font-weight: 500;
    }
}

/* fosfor */
.ai-section {
    color: white;
    padding: 60px 40px;
    display: grid;
    gap: 40px;
    z-index: 1;
    position: relative;
}
.section-title-2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
    font-weight: lighter;
}
.section-description {
    color: #ABABAB;
    line-height: 1.5;
    text-align: left;
    width: 50vw;
}
.images-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.images-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.image-row.row-1 .image-item:first-child { flex-basis: 60%; }
.image-row.row-1 .image-item:last-child { flex-basis: 40%; }
.image-row.row-2 .image-item:first-child { flex-basis: 60%; }
.image-row.row-2 .image-item:last-child { flex-basis: 40%; }
.image-row {
    display: flex;
    gap: 20px;
}
.image-row.row-2 {
    flex-direction: row-reverse;
}
.image-item {
    position: relative;
    overflow: hidden; 
}
.image-item:hover {
    border-radius: 10px;
}
.image-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
    transition: filter 0.3s ease;
}
.image-item:hover img {
    filter: blur(5px);
    border-radius: 10px;
}

.image-result {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 2;
    display: none;
    text-align: center;
}
.image-item:hover .image-result {
    display: block;     
}
.image-item:hover .image-overlay {
    display: none;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 9%, rgba(0, 0, 0, 10) 100%);
    color: white;
    text-align: left;
    line-height: 1;
}
.image-title {
    font-size: 1em;
    margin-bottom: 5px;
}
.image-description {
    font-size: 0.7em;
    color: #ABABAB;
}
.ai-section {
    display: grid;
    gap: 42px;
    align-items: start;
}
.ai-section {
    padding: 40px 40px;
}

.images-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.image-title-2 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #FF9900;
}
.image-description-2 {
    font-size: 0.8em;
    color: #000000;
    font-weight: normal;
}
@media (max-width:768px){
    .image-title-2 {
        font-size: 0.9em;
    }
    .image-description-2 {
        font-size: 0.7em;
    }
    .image-result br {
        display: block;
    }
}
@media (max-width:425px){
    .image-title-2 {
        font-size: 0.7em;
    }
    .image-description-2 {
        font-size: 0.5em;
    }
    .image-result {
        line-height: 0.8;
    }
}
.image-row {
    display: flex;
    gap: 32px;
}
.image-row .image-item:first-child {
    flex-basis: 40%;
}
.image-row .image-item:last-child {
    flex-basis: 60%;
}
.image-row.row-2 .image-item:first-child {
    flex-basis: 60%;
}
.image-row.row-2 .image-item:last-child {
    flex-basis: 40%;
}
@media (max-width: 768px) {
    .ai-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 30px;
    }
    .text-section {
        text-align: center;
    }
    .section-description {
        text-align: left;
        width: 90vw;
    }
    .images-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .image-row {
        flex-direction: column;
    }
    .image-row.row-2 {
        flex-direction: column-reverse;
    }
    .image-row .image-item {
        flex-basis: auto;
    }
    .image-row .image-item:first-child,
    .image-row .image-item:last-child,
    .image-row.row-2 .image-item:first-child,
    .image-row.row-2 .image-item:last-child {
        flex-basis: auto;
    }
    .section-title-2 {
        font-size: 2.5em;
        width: 80vw;
    }
}
@media (max-width: 425px) {
    .ai-section {
        gap: 30px;
        padding: 40px 24px;
    }
    .section-title-2 {
        width: 80vw;
        font-weight: 500;
        font-style: Medium;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0%;;
    }
    .image-title {
        font-size: 0.8em;
    }
    .image-description {
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }
    .image-row {
        gap: 10px;
    }
    .image-overlay {
        padding: 5px;
        padding-bottom: 10px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 10) 70%);
        line-height: 0.8;
        border-radius: 8px;
    }
    .section-description {
        font-size: 0.7em;
        padding: 0;
        width: 80vw;
    }
}
@media (min-width: 1430px) {
    .ai-section {
        padding: 60px 70px;
    }
    .image-title-2 {
        font-size:64px;
        line-height:70px;
        font-weight: 500;
        margin-bottom: 24px;
    }  
    .section-description {
        font-size: 16px;
        line-height: 16px;
    }
    .image-title {
        margin-bottom: 5px;
        font-size: 24px;
        line-height: 24px;
        font-weight:500;
    }
    .image-description {
        font-size:16px;
        line-height:16px;
        font-weight:500;
    }
}

/* team */
.team-block {
    background-color: black;
    color: white;
    padding: 50px 40px;
    overflow: hidden;
}
.team-block-title {
    font-size: 2em;
    margin-bottom: 16px;
    font-weight: lighter;
}
.team-block-description {
    color: #ABABAB;
    line-height: 1.6;
}
.team-block {
    display: flex;
    align-items: stretch;      
    justify-content: space-between;
    gap: 32px;
    min-height: 300px;         
}
.team-block-content {
    flex: 0.9;                 
}
.team-block-photos {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex: 2;                    
}
.team-member {
    flex: 1;                    
    display: flex;
    flex-direction: column;
    position: relative;         
    overflow: hidden;          
}
.team-member img {
    width: 100%;
    height: 100%;               
    object-fit: cover;         
    display: block;
}
.team-member-info {
    position: absolute;
    bottom: 0;                 
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 100%);
    padding: 10px 20px;
    color: white;               
    text-align: start;          
}
.team-member-name {
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-size:16px; 
    font-weight:500;   
}
.team-member-position {
    color: #ABABAB;    
    font-family: 'Inter', sans-serif;
    font-size:11px; 
    font-weight:500;       
}

@media (max-width: 1024px) {
    .team-block {
        gap: 30px;                 
        max-height: none;          
        padding-top: 20px;         
        min-height: auto;          
    }
    .team-member-name {
        font-size: 0.9em;
    }
    .team-member-position {
        font-size: 0.6em;
    }
    .team-block-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }
    .team-block-description {
        line-height: 0.9em;
    }
    .team-block-photos {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .team-block {
        flex-direction: column;   
        text-align: center;
        padding-bottom: 40px;   
        padding: 10px 30px;
        gap: 10px;
        padding-top: 0;
    }
    .team-block-content {
        margin-bottom: 30px;
        text-align: start;
    }
    .team-block-photos {
        gap: 10px;
    }
    .team-member img {
        width: 100%;
        height: auto;              
        object-fit: cover;         
    }
    .team-block-description {
        line-height: 1.1em;
        font-size: 0.9em;
    }
}
@media (max-width: 520px){
    .team-member-info{
        padding: 20px 10px;
        padding-bottom: 10px;
    }
    .team-member-name {
        font-size: 0.7em;
        margin-bottom: 0px;
    }
    .team-member-position {
        font-size: 0.5em;
    }
    .team-block-content {
        margin-bottom: 20px;
    }
}
@media (max-width: 425px) {
    .team-block { 
        padding: 0px 24px;
        gap: 5px;
        padding-bottom: 20px;
    }
    .team-block-photos{
        flex-direction: column;
    }
    .team-block-content {
        margin-bottom: 32px;
    }
    .team-member-name {
        font-size: 1em;
        font-weight: 500;
    }
    .team-member-info{
        padding: 20px 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
    }
    .team-member-position {
        font-size: 0.7em;
    }
    .team-block-photos {
        gap: 32px;
    }
    .team-block-title {
        font-size: 1.5em;
        margin-top: 40px;
        margin-bottom: 40px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .team-block-description {
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0%;
    }
}
@media (min-width: 1430px) {
    .team-block {
        padding: 60px 70px;        
    }
    .team-block-title {
        font-size: 2.2em;
    }
    .team-block-description {
        font-size: 1.2em;
    }
}

/* reviews */
.reviews-section {
    background-color: black;
    color: black;
    padding: 50px 40px;
    text-align: center;
}
.reviews-title {
    font-size:64px;
    line-height:70px;
    color: white;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: start;
}
.review-item {
    padding: 30px;
    border-radius: 10px;
    margin: 0 10px; 
}
.orange-bg {
    background-color: #DF903B;
}
.white-bg {
    border: 1px solid #ABABAB;
    color: white;
}
.review-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.review-author-white-bg,
.review-author-orange-bg{
    display: flex;
    justify-content: center;
    align-items: center;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 50px solid #ffffff;
}
.review-author-orange-bg span {
    color: black;
    margin-left: 10px;
}
.review-author-white-bg span {
    color: rgb(255, 255, 255);
    margin-left: 10px;
}
.review-author .review-author-position {
    color: white;
    font-weight: normal;
    margin-left: 5px;
}
.review-text-orange-bg {
    font-size: 1em;
    color: black;
    text-align: start;
    margin-top: 40px;
    margin-bottom: 0;
}
.review-text-white-bg {
    font-size: 1em;
    color: #ABABAB; 
    text-align: start;
    margin-bottom: 0px;
    margin-top: 40px;
}
.reviews-slider {
    display: flex;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 20px; 
    scroll-behavior: smooth;
}

/* Слайдер отзывов */
.reviews-slider {
    overflow-x: scroll;
    overflow-y: hidden;
}
/* Для WebKit (Chrome, Safari) */
.reviews-slider::-webkit-scrollbar {
    display: none;
}
/* Для IE, Edge (старые версии) */
.reviews-slider {
    -ms-overflow-style: none;
}
/* Для Firefox */
.reviews-slider {
    scrollbar-width: none;
}

.review-item {
    flex: none;     
    width: 100%;     
    scroll-snap-align: start; 
    box-sizing: border-box;
}
.reviews-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}
.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ABABAB;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.review-dot.active {
    background-color: #DF903B;
}
.avatar-circle {
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    background-color: white; 
    display: flex; 
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.avatar-circle img {
    width: 60%;
    height: 60%;
    border-radius: 50%; 
    object-fit: cover;
}
.bullet-point {
    text-align: center;
    display: flex;
}
.review-author-white-bg span.bullet-point::after,
.review-author-orange-bg span.bullet-point::after {
    content: '\2022'; /* Символ пули (•) */
    color: white; 
    font-size: 3em; 
    margin-bottom: 5px;  
}
@media (max-width: 425px){
    .reviews-section {
        padding: 20px 24px;
    }
    .review-item {
        padding: 32px 24px;  
    }
}
@media (min-width: 1430px){
    .review-author-white-bg,
    .review-author-orange-bg {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .review-item {
        width: 49%;     
        padding: 20px;
    }
    .review-author-white-bg span,
    .review-author-orange-bg span {
        display: flex;
        align-items: center;
    }
    .reviews-section {
        padding: 50px 70px;
    }
}
@media (min-width: 769px) and (max-width:1430px){
    .review-item {
        width: 49%;     
        padding: 20px;
    }
    .review-author-white-bg,
    .review-author-orange-bg {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .avatar-circle{
        margin-bottom: 50px;
    }
    .review-author-orange-bg span,
    .review-author-white-bg span {
        margin-left: 0px;
        display: flex;
        align-items: center;
    }
}
@media (max-width: 1024px){
    .review-item {
        width: 48%;     
        padding: 20px;
    }
    .review-author-orange-bg span {
        display: flex;
        align-items: center;
    }
}
@media (min-width: 769px) and (max-width:1024px) {
    .reviews-slider {
        overflow: hidden;             
        display: flex;                
        justify-content: center; 
    }
    .reviews-dots {
        display: flex;
    }
    .reviews-dots span {
        width: 10px;
        height: 10px;
    }
}
@media (max-width: 768px) {
    .reviews-section {
        padding: 30px 0;
    }
    .reviews-title {
        font-size: 24px; 
    }
    .review-item {
        flex: 0 0 99%;
    }
    .review-author-white-bg span.bullet-point::after, 
    .review-author-orange-bg span.bullet-point::after{
        margin-left: 10px;
    }
    .reviews-section {
        padding: 30px 30px;
    }
}
@media (max-width: 670px){
    .review-author-white-bg,
    .review-author-orange-bg {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .avatar-circle{
        margin-bottom: 20px;
    }
    .review-author-orange-bg span,
    .review-author-white-bg span {
        margin-left: 0px;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .review-author-position-orange-bg,
    .review-author-position-white-bg {
        align-items: flex-start;
    }
    .review-author-position-orange-bg,
    .review-author-position-white-bg{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }
}
@media (max-width: 425px){
    .reviews-section {
        padding: 20px 24px;
    }
    .review-item {
        padding: 32px 24px;  
    }
}
