.hero-video-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--border-color);

}

.hero-video-wrapper video {
    width: 100%;
    object-fit: contain;
}

.outer-video-mask {
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.hero .section-wrapper {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-content {
    margin-top: 2rem;
    text-align: center;
}

.section-header-wrapper {
    text-align: center;
}

.tailor-box {
    background-color: var(--accent-light);
    padding: 15px 30px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.tailor-box-content {
    text-align: center;
    max-width: 300px;
}

.tailor-box h3 {
    font-weight: 600;
}

.tools-box-wrapper {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
}

.tailor-box-display {
    margin-top: 1rem;
}

.internal-link-tool-img,
.ai-generation-tool-img {
    width: 100%;
    min-width: 350px;
}


.info-wrapper-box {
    padding: 20px;
    background: var(--accent-gradient);
    border-radius: 5px;
    color: white;
}

.info-box-side h2 {
    font-size: 23px;
}

.info-box-side-sub-text {
    max-width: 500px;
}

.info-box-sides-header {
    margin-bottom: 1rem;
}

.info-box-step-number {
    background-color: white;
    color: var(--accent-primary);
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: bold;
}

.info-box-step {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    padding-bottom: .5rem;
}

.info-box-step:last-child {
    border-bottom: none;
}

.info-box-step h3 {
    font-size: 17px;
}

.info-box-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.end-cta-button {
    background-color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-primary);
    cursor: pointer;
}

.info-box-sides-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-box-step-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.info-box-side.img {
    background-color: white;
    border: 3px dashed var(--accent-primary);
    border-radius: 50%;
    height: 250px;
    width: 250px;
    min-height: 250px;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person-img-wrapper {
    background: var(--accent-gradient);
    width: 95%;
    height: 95%;
    padding: 10px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.person-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -5px;
}

ul {
    list-style-position: inside;
    padding-left: 2rem;
}

@media (max-width: 1000px) {
    .section {
        padding: 2rem 15px;
    }
}

@media (max-width: 920px) {
    .tools-box-wrapper {
        flex-direction: column;
    }

    .tailor-box {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .info-box-sides-wrapper {
        flex-direction: column;
    }

    
}

@media (max-width: 700px) {
    .hero-cta {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .info-box-sides-header {
        text-align: center;
    }
    .info-box-side-sub-text {
        max-width: none;
    }
}

@media (max-width: 500px) {
    .free-trial-cta-input {
        width: 100%;
    }
    .outer-video-mask {
        width: 100%;
    }

}

@media (max-width: 400px) {
    .info-box-step {
        flex-direction: column;
        align-items: baseline;
    }
    .end-cta-button {
        width: 100%;
    }
}
