@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
.landing-section {
    padding: 3rem 2rem 4rem 2rem; /* Increased top padding to account for navbar */
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
    background-color: #FFFFFF;
}

.landing-content {
    padding-right: 2rem;
}

.landing-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.landing-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.landing-buttons {
    display: flex;
    gap: 1rem;
}

.landing-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.landing-button-primary {
    background-color: #F0C27B;
    color: white;
}

.landing-button-primary:hover {
    background-color: #D59B6A;
}

.landing-button-secondary {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.landing-button-secondary:hover {
    background-color: #f5f5f5;
}

.landing-media {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-image-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #FFFFFF;
    border: 3.5px solid #F1C27C;
}

.landing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-demo {
    position: absolute;
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

    transition: transform 0.3s ease;
}

.landing-demo-top {
    top: 70px;
    right: -50px;
    transform: rotate(15deg);
    z-index: 2;
    max-height: 220px;
    max-width: 220px;
}

.landing-demo-bottom {
    bottom: 50px;
    left: -50px;
    transform: rotate(-15deg);
    z-index: 2;
    max-height: 387px;
    max-width: 177px;
    border-radius: 24px;
}

.landing-demo:hover {
    transform: scale(1.05) rotate(0);
}

.landing-trust {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: -53px;
    padding: 0 0 2rem 0;
}

.landing-trust-title {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.landing-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 18px auto 0 auto;
}

.landing-logo {
    max-width: 120px;
    max-height: 60px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: contain;
}

.landing-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1024px) {
    .landing-section {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 2rem 2rem; /* Adjusted top padding for smaller screens */
        gap: 3rem;
    }

    .landing-content {
        padding-right: 0;
        text-align: center;
    }

    .landing-title {
        font-size: 2.5rem;
    }

    .landing-buttons {
        justify-content: center;
    }

    .landing-media {
        height: 500px;
        margin: 0 auto;
    }

    .landing-video-container {
        max-width: 400px;
        height: 300px;
    }

    .landing-demo {
        width: 200px;
    }

    .landing-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .landing-logo {
        max-width: 100px.;
    }
}

@media (max-width: 768px) {
    .landing-section {
        padding: 6rem 1.5rem 2rem 1.5rem; /* Adjusted top padding for mobile */
    }

    .landing-title {
        font-size: 2rem;
    }

    .landing-description {
        font-size: 1.1rem;
    }

    .landing-media {
        height: 400px;
        /*max-width: 260px;*/
        max-height: 180px;
    }

    .landing-video-container {
        max-width: 300px;
        height: 250px;
    }

    .landing-demo {
        width: 150px;
    }

    .landing-demo-top {
        right: -10px;
    }

    .landing-demo-bottom {
        left: -20px;
    }

    .landing-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .landing-logo {
        max-width: 90px;

    }
}

@media (max-width: 480px) {
    .landing-section {
        padding: 5.5rem 1rem 1.5rem 1rem; /* Further adjusted top padding for smaller mobile */
    }

    .landing-title {
        font-size: 2rem;
    }

    .landing-buttons {
        flex-direction: column;
    }

    .landing-button {
        width: 100%;
    }

    .landing-media {
        margin-top: 99px;
        padding-top: 0;
        height: 350px;
    }
    .landing-image-container{
        box-shadow: 16px 16px 24px 16px rgba(0, 0, 0, 0.12);
        border: 2.2px solid #F1C27C;
    }

    .landing-video-container {
        max-width: 210px;
        height: 200px;
    }

    .landing-demo {
        width: 120px;
    }

    .landing-trust{
        margin-top: 85px;
    }
    .landing-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .landing-logo {
        max-width: 80px;
        filter: grayscale(0%);
        opacity: 1;
    }
    .landing-demo-top {
        border-radius: 10px;
        top: -110px;
        right: -10px;
        transform: rotate(15deg);
        z-index: 2;
        max-height: 195px;
        max-width: 195px;
    }
    .landing-demo-bottom{
        top: 80px;
        border-radius: 18px;
        left: 1px;
    }
}