/* ========================================
   Homepage Styles
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0da487 0%, #064e40 100%);
    padding: clamp(4rem, 10vw, 8rem) 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
}

.hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}

/* Counter Bar */
.counter-bar {
    background: var(--white);
    padding: 3rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 1rem;
}

.counter-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.counter-label {
    font-size: var(--body-size);
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Problem-Solution */
.problem-solution {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.problem-card {
    background: #fff5f5;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid #e74c3c;
}

.problem-card h4 {
    color: #e74c3c;
}

.solution-card-home {
    background: #f0fdf9;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.solution-card-home h4 {
    color: var(--primary-color);
}

/* Feature Grid */
.feature-grid {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-light);
}

.feature-card-home {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.feature-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 164, 135, 0.15);
    border-color: var(--primary-color);
}

.feature-icon-home {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(13, 164, 135, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-card-home h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.feature-card-home p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* How It Works */
.how-it-works {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, #064e40 0%, #0da487 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    color: white;
}

.roi-stat {
    text-align: center;
    padding: 1.5rem;
}

.roi-stat .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    display: block;
}

.roi-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-light);
}

.testimonial-card-home {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    position: relative;
}

.testimonial-card-home .stars {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.testimonial-card-home .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author-home {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-home .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author-home h5 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.testimonial-author-home p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Scale Cards */
.scale-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.scale-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.scale-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.scale-card .scale-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Preview */
.faq-preview {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--bg-light);
}

.faq-preview .accordion-button:not(.collapsed) {
    background-color: rgba(13, 164, 135, 0.08);
    color: var(--primary-color);
}

.faq-preview .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 164, 135, 0.25);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0da487 0%, #064e40 100%);
    padding: clamp(3rem, 8vw, 5rem) 0;
    color: white;
}

.cta-section h2 {
    font-weight: 800;
}

/* Mobile App Section */
.mobile-app-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.app-badge {
    height: 55px;
}
