* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 13px;
    font-family: "Inter", serif;
    color: #FFF;
}

html {
    background: url(./assets/bg-header.jpeg) top center no-repeat;
    background-size: 100%;
    background-color: #0E0E0E;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.mobile {
    display: none !important;
}

.flex {
    display: flex;
}

.hidden {
    display: none !important;
}

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

.flex-col {
    flex-direction: column;
}

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

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

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

.btn-primary {
    border-radius: 10px;
    background: #2782ED;
    padding: 13px 16px;
}

.btn-secondary:hover,
.btn-primary:hover {
    filter: brightness(1.2);
}

.btn-secondary {
    border-radius: 10px;
    background: #20A090;
    padding: 13px 16px;
}

.section-content {
    max-width: 1200px;
    margin: auto;
}

.title-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}
.title-section h3 {
    font-size: clamp(15px, 1.6vw, 30px);
}

.title-section h5 {
    font-size: clamp(13px, 1vw, 20px);
    font-weight: 400;
}

/* Header */
.header {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.80);
    z-index: 1000;
}

.header-content {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 35px
}

.nav {
    display: flex;
    flex: 1;
    text-align: center;
    justify-content: center;
}

.nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
}

.nav .nav-link:hover {
    color: #0CFE25;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-item {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #373737;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-item img {
    width: 20px;
}
/* End header */

/* Intro */

#intro .section-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

#intro .title {
    color: #FFF;
    text-align: center;
    font-size: clamp(20px, 4vw, 85px);
    font-weight: 600;
    line-height: clamp(26px, 4.5vw, 60px);
}

#intro .sub-title {
    background: linear-gradient(90deg, #419887 0%, #9EBCEB 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(15px, 2vw, 40px);
    font-weight: 600;
}

#intro .description {
    font-size: clamp(12px, 1vw, 20px);
    margin-top: 20px;
    margin-bottom: 20px;
}
/* End Intro */

/* Highlight */

.highlight-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
}

.highlight-content .item {
    padding: 20px;
    border-radius: 10px;
    background: #0E0E0E;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.highlight-content .item img {
    height: 100px;
}

.highlight-content .item h3 {
    font-size: 16px;
}

.highlight-content .item p {
    color: #CACACA;
}

/* End Highlight */

/* Compare */

#compare {
    margin-top: 68px
}

#compare .section-content {
    border-radius: 20px;
    border:1px solid #373737;
    background: #0E0E0E;
    padding: 20px;
}

/* End Compare */

/* Features */

#features {
    margin-top: 68px
}

.feature-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
}

.feature-content .item {
    text-align: center;
    border-radius: 10px;
    border: 1px solid rgba(38, 206, 173, 0.30);
    background: #181818;
    padding: 20px 10px;
}

.feature-content .item h3 {
    color: #20A090;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-content .item p {
    margin-bottom: 16px;
}

/* End Features */

/* Plan */

#plan {
    margin-top: 68px;
    margin-bottom: 48px
}

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

.plan-content .tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 30px;
    border: 1px solid #20A090;
    gap: 8px;
    margin-bottom: 30px;
}

.plan-content .tab .tab-item {
    color:#CACACA;
    transition: 300ms linear all;
    cursor: pointer;
    padding: 6px;
}

.plan-content .tab .tab-item .sale {
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.40);
    padding: 2px 8px;
    font-size: 11px;
}

.plan-content .tab .tab-item.active {
    color: #fff;
    border-radius: 50px;
    background:#2782ED;
}
.plan-content .tab-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.plan-content .item .title-plan{
    color: #20A090;
    font-weight: 600;
    border-radius: 16px 16px 0px 0px;
    padding: 12px 0px;
    font-size: 16px;
    border-bottom: 1px solid var(--color-cyan-4830, rgba(38, 206, 173, 0.30));
    background: var(--color-cyan-488, rgba(38, 206, 173, 0.08));
}

.price-plan {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-cyan-4830, rgba(38, 206, 173, 0.30));
}

.price-plan .price {
    color: #20A090;
    font-size: 20px;
    font-weight: 600;
}

.price-plan .saved  {
    border-radius: 50px;
    background: #26CEAD;
    color: var(--Chainbase-Black, #000);
    padding: 2px 4px;
    font-size: 12px;
}

.price-plan .total {
    color: #26CEAD;
    margin-top: 8px;
}

.listed {
    text-align: left;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.listed .item::before {
    content: "";
    display: inline-block;
    margin-right: 8px;
    width: 4px;
    height: 10px;
    border-top: 1px solid #26CEAD;
    border-left: 1px solid #26CEAD;
    transform: rotate(220deg);
}

.accelerate-button {
    display: block;
    margin: 16px;
    margin-top: 8px;
}

/* End Plan */


/* Started */

#started {
    background: url("./assets/bg-section.png") top center no-repeat;
    background-size: cover;
    padding-bottom: 68px;
}

#started .section-content {
    width: 60%;
    text-align: center;
}

.started-content .actions{
    gap: 10px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.started-content .term{
    text-decoration: underline;
}

/* End Started */

/* Footer */

footer {
    border-top: 1px solid #20A090;
    background: #0E0E0E;
    padding: 20px;
}

.company,
.social-container  {
    margin: 20px 0;
}
.social-container .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.company {
    text-align: right;
}
.company .title {
    font-weight: 600;
    margin-bottom: 20px;
}

.company .company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.company .company-info  a {
    color: #CACACA;
}

.copy-right {
    padding-top: 16px;
    border-top: 1px solid #2E2E2E;
}
.copy-right span {
    color: #CACACA;
}

/* End Footer */

/* Responsive */

@media only screen and (max-width: 786px) {
    #started .section-content,
    .section-content {
        width: 95%;
    }

    .header {
        padding: 8px;
    }
    .header-content {
        width: 100%;
    }
    .header-content .logo {
        display: none !important;
    }
    .header-content .logo.mobile{
        height: 30px;
        display: inline-block !important;
    }
    .header-content .social{
        display: none;
    }

    .nav .nav-link {
        font-size: 12px;
        font-weight: 600;
        padding: 4px;
    }

    #compare .section-content{
        padding: 10px;
    }

    .company {
        text-align: left;
    }
}

/* End Responsive */