html { 
    font-size: 16px; 
}

.header,
.footer {
    display: none;
}

.landing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 4rem; */
    align-items: start;
    /* margin: 4rem 0; */
}

.landing-content__form {
    min-height: 100vh;
}

.landing-content__form .title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.landing-content__form .subtitle {
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
    line-height: 1.5rem;
    color: var(--text-muted);
}

.landing-content__form {
    padding: 6rem;
    background-color: #f9f9f9;
}

.landing-content__sidebar {
    position: relative;
    height: 100vh;
    position: fixed;
    width: 50%;
    top: 0;
    right: 0;
}

.landing-content__sidebar-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.landing-content__sidebar-cover-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.landing-content__testimonial {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem 4rem;
    width: 100%;
}

.landing-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    font-size: var(--font-size-base);
    width: 100%;
}

.testimonial-header {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
    font-weight: bold;
}

.testimonial-text {
    font-size: var(--font-size-sm);
    line-height: 1.5rem;
    color: var(--text-muted);
}

.quote-mark {
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.4;
    padding: 0rem 0;
    height: 3.5rem;
    margin-top: -1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sm);
    margin-top: 1rem;
    font-weight: bold;
}

.testimonial-author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.trustbubble {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1em;
}

.trustbubble img.logo {
    width: 100px;
    height: auto;
    margin-top: -8px;
}

.trustbubble img.stars {
    width: 100px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .trustbubble img.logo {
        width: 75px;
    }

    .trustbubble img.stars {
        width: 75px;
    }
}


.selfpromo {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 1rem;
}

.selfpromo svg.lucide-chess-queen {
    width: 36px;
    height: auto;
    stroke-width: 1px;
    stroke: #e3c001;
}

.selfpromo svg.lucide-dot {
    width: 60px;
    height: auto;
    stroke-width: 1px;
    fill: black;
}

.selfpromo__line {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 0rem;
}

@media screen and (max-width: 992px) {
    .landing-content {
        grid-template-columns: 1fr;
    }

    .landing-content__sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }

    .landing-content__form {
        /* padding: 2rem; */
    }
}

@media screen and (max-width: 768px) {
    .landing-content__form {
        padding: 4rem 2rem;
    }

    .form-group--submit label {
        display: none;
    }

    .landing-content__testimonial {
        padding: 2rem;
    }

    .landing-content__form .title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
}
