* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #f3f9f9;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    background-color: #f3f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .btn:active {
        transform: scale(0.98);
    }

.btn-left {
    border: 1px solid #000;
    color: #000;
    letter-spacing: -0.6px;
    position: fixed;
    top: 40px;
    left: 60px;
    z-index: 100;
    background-color: #f3f9f9;
}

.btn-left-placeholder {
    width: 173px;
}

.btn-right {
    border: 1px solid #2f2f2f;
    color: #2f2f2f;
}

.btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* LOGO BLOCK */
.logo-block {
    position: relative;
    width: 257.23px;
    height: 148px;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* MAIN CONTENT */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 60px 300px;
    width: 100%;
    gap: 59px;
}

.title {
    font-size: 100px;
    font-weight: 600;
    color: #E20B1D;
    line-height: 1;
    letter-spacing: -6px;
    margin: 0;
    max-width: 800px;
}

.text-block {
    font-size: 20px;
    font-weight: 400;
    color: #4F5056;
    line-height: 30px;
    max-width: 650px;
}

    .text-block p {
        margin: 0;
        padding-bottom: 30px;
    }

        .text-block p:last-child {
            padding-bottom: 0;
        }

.text-bold {
    font-weight: 500;
    color: #020202;
}

.stats-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    margin-top: 100px;
}

.stats-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #E20B1D;
    white-space: nowrap;
}

.stats-number {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -6px;
    margin: 0;
}

.stats-text {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: #E20B1D;
    margin-top: -40px !important;
    margin-bottom: 40px !important;
}

.stats-plus {
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3px;
    margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
    .btn-left {
        top: 30px;
        left: 40px;
    }

    .title {
        font-size: 70px;
        letter-spacing: -4px;
        width: 100%;
    }

    .stats-number {
        font-size: 70px;
        letter-spacing: -4px;
    }

    .stats-plus {
        font-size: 35px;
        letter-spacing: -2px;
    }

    .header {
        padding: 30px 40px;
    }

    .main-content {
        padding: 40px 40px 80px;
    }
}

@media (max-width: 768px) {
    .btn-left-placeholder {
        display: none;
    }

    .btn-left {
        top: auto;
        left: auto;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .header {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 30px 20px;
    }

    .title {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .stats-number {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .stats-plus {
        font-size: 25px;
        letter-spacing: -1px;
    }

    .text-block {
        font-size: 16px;
        line-height: 24px;
        padding: 0 10px;
    }

    .main-content {
        padding: 20px 20px 60px;
        gap: 40px;
    }

    .stats-section {
        gap: 40px;
    }
}

.stats-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -4.32px;
    margin: 0;
    max-width: 800px;
    white-space: normal;
}

.graph-image {
    width: 100%;
    max-width: 754px;
    height: auto;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .stats-title {
        font-size: 50px;
        letter-spacing: -3px;
    }
}

@media (max-width: 768px) {
    .stats-title {
        font-size: 40px;
        letter-spacing: -2px;
    }
}


.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 16px;
}

.lang-btn {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    opacity: 0.6;
}

    .lang-btn:hover {
        opacity: 1;
    }

    .lang-btn.active {
        opacity: 1;
        font-weight: 700;
    }