* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 1);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    /* padding: 20px max(40px, calc((100vw - 1310px) / 2)); */
}

.nav.scrolled {
    border-bottom: 1px solid #ddd;
}

.footer {
    padding: 20px 40px;
    display: flex;
    margin-top: 100px;
    background-color: #111;
    color: white;
    height: 300px;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .nav {
        padding: 10px 20px;
    }
    .footer {
        padding: 20px;
    }
}

.black-button {
    border: none;
    outline: none;
    background-color: rgb(19, 19, 23);
    color: white;
    cursor: pointer;
    border-radius: 4px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    user-select: none;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.black-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
}

.black-button:hover::before {
    left: 100%;
}


.serveze-logo {
    width: 127px;
    padding: 5px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.main-hero {
    font-family: "Poppins", sans-serif; font-size: 90px; font-weight: 500; color: black; line-height: 1.3;
}

.sub-hero {
    font-size: 25px;
    color: black;
    font-weight: 500;
}

.hero-content {
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.gradient {
    background: linear-gradient(45deg, #7534ff, #1796d0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1000px) {
    .main-hero {
        font-size: 35px;
    }
    .hero-content {
        padding: 60px 20px;
    }

    .sub-hero {
        font-size: 20px;
    }
}

.get-started {
    padding: 10px 30px;
    font-size: 18px;
}

@media (max-width: 1000px) {
    .get-started {
        font-size: 15px;
    }
}

.max-width {
    margin: 0 auto;
    max-width: 1350px;
}

.products {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    padding: 100px 40px;
    align-items: flex-start;

}

@media (max-width: 1000px) {
    .products {
        padding: 60px 20px;
    }
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.product {
    background-color: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 500px;
}

.product-padding {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.product-image {
    width: 100%;
    object-fit: cover;
}

.alink {
    color: #ccc;
    text-decoration: none;
}

.alink:hover {
    color: #fff;
    text-decoration: underline;
}

::-webkit-scrollbar{width:14px;height:14px}::-webkit-scrollbar-track{background-color:transparent;}
::-webkit-scrollbar-thumb{background:#777;border-radius: 7px;border: 4px solid transparent; background-clip: padding-box;}
::-webkit-scrollbar-thumb:hover{background-color:#555;}
::selection { background-color: #7534ff; color: white; }

.section-title {
    font-size: 70px;
    font-weight: 600;
    color: rgb(19, 19, 23);
}

@media (max-width: 1000px) {
    .section-title {
        font-size: 25px;
    }
}

.underline-dash {
    position: relative;
    display: inline-block;
}

.underline-dash::after {
    content: '';
    position: absolute;
    left: -5%;
    bottom: -10px;
    width: 110%;
    height: 20px;
    background-image: url('/a7/forget/dash.svg');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.nav-links {
    color: #444;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding-right: 20px;
}

.nav-links:hover {
    text-decoration: underline;
}

@media (max-width: 1000px) {
    .nav-links {
        display: none;
    }
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.products-menu {
    position: relative;
}

.products-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.products-menu:hover .products-dropdown {
    display: flex;
    width: 400px;
    gap: 10px;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .products-menu:hover .products-dropdown {
        width: 100%;
    }
}

.products-dropdown a {
    display: block;
    padding: 5px 10px;
    color: rgb(19, 19, 23);
    text-decoration: none;
    border-radius: 4px;
}

.products-dropdown a:hover {
    background-color: #eee;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .nav-links-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links-container.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .products-menu {
        width: 100%;
    }

    .products-dropdown {
        position: static;
        display: none;
        box-shadow: none;
    }

    .products-menu.active .products-dropdown {
        display: block;
    }

    .nav-links {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
    }
}

.pricing-box {
    border-radius: 8px;
    display: flex;
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 20px 40px;
    background: white;
    height: 300px;
}

.pricing-left {
    flex-basis: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-right {
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.pricing-title {
    font-size: 40px;
    font-weight: 500;
    color: rgb(19, 19, 23);
}

.pricing-text {
    font-size: 80px;
}

@media (max-width: 1000px) {
    .pricing-title {
        font-size: 18px;
    }
    .pricing-box {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 30px;
    }
    .pricing-left {
        flex-basis: 100%;
        gap: 10px;
    }
    .pricing-right {
        flex-basis: 100%;
        gap: 20px;
    }
    .pricing-text {
        font-size: 60px;
    }
}

.clarity-x {
    padding: 25px;
    background: white;
    border: 1px solid #d7d7d7;
    border-radius: 7px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    border: 1px solid #d7d7d7;
}

@keyframes dropShadow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 0, 255, 0.2));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 0, 0.2));
    }
}

.for-qc {
    font-size: 13px;
    background: black;
    border-radius: 400px;
    padding: 5px 10px;
    width: fit-content;
    color: white;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .for-qc {
        display: none;
    }
}

.clarity-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clarity-video {
    width: 100%;
    border-radius: 7px;
}

.clarity-vid-div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clarity-bottom {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.clarity-bottom-x {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px solid #444;
} 

.clarity-bottom-heading {
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #444;
}

.clarity-bottom-description {
    color: #888;
    font-weight: 500;
    font-size: 14px;
}

.clarity-content {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: flex-end;
}

@media (max-width: 900px) {
    .clarity-x {
        padding: 10px;
        gap: 10px;
    }
    .clarity-heading {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .clarity-heading h1 {
        font-size: 25px;
    }
    .clarity-video {
        width: 100%;
    }
    .clarity-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .clarity-bottom-x {
        gap: 5px;
        border-top: none;
    }
    .clarity-bottom-heading {
        font-size: 16px;
    }
    .clarity-content {
        flex-direction: column;
        gap: 10px;
        align-items: normal;
    }
}



.pricing-box {
    position: relative;
    overflow: hidden;
    padding-bottom: 3.125rem;
}
.pricing-box::before {
    content: "Currently free :)";
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #7534ff;
    color: white;
    padding: 0.3125rem 0;
    font-weight: 600;
    font-size: 0.85rem;
    width: 100%;
}

.product-dropdown-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: rgb(19, 19, 23);
}

.product-dropdown-item p {
    font-size: 14px;
    color: #444;
}

.our-products {
    margin-bottom: 20px; font-size: 40px; font-weight: 400;
}

@media (max-width: 1000px) {
    .our-products {
        font-size: 25px;
        margin-bottom: 0px;
    }
}
