html {
    scroll-behavior: smooth;
}

.logo {
    min-width: 50px;
    min-height: 50px;
    background-image: url(./images/pleance_cut.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.2);
    }
}

.heartbeat span {
    animation: heartbeat 1s infinite;
    transform-origin: center;
}

#mobileOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 60;
}

#mobileOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

#mobileMenu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 200px;
    height: 100vh;
    background: white;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 70;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.dark #mobileMenu {
    background: #101822;
}

#mobileMenu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 20px;
}

.mobile-nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
}

.dark .mobile-nav a {
    color: #e5e7eb;
}

.mobile-cta {
    margin-top: 30px;
    height: 48px;
    border-radius: 8px;
    background: #136dec;
    color: white;
    font-weight: 700;
}

@media (min-width: 768px) {

    #mobileMenu,
    #mobileOverlay {
        display: none;
    }

    #d234232 {
        width: 350px;
    }
}

@media (max-width: 568px) {
    #a48931,
    #a89420,
    #a82340f91,
    #a18420f,
    #a01234,
    #a38410 {
        text-align: start;
    }

    #a849230f {
        margin-left: 0;
    }

    #d234232 {
        width: 100%;
    }
}