/* === HOMEPAGE REDESIGN STYLES === */

/* New Hero Section */
.hero-reimagined {
    padding: 100px 0 60px;
    text-align: center;
}
.hero-reimagined .hero-content {
    max-width: 750px;
    margin: 0 auto;
}
.hero-reimagined .hero-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.25rem;
}
.hero-reimagined h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero-reimagined .hero-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem;
}
.hero-reimagined .hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hero-reimagined .hero-cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.hero-image-reimagined {
    margin-top: 4rem;
    border-radius: 18px;
    box-shadow: 0 20px 50px -10px rgba(var(--shadow-color), 0.25);
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--bg-subtle);
}
.hero-image-reimagined img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--bg-subtle);
}
.section-title-small {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: #f59e0b; /* Amber-400 */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    font-weight: 600;
    color: var(--text-primary);
}
.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .hero-reimagined {
        padding: 60px 0 40px;
    }
    .hero-reimagined h1 {
        font-size: 2.5rem;
    }
    .hero-reimagined .hero-lead {
        font-size: 1.1rem;
    }
    .section-title-small {
        font-size: 1.25rem;
    }
}