
.home-hero {
    padding: 30px 30px;
    margin-top: var(--expanded-header-height);
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-evenly;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-align: left;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--hero-subtitle-color);
    margin-bottom: 2rem;
}

.cta-buttons-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.download-trial-button, 
.view-pricing-button {
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}

.download-trial-button {
    background-color: var(--thermist-blue);
    min-width: 140px;
    color: white;
    transition: background-color 0.3s;
}

.download-trial-button:hover {
    background-color: var(--thermist-blue-dark);
}

.view-pricing-button {
    color: var(--thermist-blue);
    max-width: 137px;
    min-width: 88px;
    border: 1px solid var(--thermist-blue);
    transition: all 0.2s ease;
    text-align: center;
}

.view-pricing-button:hover {
    text-decoration: none;
    color: var(--thermist-blue);
    background-color: var(--thermist-blue);
    border-color: var(--thermist-blue);
    background-color: var(--thermist-blue-transparent);
}

@media (max-width: 420px) {
    .cta-buttons-div {
        gap: 1rem;
    }

    .download-trial-button, 
    .view-pricing-button {
        padding-left: 14px;
        padding-right: 14px;
    }
}

.hero-video {
    flex: 1;
    aspect-ratio: 1;
    max-width: 500px;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 0px;
}

.testimonial-section,
.features-section{
    padding: 60px 20px; /* white space */
    background-color: var(--neutral-color);
    margin: 110px 0; /* gray space */
}

.testimonial-content,
.features-content {
    text-align: center;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--hero-subtitle-color);
    margin-bottom: 2rem;
}

.testimonial-content {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-content blockquote, 
.features-list li{
    color: var(--primary-color);
}

.testimonial-content blockquote {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 400;
}

.testimonial-content cite {
    font-size: 1.2rem;
    color: var(--hero-subtitle-color);
    font-style: normal;
}

.features-list {
    list-style: none;
}

.features-list li {
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 0.5rem 0;
    margin: 0 auto;
    min-width: 300px;  
    max-width: 90%;  
    display: flex;
    align-items: center;
    justify-content: center; 
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;  
    overflow: hidden;    
    text-overflow: ellipsis;  
}

.features-list li::before {
    content: "•";
    color: var(--thermist-blue);
    font-size: 1.8rem;
    margin-right: 1rem;
    line-height: 1;
}

.features-list li.visible {
    opacity: 1;
}

/* on small screens, adjust main page stuff */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        text-align: center;
    }
    
    .hero-content.valving-section {
        flex-direction: column-reverse;
    }

    .testimonial-content blockquote {
        font-size: 1.5rem;
    }
    
    .testimonial-content cite {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 1.1rem;
        padding: 0.3rem 0;
        min-width: 250px;  
    }
}

@media (min-width: 1320px) {
    .hero-content {
        justify-content: space-evenly;
    }
}

.final-cta {
    justify-content: center;
    text-align: center;
}

.final-cta .hero-text {
    text-align: center;
}

.final-cta .hero-text h1 {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.final-cta .cta-buttons-div {
    justify-content: center;
}

.final-cta .download-trial-button {
    padding: 20px 30px; 
    font-size: 1.2rem;   
    min-width: 180px;    
}