* {
    font-family: 'Inter', sans-serif;
    color: #fff;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A0A0A;
}

.main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: space-between;
}

header {
    padding: 1rem;
}

header .logo {
    gap: 1.25rem;
}

.header .logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.header .logo img {
    width: 38px;
    height: 38px;
}

.header-bg {
    position: absolute;
    background: linear-gradient(180deg, rgba(26, 115, 232, 0.4) 0%, rgba(26, 115, 232, 0) 74.52%);
    height: 12rem;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.bottom-bg {
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%, rgba(26, 115, 232, 0.3) 0%, rgba(26, 115, 232, 0) 42.31%);
    height: 15rem;
    left: 0;
    right: 0;
    bottom: 0rem;
    z-index: -1;
}

ul.navmenu {
    gap: 1.25rem;
    list-style: none;
    justify-content: center;
}

ul.navmenu li a {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.button {
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s;
}

.button.sign-up {
    background-color: #0A0A0A;
    color: #fff;
    transition: all 0.3s;
}

.button.sign-up:hover {
    background-color: #fff;
    color: #0A0A0A;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    font-weight: 200;
    color: #B6B6B6;
}

h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.chat {
    height: 9rem;
    border-radius: 0.75rem;
    background-color: #161616;
    padding: 1rem;
    max-width: 90%;
    width: 38rem;
    border: 1px solid #271CF899
}

.chat input {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    background-color: transparent;
    border: none;
    outline: none;
    flex-grow: 1;
    width: 100%;
}

.brands {
    gap: 4rem;
}

.brands img {
    gap: 4rem;
    filter: grayscale(0.5);
    transition: all 0.3s;
}

.brands img:hover {
    filter: grayscale(0);
}

.chips {
    max-width: 90%;
    width: 60rem;
    gap: 0.5rem;
}

.chip {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    background-color: #151414;
    text-decoration: none !important;
    transition: all 0.3s;
}

.chip:hover {
    background-color: rgba(26, 115, 232, 0.4);
    cursor: pointer;
    transform: scale(1.05);
}

footer {
    padding: 1rem;
}

footer span {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
}

.footermenu {
    gap: 1.25rem;
    list-style: none;
    justify-content: center;
}

.footermenu li a {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: #fff;
}

.divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.modal-dialog .modal-content {
    background-color: #0A0A0A !important;
    border-radius: 1rem !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.modal-dialog .modal-header {
    border-bottom: 0px solid rgba(255, 255, 255, 0.1) !important;
    background-color: rgba(26, 115, 232, 0.05);
}

.modal-dialog .btn-close {
    background-color: #fff;
    border-radius: 50% !important;
    opacity: 1 !important;
}

.row .pricing-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.77px solid #FFFFFF33;
    border-radius: 1.75rem;
    width: 100%;
    padding: 1.5rem 1.25rem;
    height: 100%;
}

.pricing-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.pricing-desc {
    font-size: 0.875rem;
    font-weight: 400;
    color: #B6B6B6;
    text-align: center;
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 1rem 0;
}

.pricing-card .button {
    width: 100%;
    text-align: center;
    background-color: rgba(26, 115, 232, 0.4);
    color: #fff;
    
}

.pricing-card .button:hover {
    background-color: #fff;
    color: #0A0A0A;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1rem;
    }

    .brands img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .chat input {
        font-size: 0.75rem;
    }

    .chat img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .chat {
        height: 6.5rem;
    }

    .button {
        font-size: 0.875rem;
        font-weight: 500;
    }

    header .logo {
        gap: 0.5rem;
    }

    .header .logo span {
        font-size: 1.25rem;
    }

    .header .logo img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .brands {
        gap: 1.5rem;
    }

    footer {
        background-color: rgba(26, 115, 232, 0.05);
    }

    .chip {
        font-size: 0.75rem;
    }

    footer span {
        font-size: 0.75rem;
    }

    .footermenu li a {
        font-size: 0.75rem;
    }

    .footermenu {
        gap: .25rem;
    }
}