.kg-landing {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background: #f6fbff;
    min-height: 100vh;
}

.kg-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* NAVBAR */

.kg-landing .navbar {
    height: 85px;
    background: white;
    border-bottom: 1px solid #e5e7eb;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 70px;
}

.kg-landing .brand {
    font-size: 18px;
    font-weight: 700;
    color: #4b5563;
}

.kg-landing .company {
    font-size: 24px;
    color: #0e4d92;
    font-family: Georgia, serif;
}

.kg-landing .nav-menu {
    display: flex;
    gap: 40px;
}

.kg-landing .nav-menu a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
}

/* HERO */

.kg-landing .hero {

    height: calc(100vh - 85px);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 90px;

    background: linear-gradient(90deg,
            #dfeefb 0%,
            #f8fbff 100%);

    position: relative;
    overflow: hidden;
}

/* LEFT */

.kg-landing .hero-left {
    width: 50%;
    z-index: 2;
}

.kg-landing .hero-small {
    color: #3b82f6;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.kg-landing .hero-title {
    font-size: 110px;
    font-weight: 800;
    line-height: 1;

    color: #351d75;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #351d75;
}

.kg-landing .hero-subtitle {
    margin-top: 10px;
    letter-spacing: 8px;
    font-size: 22px;
    color: #6d5bd0;
}

.kg-landing .hero-desc {
    margin-top: 35px;
    width: 70%;

    font-size: 24px;
    line-height: 1.8;

    color: #5b6476;
}

.kg-landing .sign-btn {

    margin-top: 45px;

    border: none;
    border-radius: 40px;

    padding: 16px 60px;

    cursor: pointer;

    font-size: 18px;
    font-weight: 600;

    color: white;

    background: linear-gradient(90deg,
            #6d5bd0,
            #f2b183);

    transition: .3s;
}

.kg-landing .sign-btn:hover {
    transform: translateY(-3px);
}

/* RIGHT */

.kg-landing .hero-right {
    width: 40%;
    height: 500px;
    position: relative;
}

/* CIRCLES */

.kg-landing .circle {
    position: absolute;
    border-radius: 50%;
    opacity: .55;
}

.kg-landing .circle1 {
    width: 280px;
    height: 280px;
    background: #86a8ff;
    top: 80px;
    left: 40px;

    animation: bob1 9s ease-in-out infinite alternate;
}

.kg-landing .circle2 {
    width: 260px;
    height: 260px;
    background: #d6f6ff;
    top: 80px;
    left: 140px;

    animation: bob2 10s ease-in-out infinite alternate;
}

.kg-landing .circle3 {
    width: 190px;
    height: 190px;
    background: #d99aff;
    top: 20px;
    right: 20px;

    animation: bob3 8s ease-in-out infinite alternate;
}

.kg-landing .circle4 {
    width: 320px;
    height: 320px;
    background: #f4c08f;
    bottom: 0;
    right: 0;

    animation: bob4 5s ease-in-out infinite alternate;
}

@keyframes bob1 {
    to {
        transform: translate(21%, -3%);
    }
}

@keyframes bob2 {
    to {
        transform: translate(-21%, 2%);
    }
}

@keyframes bob3 {
    to {
        transform: translate(11%, 1%);
    }
}

@keyframes bob4 {
    to {
        transform: translate(-11%, -2%);
    }
}

/* FOOTER */

.kg-landing .footer {

    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: #98a2b3;

    font-size: 14px;
}

@media(max-width:1100px) {

    .kg-landing .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .kg-landing .hero-left,
    .kg-landing .hero-right {
        width: 100%;
    }

    .kg-landing .hero-title {
        font-size: 70px;
    }

    .kg-landing .hero-desc {
        width: 100%;
    }

    .kg-landing .footer {
        display: none;
    }
}
