:root {
    --main-color-red: blueviolet;
    --main-color-button-grey: #2b2727;
    --main-color-header: #3f3f47;
}

body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial;
    font-size: 16px;
    overflow-x: hidden;
}

/* Hide scrollbar */
body::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

img {
    width: 100%;
}

a {
    color: white;
    text-decoration: none;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reveal-element {
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.wrapper {
    margin: 0 auto;
    max-width: 1000px;
    color: white;
}

.row {
    width: 100%;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex-box {
    display: flex;
}

.flex-horizontal-center {
    justify-content: center;
}

.flex-horizontal-right {
    justify-content: right;
}

.flex-vertical-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-between {
    justify-content: space-between;
}

.half {
    width: 50%;
}

.bg-fix{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box {
    padding: 20px;
    box-sizing: border-box;
}

.box-vertical {
    padding: 20px 0;
    box-sizing: border-box;
}

.box-wide {
    padding: 0 20px;
    box-sizing: border-box;
}

.box-wide-middle {
    padding: 0 40px;
    box-sizing: border-box;
}

.box-wide-large {
    padding: 0 60px;
    box-sizing: border-box;
}






.title-big {
    font-size: 45px;
    text-transform: uppercase;
    font-weight: bold;
}

.title-big-highlight {
    color: var(--main-color-red);
}

.button-red {
    background-color: var(--main-color-red);
    border-radius: 60px;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.button-red:hover {
    transform: scale(1.1, 1.1);
}

.tag {
    display: inline-block;
    text-align: center;
    color: white;
    border-radius: 40px;
    padding: 10px 20px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    background-color: var(--main-color-red);
    margin: 10px;
    box-sizing: border-box;
}

.tag-black {
    background-color: var(--main-color-button-grey);
}

.tag-black:hover {
    background-color: var(--main-color-red);
}

.tag-wide {
    max-width: 400px;
}

.tag > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag img {
    width: 30px;
}

.tag:hover {
    transform: scale(1.1,1.1);
}

.moto-text {
    font-size: 40px;
    padding: 30px 0;
}

.qr {
    border-radius: 40px;
}

.devider {
    padding: 40px 0;
}

.bg-black {
    background-color: #191921;
}

.bg-grey {
    background-color: var(--main-color-header);
}


.card {
    border-radius: 20px;
    overflow: hidden;
    display: none;
    background: #191921;
}

.tab-content-active {
    display: flex;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 20px;

}

.card-business {
    transform: rotate(-20deg);
}

.card-client {
    transform: rotate(10deg);
}

.card-pros {
    font-size: 20px;
}

.card-pros > div {
    padding: 10px 0;
}


.about-card {
    background: var(--main-color-button-grey);
    border-radius: 20px;
    max-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

.roadmap-points {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-point {
    text-transform: uppercase;
    font-size: 25px;
    display: flex;
    align-items: center;
}

.roadmap-point > div:last-child {
    padding: 0 20px;
    box-sizing: border-box;
}

.roadmap-point-dot {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--main-color-button-grey);
    display: flex;
    transition: all 0.3s;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;

}

.roadmap-point-dot:hover {
    transform: scale(1.2,1.2);
}

.roadmap-point-line {
    width: 10px;
    height: 30px;
    background-color: var(--main-color-button-grey);
    margin: 0 30px;
    flex-shrink: 0;
}

.about-text {
    font-size: 20px;
}

.about-text > div > div:first-child {
    font-size: 20px;
    padding: 10px 0;
    border-radius: 20px;
}

/* Tariff cards layout for desktop */
.tariff-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.tariff-card {
    flex: 0 1 300px;
    min-width: 280px;
}

@media(max-width: 1000px) {
    .tariff-cards {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media(max-width: 600px) {
    .half {
        width: 100%;
        padding: 30px 0;

    }

    .title-big {
        font-size: 35px;
    }

    .tag {
        margin: 10px 0;
    }

    .card .column {
        padding: 0;
    }


    .roadmap-point {
        font-size: 20px;
    }

    .roadmap-point-dot {
        display: none;
        width: 50px;
        height: 50px;
    }

    .roadmap-point-line {
        margin: 0 20px;
        height: 50px;
    }

    .roadmap-point .flex-box {
        display: block;
    }

    .tariff-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .tariff-card {
        width: 300px;
        max-width: 300px;
    }

    .about-card {
        max-width: none;
        width: 100%;
    }




}

