:root {
    --bg-gradient-dark: linear-gradient(195deg, #42424a 0%, #191919 100%);
    --bg-gradient-primary: linear-gradient(195deg, #EC407A 0%, #d81b60 100%);
}

.bg-gradient-dark {
    background: var(--bg-gradient-dark) !important;
}

.bg-gradient-primary {
    background: var(--bg-gradient-primary) !important;
}

.hero-section {
    background: var(--bg-gradient-dark);
    color: white;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.company-logo {
    height: 80px;
    width: 150px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
}

.company-logo img {
    height: 50px;
    max-width: 130px;
    object-fit: contain;
}

.feature-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 1rem;
}

.stats-card {
    background: var(--bg-gradient-dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stats-card.large {
    grid-row: span 2;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
}

.testimonial-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.section-padding {
    padding: 20px 0;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.pricing-featured {
    position: relative;
    z-index: 5;
    transform: scale(1.05);
}

#pricing .row {
    align-items: stretch;
}

.pricing-card {
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.pricing-card-clickable {
    cursor: pointer;
}

.pricing-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card .card-body > div:last-of-type {
    margin-bottom: 0;
}

.pricing-card .card-body a.btn {
    margin-top: auto !important;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.btn-gradient-primary {
    background: var(--bg-gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 64, 122, 0.3);
    color: white;
}

.btn-gradient-dark {
    background: var(--bg-gradient-dark);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gradient-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 66, 74, 0.3);
    color: white;
}

.accordion-button {
    font-weight: 600;
    color: #344767;
}

.bottom-sections {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cta-section {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.footer-section {
    flex: 0 0 auto;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.clients-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.clients-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.client-slide {
    min-width: 25%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .client-slide {
        min-width: 33.333%;
    }
    
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .stats-card.large {
        grid-row: span 1;
    }

    .stats-number {
        font-size: 2rem;
    }

    .stats-text {
        font-size: 1.5rem;
    }

    .pricing-featured {
        transform: none;
    }

    .bottom-sections {
        min-height: auto;
    }

    .cta-section {
        min-height: 50vh;
    }

    .footer-section {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .client-slide {
        min-width: 50%;
    }
    
    .testimonial-slide {
        min-width: 100%;
    }
}
