/* GENERAL */
html,
body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: "Be Vietnam Pro", sans-serif;
    color: #1f1f1f;
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling */
    display: flex;
    flex-direction: column;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* CENTERED BRAND LOGO */
.brand-center {
    width: 100%;
    text-align: center;
    padding-top: 5vh;
    padding-bottom: 0px;
    /* flex-shrink: 0; */
}

.brand-center img {
    width: 260px;
    height: auto;
    object-fit: contain;
}

/* HERO LAYOUT */
.hero {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 0 0px;
    gap: 60px;
    max-width: 1600px;
    margin: 0;
    flex: 1;
    /* Take remaining height */
    height: 100%;
}

.left {
    flex: 1;
    max-width: 500px;
    padding-top: 10px;
    z-index: 2;
}

.right {
    flex: 1;
    max-width: 650px;
    display: flex;
    justify-content: flex-end;
}

/* TITLE (Montserrat) */
.title {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-weight: 600;
    /* Extra bold */
    line-height: 1.1;
    margin: 0 0 2vh 0;
    letter-spacing: -1px;
    color: #000;
}

/* SUBTITLE (Be Vietnam Pro) */
.subtitle {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #444;
    line-height: 1.6;
    margin: 0 0 2vh 0;
    max-width: 400px;
}

/* TAGLINE (Montserrat) */
.tagline {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 2vh 0;
    color: #000;
}

/* FEATURES BOX */
.features-box {
    position: relative;
    margin-bottom: 3vh;
    padding-left: 0;
}

.features-box h3 {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 1.5vh 0;
    color: #000;
}

/* Vertical Line */
.features-box .line {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 2px;
    height: 100%;
    background: #d0d0d0;
    min-height: 180px;
}

.features {
    padding: 0;
    margin: 0;
    list-style: none;
}

.features li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

/* CTA BUTTON (Montserrat) */
.cta {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    background: #1f1f1f;
    color: #fff;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    margin-bottom: 2.5vh;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

/* POWERED BY */
.powered {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin: 0;

    /* Absolute Positioning Bottom Center */
    position: absolute;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

/* IMAGES */
.mockup-desktop {
    width: 1000px;
    max-width: 800px;
    /* User preferred size */
    height: auto;
    aspect-ratio: 800 / 537;
    /* Maintain aspect ratio */
    filter: drop-shadow(0px 30px 60px rgba(0, 0, 0, 0.15));
    border-radius: 10px;
    object-fit: contain;
}

/* Mobile Image */
.mobile-image-wrapper {
    display: none;
    /* Hidden on desktop */
    width: 100%;
    margin-bottom: 3vh;
}

.mockup-mobile {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.1));
}


/* RESPONSIVE (Mobile Layout) */
@media (max-width: 950px) {

    .hero {
        flex-direction: column;
        align-items: center;
        padding: 0 25px 60px 25px;
        gap: 30px;
    }

    .left {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .right {
        display: none;
        /* Hide desktop image column */
    }

    .brand-center {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .brand-center img {
        width: 200px;
    }

    .title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 16px;
        margin: 0 auto 30px auto;
        max-width: 320px;
    }

    /* Show Mobile Image */
    .mobile-image-wrapper {
        display: block;
        margin-bottom: 40px;
    }

    .tagline {
        font-size: 18px;
        margin-bottom: 30px;
    }

    /* Adjust Features Box */
    .features-box {
        text-align: left;
        /* Keep list left aligned or center? Usually lists look better left-aligned or centered block */
        display: inline-block;
        /* To center the block itself but keep text left */
        margin-bottom: 40px;
        min-width: 280px;
        /* Ensure width for the line */
        padding-left: 20px;
        /* Space from line */
    }

    .features-box .line {
        left: 0;
        /* Adjust line position */
        height: 100%;
        top: 0;
    }

    .features li {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .cta {
        width: 100%;
        max-width: 320px;
    }

    .powered {
        font-size: 12px;
        margin-top: 10px;
    }
}