

.hero-gradient {
    background: linear-gradient(135deg, #4a6cf7 0%, #2d3748 100%);
}
.package-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.foundation-card {
    border-top: 5px solid #48bb78;
}
.growth-card {
    border-top: 5px solid #ecc94b;
}
.convert-card {
    border-top: 5px solid #f56565;
}
.tab-button {
    position: relative;
    padding: 10px 15px;
    cursor: pointer;
}
.tab-button.active {
    font-weight: bold;
    color: #4a6cf7;
}
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4a6cf7;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.sticky-cta {
    position: sticky;
    bottom: 20px;
    z-index: 100;
}
.comparison-table td, .comparison-table th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.comparison-table th {
    background-color: #f7fafc;
}
.usp-table td, .usp-table th {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.usp-table th {
    background-color: #f7fafc;
    font-weight: bold;
}
.testimonial-card {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.quote-icon {
    font-size: 2.5rem;
    color: #4a6cf7;
    opacity: 0.2;
}
.w-full 
{
    width: 100% !important;
}
.process-step-web .step-icon
{
    height: auto !important;
    background: #f2f2f2;
}