.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 10;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 350px;
}

.hero .hero-content h1 {
    color: #484848;
    text-align: left;
    font-size: 2.5rem;
    letter-spacing: 3px;
    line-height: 1.3;
}

.hero .hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #000000;
    max-width: 500px;
}

.hero-title-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    animation: slideFromRight 1s ease-out forwards;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(30vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.keep-large,
.keep-large-2 {
    font-size: 150px !important;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
}

.keep-large {
    z-index: 2;
}

.keep-large-2 {
    position: absolute;
    color: #75a662;
    z-index: 0;
    margin-right: 220px;
    margin-top: 25px;
    animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateX(-70vw);
    }
    60% {
        opacity: 1;
        transform: translateX(3vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.keep-sublines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding-top: 50px;
}

.keep-sublines span {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: black;
    line-height: 1.2;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgb(3 82 0 / 60%);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s;
    border-radius: 50px;
    z-index: 400;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: green;
    color: green;
    transform: translateY(-2px);
}

.cherry-can-desktop {
    position: fixed;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    z-index: 300;
    pointer-events: auto;
    filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6));
    width: 325px;
    height: 325px;
    display: block;
}

.cherry-can-desktop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.cherry-can-mobile {
    display: none;
}

@media (max-width: 768px) {
    .cherry-can-fixed {
        display: none;
    }
    .cherry-can-mobile {
        display: block;
        position: relative;
        width: 280px;
        height: 280px;
        margin: 2rem auto;
        filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));
        margin-top: 2rem;
        transform: scale(1.3);
    }
    .cherry-can-mobile img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}