/* reset */
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0d0d0d;
    font-family: 'Inter', sans-serif;
}

/* container */
.container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    transition: all 0.5s ease-out;
}

/* Left Content */
.content-left {
    display: flex;
    flex-direction: column;
    z-index: 2;
    order: 1;
    width: 100%;
    flex-basis: 100%;
    height: 45%;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    text-align: center;
    transition: all 0.5s ease-out;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8vh;
    transition: all 0.5s ease;
}

.main-logo {
    width: auto;
    height: auto;
    max-width: 65vw;
    max-height: 15vh;
    transition: all 0.5s ease;
}

/* white glow behind textt */
.center-white-glow {
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.cta-button {
    background-color: #F2F2F2;
    color: #0d0d0d;
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 6vw, 26px);
    font-weight: 500;
    text-decoration: none;
    padding: clamp(16px, 2.5vh, 24px) clamp(36px, 10vw, 80px);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    line-height: 1.2;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 10;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 80%;
}

/* image cont */
.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    order: 2;
    width: 100%;
    flex-basis: 100%;
    height: 55%;
    overflow: visible;
    transition: all 0.5s ease-out;
    padding-bottom: 0;
}

.hero-phones {
    height: 110%;
    width: auto;
    max-width: none;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    transition: all 0.5s ease-out;
    transform: translateY(-5%);
}

/* blob position */
.green-blob-bottom-left {
    position: fixed;
    bottom: -20vh;
    left: -20vh;
    width: 60vmin;
    height: 60vmin;
    background: radial-gradient(circle, rgba(93, 226, 108, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    transition: all 1s ease;
}

/* desktop */
@media (min-width: 1024px) {
    .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8vw;
        padding: 0;
    }

    .content-left {
        width: auto;
        flex-basis: auto;
        height: auto;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 0;
        margin-left: 0;
    }

    .logo-wrapper {
        align-items: flex-start;
        margin-bottom: 5vh;
    }

    .main-logo {
        width: 35vw;
        max-width: 400px;
        max-height: none;
    }

    .cta-button {
        font-size: 1.5vw;
        padding: 1.5vh 4vw;
        border-radius: 3vw;
    }

    .hero-image-container {
        width: auto;
        flex-basis: auto;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-phones {
        height: auto;
        width: auto;
        max-height: 90vh;
        max-width: 50vw;
        transform: none;
    }

    .green-blob-bottom-left {
        width: 70vmin;
        height: 70vmin;
        bottom: -25vmin;
        left: -25vmin;
        opacity: 0.8;
    }
}


/* animations */
@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.green-blob-bottom-left {
    animation: pulse-green 4s infinite ease-in-out;
}

/* hover animation pulse :) */
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.6);
    background-color: #ffffff;
    animation: none;
}

```