* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: #fff;
    min-height: 100dvh;
    width: 100dvw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

main {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.header-top {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;  
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: relative;
    width: 230px;
    height: 100%;
    background: #0d5eff;
    border-bottom-right-radius: 50% 100%;
    display: flex;
    align-items: center;
}

.logo {
    height: 75px;
    width: auto;
    margin-left: 2rem;
}

.android-icon {
    width: 26px;
    height: auto;
    object-fit: contain;
}

.main-content {
    background: #92BBFE;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 4rem;
    min-height: calc(100dvh - 100px);
    width: 100%;
    max-width: none;
    margin: 0;
}

.headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 1rem;
}

.subheadline{
    font-size: 2rem;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 2rem;
}

.main-headline {
    color: #fff;
}

.main-subheadline {
    color: #EFF5FF;
}

.btn {
    background: #FF6B35;
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 127, 65, 0.4);
}

.btn-large {
    font-size: 22px;
}

.btn-margin-right {
    margin-right: 20px;
}

.right-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-container {
    position: relative;
}

.phones-image {
    width: 100%;
    height: 80dvh;
    object-fit: contain;
}

.secondary-content {
    min-height: 100dvh;
    width: 100dvw;
    display: flex;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.features-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 0 0 4rem;
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 5;
}

.features-left-content {
    text-align: left;
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.features-headline {
    color: #155EF4;
}

.features-subheadline {
    color: #5192FF;
}

.features-right-content {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    flex: 0 0 auto;
    align-self: stretch;
}

.photo-circles-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-circles-image {
    width: auto;
    height: 100dvh;
    object-fit: contain;
}

.secondary-content .logo-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 290px;
    height: 180px;
    background: #0d5eff;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: flex-end;
    z-index: 10;
}

.secondary-content .logo {
    margin: 2rem;
}

.clarity-section {
    align-items: flex-start;
}

.clarity-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2rem 4rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    min-height: 100dvh;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
}

.clarity-headline {
    color: #609CFF;
}

.clarity-headline-dark {
    color: #155EF4;
}

.clarity-subheadline {
    color: #609CFF;
}

.clarity-main-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    min-height: 400px;
}

.screen-photo-circles {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.screen-photo-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    margin-bottom: 100px;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:1250px) {
    .main-content {
        gap: 2rem;
        padding: 2rem;
        width: 100%;
    }
    
    .headline {
        font-size: 3.5rem;
    }
      
    .subheadline {
        font-size: 1.7rem;
    }

    .clarity-container {
        padding: 2rem 2rem 0 2rem;
    }

    .phones-image {
        height: 75vh;
        max-height: 550px;
    }
    
    .photo-circles-image {
        height: 70dvh;
        max-width: 100%;
    }

    .screen-photo-image {
        content: url("../img/screen_icons.png");
        width: auto;
        height: 100%;
    }
}

@media (max-width: 860px) {
    .logo-container {
        width: 150px;
    }  

    .logo {
        height: 50px;
        margin-left: 1rem;
    }

    .btn {
        font-size: 16px;
    }

    .main-content {
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
        text-align: center;
        width: 100%;
    }

    .headline {
        font-size: 3rem;
    }
    
    .phones-image {
        height: 70vh;
        max-height: 500px;
        max-width: 400px;
    }
    
    .secondary-content {
        padding: 0;
        width: 100dvw;
    }

    .features-container {
        flex-direction: column;
        padding: 0;
    }
    
    .features-left-content {
        padding: 2rem 2rem 0 2rem;
        text-align: center;
    }
    
    .features-right-content {
        padding: 0;
    }

    .secondary-content .logo-container {
        display: none;
    }
    
    .clarity-main-content {
        min-height: 300px;
        margin-top: 1rem;
    }

    .footer .btn {
        margin-right: 0;
    }
}

@media (max-width: 700px) {
    .screen-photo-image {
        content: url("../img/phone.png");
    }
}
